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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
|
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt Creator.
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
****************************************************************************/
#include "kdepasteprotocol.h"
#ifdef CPASTER_PLUGIN_GUI
#include "authenticationdialog.h"
#endif
#include <coreplugin/icore.h>
#include <utils/qtcassert.h>
#include <QDebug>
#include <QByteArray>
#include <QStringList>
#include <QJsonDocument>
#include <QJsonObject>
#include <QJsonArray>
#include <QRegularExpression>
#include <QNetworkReply>
#include <algorithm>
enum { debug = 0 };
static inline QByteArray expiryParameter(int daysRequested)
{
// Obtained by 'pastebin.kde.org/api/json/parameter/expire' on 26.03.2014
static const int expiryTimesSec[] = {1800, 21600, 86400, 604800, 2592000, 31536000};
const int *end = expiryTimesSec + sizeof(expiryTimesSec) / sizeof(expiryTimesSec[0]);
// Find the first element >= requested span, search up to n - 1 such that 'end' defaults to last value.
const int *match = std::lower_bound(expiryTimesSec, end - 1, 24 * 60 * 60 * daysRequested);
return QByteArray("expire=") + QByteArray::number(*match);
}
namespace CodePaster {
void StickyNotesPasteProtocol::setHostUrl(const QString &hostUrl)
{
m_hostUrl = hostUrl;
if (!m_hostUrl.endsWith(QLatin1Char('/')))
m_hostUrl.append(QLatin1Char('/'));
}
unsigned StickyNotesPasteProtocol::capabilities() const
{
return ListCapability | PostDescriptionCapability;
}
bool StickyNotesPasteProtocol::checkConfiguration(QString *errorMessage)
{
if (m_hostChecked) // Check the host once.
return true;
const bool ok = httpStatus(m_hostUrl, errorMessage, true);
if (ok)
m_hostChecked = true;
return ok;
}
// Query 'http://pastebin.kde.org/api/json/parameter/language' to obtain the valid values.
static inline QByteArray pasteLanguage(Protocol::ContentType ct)
{
switch (ct) {
case Protocol::Text:
break;
case Protocol::C:
return "language=c";
case Protocol::Cpp:
return "language=cpp-qt";
case Protocol::JavaScript:
return "language=javascript";
case Protocol::Diff:
return "language=diff";
case Protocol::Xml:
return "language=xml";
}
return QByteArray("language=text");
}
void StickyNotesPasteProtocol::paste(const QString &text,
ContentType ct, int expiryDays,
const QString &username,
const QString &comment,
const QString &description)
{
enum { maxDescriptionLength = 30 }; // Length of description is limited.
Q_UNUSED(username)
Q_UNUSED(comment);
QTC_ASSERT(!m_pasteReply, return);
// Format body
QByteArray pasteData = "&data=";
pasteData += QUrl::toPercentEncoding(fixNewLines(text));
pasteData += '&';
pasteData += pasteLanguage(ct);
pasteData += '&';
pasteData += expiryParameter(expiryDays);
if (!description.isEmpty()) {
pasteData += "&title=";
pasteData += QUrl::toPercentEncoding(description.left(maxDescriptionLength));
}
m_pasteReply = httpPost(m_hostUrl + QLatin1String("api/json/create"), pasteData, true);
connect(m_pasteReply, &QNetworkReply::finished, this, &StickyNotesPasteProtocol::pasteFinished);
if (debug)
qDebug() << "paste: sending " << m_pasteReply << pasteData;
}
// Parse for an element and return its contents
static QString parseElement(QIODevice *device, const QString &elementName)
{
const QJsonDocument doc = QJsonDocument::fromJson(device->readAll());
if (doc.isEmpty() || !doc.isObject())
return QString();
QJsonObject obj= doc.object();
const QString resultKey = QLatin1String("result");
if (obj.contains(resultKey)) {
QJsonValue value = obj.value(resultKey);
if (value.isObject()) {
obj = value.toObject();
if (obj.contains(elementName)) {
value = obj.value(elementName);
return value.toString();
}
} else if (value.isArray()) {
qWarning() << "JsonArray not expected.";
}
}
return QString();
}
void StickyNotesPasteProtocol::pasteFinished()
{
if (m_pasteReply->error()) {
qWarning("%s protocol error: %s", qPrintable(name()),qPrintable(m_pasteReply->errorString()));
} else {
// Parse id from '<result><id>143204</id><hash></hash></result>'
// No useful error reports have been observed.
const QString id = parseElement(m_pasteReply, QLatin1String("id"));
if (id.isEmpty())
qWarning("%s protocol error: Could not send entry.", qPrintable(name()));
else
emit pasteDone(m_hostUrl + id);
}
m_pasteReply->deleteLater();
m_pasteReply = 0;
}
void StickyNotesPasteProtocol::fetch(const QString &id)
{
QTC_ASSERT(!m_fetchReply, return);
// Did we get a complete URL or just an id?
m_fetchId = id;
const int lastSlashPos = m_fetchId.lastIndexOf(QLatin1Char('/'));
if (lastSlashPos != -1)
m_fetchId.remove(0, lastSlashPos + 1);
QString url = m_hostUrl + QLatin1String("api/json/show/") + m_fetchId;
if (debug)
qDebug() << "fetch: sending " << url;
m_fetchReply = httpGet(url);
connect(m_fetchReply, &QNetworkReply::finished,
this, &StickyNotesPasteProtocol::fetchFinished);
}
// Parse: '<result><id>143228</id><author>foo</author><timestamp>1320661026</timestamp><language>text</language>
// <data>bar</data></result>'
void StickyNotesPasteProtocol::fetchFinished()
{
const QString title = name() + QLatin1String(": ") + m_fetchId;
QString content;
const bool error = m_fetchReply->error();
if (error) {
content = m_fetchReply->errorString();
if (debug)
qDebug() << "fetchFinished: error" << m_fetchId << content;
} else {
content = parseElement(m_fetchReply, QLatin1String("data"));
content.remove(QLatin1Char('\r'));
}
m_fetchReply->deleteLater();
m_fetchReply = 0;
emit fetchDone(title, content, error);
}
void StickyNotesPasteProtocol::list()
{
QTC_ASSERT(!m_listReply, return);
// Trailing slash is important to prevent redirection.
QString url = m_hostUrl + QLatin1String("api/json/list");
m_listReply = httpGet(url);
connect(m_listReply, &QNetworkReply::finished,
this, &StickyNotesPasteProtocol::listFinished);
if (debug)
qDebug() << "list: sending " << url << m_listReply;
}
// Parse 'result><pastes><paste>id1</paste><paste>id2</paste>...'
static inline QStringList parseList(QIODevice *device)
{
QStringList result;
const QJsonDocument doc = QJsonDocument::fromJson(device->readAll());
if (doc.isEmpty() || !doc.isObject())
return result;
QJsonObject obj= doc.object();
const QString resultKey = QLatin1String("result");
const QString pastesKey = QLatin1String("pastes");
if (obj.contains(resultKey)) {
QJsonValue value = obj.value(resultKey);
if (value.isObject()) {
obj = value.toObject();
if (obj.contains(pastesKey)) {
value = obj.value(pastesKey);
if (value.isArray()) {
QJsonArray array = value.toArray();
foreach (const QJsonValue &val, array)
result.append(val.toString());
}
}
}
}
return result;
}
void StickyNotesPasteProtocol::listFinished()
{
const bool error = m_listReply->error();
if (error) {
if (debug)
qDebug() << "listFinished: error" << m_listReply->errorString();
} else {
emit listDone(name(), parseList(m_listReply));
}
m_listReply->deleteLater();
m_listReply = nullptr;
}
KdePasteProtocol::KdePasteProtocol()
{
setHostUrl(QLatin1String("https://pastebin.kde.org/"));
connect(this, &KdePasteProtocol::authenticationFailed, this, [this] () {
m_loginFailed = true;
paste(m_text, m_contentType, m_expiryDays, QString(), QString(), m_description);
});
}
void KdePasteProtocol::paste(const QString &text, Protocol::ContentType ct, int expiryDays,
const QString &username, const QString &comment,
const QString &description)
{
Q_UNUSED(username);
Q_UNUSED(comment);
// KDE paster needs authentication nowadays
#ifdef CPASTER_PLUGIN_GUI
QString details = tr("Pasting to KDE paster needs authentication.<br/>"
"Enter your KDE Identity credentials to continue.");
if (m_loginFailed)
details.prepend("<span style='background-color:LightYellow;color:red'>"
+ tr("Login failed") + "</span><br/><br/>");
AuthenticationDialog authDialog(details, Core::ICore::dialogParent());
authDialog.setWindowTitle("Authenticate for KDE paster");
if (authDialog.exec() != QDialog::Accepted) {
m_loginFailed = false;
return;
}
const QString user = authDialog.userName();
const QString passwd = authDialog.password();
#else
// FIXME get the credentials for the cmdline cpaster somehow
const QString user;
const QString passwd;
qDebug() << "KDE needs credentials for pasting";
emit pasteDone(QString());
return;
#endif
// store input data as members to be able to use them after the authentication succeeded
m_text = text;
m_contentType = ct;
m_expiryDays = expiryDays;
m_description = description;
authenticate(user, passwd);
}
QString KdePasteProtocol::protocolName()
{
return QLatin1String("Paste.KDE.Org");
}
void KdePasteProtocol::authenticate(const QString &user, const QString &passwd)
{
QTC_ASSERT(!m_authReply, return);
// first we need to obtain the hidden form token for logging in
m_authReply = httpGet(hostUrl() + "user/login");
connect(m_authReply, &QNetworkReply::finished, this, [this, user, passwd] () {
onPreAuthFinished(user, passwd);
});
}
void KdePasteProtocol::onPreAuthFinished(const QString &user, const QString &passwd)
{
if (m_authReply->error() != QNetworkReply::NoError) {
m_authReply->deleteLater();
m_authReply = nullptr;
return;
}
const QByteArray page = m_authReply->readAll();
m_authReply->deleteLater();
const QRegularExpression regex("name=\"_token\"\\s+type=\"hidden\"\\s+value=\"(.*?)\">");
const QRegularExpressionMatch match = regex.match(QLatin1String(page));
if (!match.hasMatch()) {
m_authReply = nullptr;
return;
}
const QString token = match.captured(1);
QByteArray data("username=" + QUrl::toPercentEncoding(user)
+ "&password=" + QUrl::toPercentEncoding(passwd)
+ "&_token=" + QUrl::toPercentEncoding(token));
m_authReply = httpPost(hostUrl() + "user/login", data, true);
connect(m_authReply, &QNetworkReply::finished, this, &KdePasteProtocol::onAuthFinished);
}
void KdePasteProtocol::onAuthFinished()
{
if (m_authReply->error() != QNetworkReply::NoError) {
m_authReply->deleteLater();
m_authReply = nullptr;
return;
}
const QVariant attribute = m_authReply->attribute(QNetworkRequest::RedirectionTargetAttribute);
m_redirectUrl = redirectUrl(attribute.toUrl().toString(), m_redirectUrl);
if (!m_redirectUrl.isEmpty()) { // we need to perform a redirect
QUrl url(m_redirectUrl);
if (url.path().isEmpty())
url.setPath("/"); // avoid issue inside cookiesForUrl()
m_authReply->deleteLater();
m_authReply = httpGet(url.url(), true);
connect(m_authReply, &QNetworkReply::finished, this, &KdePasteProtocol::onAuthFinished);
} else { // auth should be done now
const QByteArray page = m_authReply->readAll();
m_authReply->deleteLater();
m_authReply = nullptr;
if (page.contains("https://identity.kde.org")) // we're back on the login page
emit authenticationFailed();
else {
m_loginFailed = false;
StickyNotesPasteProtocol::paste(m_text, m_contentType, m_expiryDays, QString(),
QString(), m_description);
}
}
}
QString KdePasteProtocol::redirectUrl(const QString &redirect, const QString &oldRedirect) const
{
QString redirectUrl;
if (!redirect.isEmpty() && redirect != oldRedirect)
redirectUrl = redirect;
return redirectUrl;
}
} // namespace CodePaster
|