blob: 710c60b30120c9e9c3792b76c5a5baebad272595 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#include "urlopenprotocol.h"
#include <utils/qtcassert.h>
#include <QFileInfo>
#include <QNetworkReply>
using namespace CodePaster;
UrlOpenProtocol::UrlOpenProtocol(const NetworkAccessManagerProxyPtr &nw)
: NetworkProtocol(nw), m_fetchReply(0)
{
}
QString UrlOpenProtocol::name() const
{
return QLatin1String("Open URL"); // unused
}
unsigned UrlOpenProtocol::capabilities() const
{
return 0;
}
void UrlOpenProtocol::fetch(const QString &url)
{
QTC_ASSERT(!m_fetchReply, return);
m_fetchReply = httpGet(url);
connect(m_fetchReply, SIGNAL(finished()), this, SLOT(fetchFinished()));
}
void UrlOpenProtocol::fetchFinished()
{
const QString title = m_fetchReply->url().toString();
QString content;
const bool error = m_fetchReply->error();
if (error) {
content = m_fetchReply->errorString();
} else {
content = QString::fromUtf8(m_fetchReply->readAll());
}
m_fetchReply->deleteLater();
m_fetchReply = 0;
emit fetchDone(title, content, error);
}
void UrlOpenProtocol::paste(const QString &, ContentType, const QString &,
const QString &, const QString &)
{
}
|