summaryrefslogtreecommitdiff
path: root/py-fake-service/app/adapter/tagsset.py
blob: 04c712d436f5c801f826abc5ccb5dc78a4b28616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from tag import Tag

class TagsSet:
    def __init__(self):
        self.tags = {}
        self.ident = 0

    def add(self, mbox_mail):
        tags = mbox_mail.get('X-TW-Pixelated-Tags').split(', ')
        for tag in tags:
            tag = self.tags.setdefault(tag, Tag(tag, self.ident))
            tag.increment_count()
            self.ident += 1 
            
    def all_tags(self):
        return self.tags.values()

    def mark_as_read(self, tags):
        for tag in tags:
            tag = self.tags.get(tag)
            tag.increment_read()