diff options
Diffstat (limited to 'worker/jmap/cache')
-rw-r--r-- | worker/jmap/cache/gob.go | 2 | ||||
-rw-r--r-- | worker/jmap/cache/state.go | 13 | ||||
-rw-r--r-- | worker/jmap/cache/thread.go | 35 |
3 files changed, 0 insertions, 50 deletions
diff --git a/worker/jmap/cache/gob.go b/worker/jmap/cache/gob.go index 8b153c50..f1b8be33 100644 --- a/worker/jmap/cache/gob.go +++ b/worker/jmap/cache/gob.go @@ -6,12 +6,10 @@ import ( "git.sr.ht/~rockorager/go-jmap/mail/email" "git.sr.ht/~rockorager/go-jmap/mail/mailbox" - "git.sr.ht/~rockorager/go-jmap/mail/thread" ) type jmapObject interface { *email.Email | - *thread.Thread | *email.QueryResponse | *mailbox.Mailbox | *FolderContents | diff --git a/worker/jmap/cache/state.go b/worker/jmap/cache/state.go index 6538ccad..5fec5034 100644 --- a/worker/jmap/cache/state.go +++ b/worker/jmap/cache/state.go @@ -12,18 +12,6 @@ func (c *JMAPCache) PutMailboxState(state string) error { return c.put(mailboxStateKey, []byte(state)) } -func (c *JMAPCache) GetThreadState() (string, error) { - buf, err := c.get(threadStateKey) - if err != nil { - return "", err - } - return string(buf), nil -} - -func (c *JMAPCache) PutThreadState(state string) error { - return c.put(threadStateKey, []byte(state)) -} - func (c *JMAPCache) GetEmailState() (string, error) { buf, err := c.get(emailStateKey) if err != nil { @@ -39,5 +27,4 @@ func (c *JMAPCache) PutEmailState(state string) error { const ( mailboxStateKey = "state/mailbox" emailStateKey = "state/email" - threadStateKey = "state/thread" ) diff --git a/worker/jmap/cache/thread.go b/worker/jmap/cache/thread.go deleted file mode 100644 index ca91a4d9..00000000 --- a/worker/jmap/cache/thread.go +++ /dev/null @@ -1,35 +0,0 @@ -package cache - -import ( - "git.sr.ht/~rockorager/go-jmap" - "git.sr.ht/~rockorager/go-jmap/mail/thread" -) - -func (c *JMAPCache) GetThread(id jmap.ID) (*thread.Thread, error) { - buf, err := c.get(threadKey(id)) - if err != nil { - return nil, err - } - e := new(thread.Thread) - err = unmarshal(buf, e) - if err != nil { - return nil, err - } - return e, nil -} - -func (c *JMAPCache) PutThread(id jmap.ID, e *thread.Thread) error { - buf, err := marshal(e) - if err != nil { - return err - } - return c.put(threadKey(id), buf) -} - -func (c *JMAPCache) DeleteThread(id jmap.ID) error { - return c.delete(threadKey(id)) -} - -func threadKey(id jmap.ID) string { - return "thread/" + string(id) -} |