summaryrefslogtreecommitdiff
path: root/service/pixelated/adapter/tag_service.py
blob: f128f1bbce824f414daf4a1166b5c576e322b6c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#
# Copyright (c) 2014 ThoughtWorks, Inc.
#
# Pixelated is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pixelated is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
from pixelated.adapter.tag import Tag
from pixelated.adapter.tag_index import TagIndex


class TagService:

    instance = None
    SPECIAL_TAGS = {Tag('inbox', True), Tag('sent', True), Tag('drafts', True), Tag('trash', True)}

    @classmethod
    def extract_reserved(cls, tags):
        return {tag.name for tag in cls.SPECIAL_TAGS if tag.name in tags}

    @classmethod
    def get_instance(cls):
        if not cls.instance:
            cls.instance = TagService()
        return cls.instance

    def __init__(self, tag_index=TagIndex()):
        self.tag_index = tag_index

    def load_index(self, mails):
        if self.tag_index.empty():
            for mail in mails:
                self.notify_tags_updated(mail.tags, [], mail.ident)
        for tag in self.SPECIAL_TAGS:
            self.tag_index.add(tag)

    def notify_tags_updated(self, added_tags, removed_tags, mail_ident):
        for removed_tag in removed_tags:
            tag = self.tag_index.get(removed_tag)
            if not tag:
                continue
            tag.decrement(mail_ident)
            if tag.total == 0:
                self.tag_index.remove(tag.name)
            else:
                self.tag_index.set(tag)
        for added_tag in added_tags:
            tag = self.tag_index.get(added_tag) or self.tag_index.add(Tag(added_tag))
            tag.increment(mail_ident)
            self.tag_index.set(tag)

    def all_tags(self):
        return self.tag_index.values().union(self.SPECIAL_TAGS)

    def all_custom_tags(self):
        return self.tag_index.values().difference(self.SPECIAL_TAGS)