summaryrefslogtreecommitdiff
path: root/py-fake-service/app/adapter/contacts.py
blob: 5c55b8b1ac372b14487e9c0ed4b2e7c0f15b458e (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
import re


class Contacts:

    def __init__(self):
        self.contacts = []

    def add(self, mbox_mail):
        contact = mbox_mail.get_from()
        self.contacts.append(Contact(contact))

    def search(self, query):
        contacts_query = re.compile(query)
        return [
            contact.__dict__
            for contact in self.contacts
            if contacts_query.match(contact.addresses[0])
        ]


class Contact:

    def __init__(self, contact):
        self.addresses = [contact]
        self.name = ''