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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
  | 
from flask import Flask, request, Response
from factory import MailConverterFactory, ClientFactory
from search import SearchQuery
import json
import datetime
import requests
app = Flask(__name__)
client = None
converter = None
account = None
def from_iso8061_to_date(iso8061):
    return datetime.datetime.strptime(iso8061, "%Y-%m-%dT%H:%M:%S")
def respond_json(entity):
    response = json.dumps(entity)
    return Response(response=response, mimetype="application/json")
@app.route('/mails', methods=['POST'])
def save_draft_or_send():
    ident = None
    if 'sent' in request.json['tags']:
        ident = client.send_draft(converter.to_mail(request.json, account))
    else:
        ident = client.save_draft(converter.to_mail(request.json, account))
    return respond_json({'ident': ident})
@app.route('/mails', methods=['PUT'])
def update_draft():
    ident = client.save_draft(converter.to_mail(request.json, account))
    return respond_json({'ident': ident})
@app.route('/mails')
def mails():
    query = SearchQuery.compile(request.args.get("q"))
    mails = client.drafts() if "drafts" in query['tags'] else client.mails(query)
    mails = [converter.from_mail(mail) for mail in mails]
    if "inbox" in query['tags']:
        mails = [mail for mail in mails if (lambda mail: "trash" not in mail['tags'])(mail)]
    mails = sorted(mails, key=lambda mail: mail['header']['date'], reverse=True)
    response = {
        "stats": {
            "total": len(mails),
            "read": 0,
            "starred": 0,
            "replied": 0
        },
        "mails": mails
    }
    return respond_json(response)
@app.route('/mail/<mail_id>', methods=['DELETE'])
def delete_mails(mail_id):
    client.delete_mail(mail_id)
    return respond_json(None)
@app.route('/tags')
def tags():
    tags = map(lambda x: converter.from_tag(x), client.all_tags())
    return respond_json(tags)
@app.route('/mail/<mail_id>')
def mail(mail_id):
    mail = client.mail(mail_id)
    return respond_json(converter.from_mail(mail))
@app.route('/mail/<mail_id>/tags')
def mail_tags(mail_id):
    mail = converter.from_mail(client.mail(mail_id))
    return respond_json(mail['tags'])
@app.route('/mail/<mail_id>/read', methods=['POST'])
def mark_mail_as_read(mail_id):
    client.mark_as_read(mail_id)
    return ""
@app.route('/contacts')
def contacts():
    query = SearchQuery.compile(request.args.get("q"))
    desired_contacts = [converter.from_contact(contact) for contact in client.all_contacts(query)]
    return respond_json({'contacts': desired_contacts})
@app.route('/draft_reply_for/<mail_id>')
def draft_reply_for(mail_id):
    draft = client.draft_reply_for(mail_id)
    if draft:
        return respond_json(converter.from_mail(draft))
    else:
        return respond_json(None)
@app.route('/', defaults={'path': ''})
@app.route('/<path:path>')
def redirect_to_front(path):
    response = requests.get("http://localhost:9000/%s" % path)
    return Response(
        response=response,
        status=response.status_code,
        content_type=response.headers['content-type']
    )
if __name__ == '__main__':
    app.config.from_envvar('PIXELATED_SERVICE_CFG')
    provider = app.config['PROVIDER']
    account = app.config['ACCOUNT']
    client = ClientFactory.create(provider, account)
    converter = MailConverterFactory.create(provider, client)
    app.run(host=app.config['HOST'], debug=app.config['DEBUG'], port=app.config['PORT'])
  |