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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
|
/*
Copyright (c) 2016 Christian Mollekopf <mollekopf@kolabsys.com>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
#include "sinkfabric.h"
#include <QFile>
#include <sink/store.h>
#include <sink/log.h>
#include <sink/notification.h>
#include <sink/notifier.h>
#include <sink/secretstore.h>
#include "fabric.h"
#include "keyring.h"
using namespace Kube;
using namespace Sink;
using namespace Sink::ApplicationDomain;
class SinkListener : public Kube::Fabric::Listener
{
public:
SinkListener() = default;
void notify(const QString &id, const QVariantMap &message)
{
SinkLog() << "Received message: " << id << message;
if (id == "synchronize"/*Kube::Messages::synchronize*/) {
if (auto folder = message["folder"].value<ApplicationDomain::Folder::Ptr>()) {
SinkLog() << "Synchronizing folder " << folder->resourceInstanceIdentifier() << folder->identifier();
auto scope = SyncScope().resourceFilter(folder->resourceInstanceIdentifier()).filter<Mail::Folder>(QVariant::fromValue(folder->identifier()));
scope.setType<ApplicationDomain::Mail>();
Store::synchronize(scope).exec();
} else if (message.contains("specialPurpose")) {
auto specialPurpose = message["specialPurpose"].value<QString>();
//Synchronize all drafts folders
if (specialPurpose == "drafts") {
//TODO or rather just synchronize draft mails and have resource figure out what that means?
Sink::Query folderQuery{};
folderQuery.containsFilter<Sink::ApplicationDomain::Folder::SpecialPurpose>(Sink::ApplicationDomain::SpecialPurpose::Mail::drafts);
folderQuery.request<Sink::ApplicationDomain::Folder::SpecialPurpose>();
folderQuery.request<Sink::ApplicationDomain::Folder::Name>();
Store::fetch<Sink::ApplicationDomain::Folder>(folderQuery)
.then([] (const QList<Sink::ApplicationDomain::Folder::Ptr> &folders) {
for (const auto f : folders) {
auto scope = SyncScope().resourceFilter(f->resourceInstanceIdentifier()).filter<Mail::Folder>(QVariant::fromValue(f->identifier()));
scope.setType<ApplicationDomain::Mail>();
Store::synchronize(scope).exec();
}
}).exec();
}
} else {
auto accountId = message["accountId"].value<QString>();
auto type = message["type"].value<QString>();
SyncScope scope;
if (!accountId.isEmpty()) {
//FIXME this should work with either string or bytearray, but is apparently very picky
scope.resourceFilter<SinkResource::Account>(accountId.toLatin1());
}
if (type == "contacts") {
scope.setType<ApplicationDomain::Contact>();
} else if (type == "mail") {
scope.setType<ApplicationDomain::Mail>();
} else if (type == "folder") {
scope.setType<ApplicationDomain::Folder>();
} else {
//Only synchronize folders by default for now
scope.setType<ApplicationDomain::Folder>();
}
SinkLog() << "Synchronizing... AccountId: " << accountId << " Type: " << scope.type();
Store::synchronize(scope).exec();
}
}
if (id == "sendOutbox"/*Kube::Messages::synchronize*/) {
Query query;
query.containsFilter<SinkResource::Capabilities>(ResourceCapabilities::Mail::transport);
auto job = Store::fetchAll<SinkResource>(query)
.each([=](const SinkResource::Ptr &resource) -> KAsync::Job<void> {
return Store::synchronize(SyncScope{}.resourceFilter(resource->identifier()));
});
job.exec();
}
if (id == "markAsRead"/*Kube::Messages::synchronize*/) {
if (auto mail = message["mail"].value<ApplicationDomain::Mail::Ptr>()) {
mail->setUnread(false);
Store::modify(*mail).exec();
}
}
if (id == "markAsUnread"/*Kube::Messages::synchronize*/) {
if (auto mail = message["mail"].value<ApplicationDomain::Mail::Ptr>()) {
mail->setUnread(true);
Store::modify(*mail).exec();
}
}
if (id == "toggleImportant"/*Kube::Messages::synchronize*/) {
if (auto mail = message["mail"].value<ApplicationDomain::Mail::Ptr>()) {
mail->setImportant(message["important"].toBool());
Store::modify(*mail).exec();
}
}
if (id == "moveToTrash"/*Kube::Messages::synchronize*/) {
if (auto mail = message["mail"].value<ApplicationDomain::Mail::Ptr>()) {
mail->setTrash(true);
Store::modify(*mail).exec();
}
}
if (id == "moveToDrafts"/*Kube::Messages::synchronize*/) {
if (auto mail = message["mail"].value<ApplicationDomain::Mail::Ptr>()) {
mail->setDraft(true);
Store::modify(*mail).exec();
}
}
if (id == "moveToFolder"/*Kube::Messages::synchronize*/) {
if (auto mail = message["mail"].value<ApplicationDomain::Mail::Ptr>()) {
auto folder = message["folder"].value<ApplicationDomain::Folder::Ptr>();
mail->setFolder(*folder);
Store::modify(*mail).exec();
}
}
if (id == "unlockKeyring") {
auto accountId = message["accountId"].value<QByteArray>();
Kube::AccountKeyring{accountId}.unlock();
}
}
};
class SinkNotifier {
public:
SinkNotifier()
: mNotifier{Sink::Query{Sink::Query::LiveQuery}}
{
mNotifier.registerHandler([] (const Sink::Notification ¬ification) {
Notification n;
SinkLog() << "Received notification: " << notification;
QVariantMap message;
if (notification.type == Sink::Notification::Warning) {
message["type"] = "warning";
message["resource"] = QString{notification.resource};
if (notification.code == Sink::ApplicationDomain::TransmissionError) {
message["message"] = QObject::tr("Failed to send message.");
message["subtype"] = "transmissionError";
} else {
return;
}
} else if (notification.type == Sink::Notification::Status) {
return;
} else if (notification.type == Sink::Notification::Error) {
message["type"] = "error";
message["resource"] = QString{notification.resource};
message["details"] = notification.message;
switch(notification.code) {
case Sink::ApplicationDomain::ConnectionError:
message["message"] = QObject::tr("Failed to connect to server.");
message["subtype"] = "connectionError";
break;
case Sink::ApplicationDomain::NoServerError:
message["message"] = QObject::tr("Host not found.");
message["subtype"] = "hostNotFoundError";
break;
case Sink::ApplicationDomain::LoginError:
message["message"] = QObject::tr("Failed to login.");
message["subtype"] = "loginError";
break;
case Sink::ApplicationDomain::ConfigurationError:
message["message"] = QObject::tr("Configuration error.");
break;
case Sink::ApplicationDomain::ConnectionLostError:
message["message"] = QObject::tr("Connection lost.");
break;
case Sink::ApplicationDomain::MissingCredentialsError:
message["message"] = QObject::tr("No credentials available.");
break;
default:
//Ignore unknown errors, they are not going to help.
return;
}
Fabric::Fabric{}.postMessage("errorNotification", message);
} else if (notification.type == Sink::Notification::Info) {
if (notification.code == Sink::ApplicationDomain::TransmissionSuccess) {
message["type"] = "info";
message["message"] = QObject::tr("A message has been sent.");
} else {
return;
}
} else if (notification.type == Sink::Notification::Progress) {
message["type"] = "progress";
message["progress"] = notification.progress;
message["total"] = notification.total;
if (!notification.entities.isEmpty()) {
message["folderId"] = notification.entities.first();
}
message["resourceId"] = notification.resource;
Fabric::Fabric{}.postMessage("progressNotification", message);
return;
} else {
return;
}
Fabric::Fabric{}.postMessage("notification", message);
});
}
Sink::Notifier mNotifier;
};
class SinkFabric::Private
{
SinkNotifier notifier;
SinkListener listener;
};
SinkFabric::SinkFabric()
: QObject(),
d(new SinkFabric::Private)
{
}
SinkFabric::~SinkFabric()
{
delete d;
}
SinkFabric &SinkFabric::instance()
{
static SinkFabric instance;
return instance;
}
|