summaryrefslogtreecommitdiff
path: root/py-fake-service/app/adapter/contacts.py
blob: aaf2d23e2aa90f56c3985e14a0b50653a676675b (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
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 = ''