summaryrefslogtreecommitdiff
path: root/py-fake-service/app/adapter/tagsset.py
blob: 239417358aecdd9a14b224989ebe7e0bcc0129c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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()