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
|
/***************************************************************************
* Copyright (C) 2012-2020 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#include <QNetworkAccessManager>
#include <QNetworkProxy>
#include <QNetworkReply>
#include <qmmp/qmmp.h>
#include <qmmp/qmmpsettings.h>
#include "playlistparser.h"
#include "playlistdownloader.h"
PlayListDownloader::PlayListDownloader(QObject *parent) : QObject(parent)
{
m_getReply = nullptr;
m_ua = QString("qmmp/%1").arg(Qmmp::strVersion()).toLatin1();
m_manager = new QNetworkAccessManager(this);
connect(m_manager, SIGNAL(finished (QNetworkReply *)), SLOT(readResponse(QNetworkReply *)));
//load global proxy settings
QmmpSettings *gs = QmmpSettings::instance();
if (gs->isProxyEnabled())
{
QNetworkProxy proxy(QNetworkProxy::HttpProxy, gs->proxy().host(), gs->proxy().port());
if(gs->proxyType() == QmmpSettings::SOCKS5_PROXY)
proxy.setType(QNetworkProxy::Socks5Proxy);
if(gs->useProxyAuth())
{
proxy.setUser(gs->proxy().userName());
proxy.setPassword(gs->proxy().password());
}
m_manager->setProxy(proxy);
}
}
void PlayListDownloader::start(const QUrl &url, PlayListModel *model)
{
m_model = model;
if(!PlayListParser::findByUrl(url)) //is it playlist?
{
m_model->add(url.toString());
emit finished(true);
return;
}
m_url = url;
QNetworkRequest r;
r.setUrl(url);
r.setRawHeader("User-Agent", m_ua);
m_getReply = m_manager->get(r);
m_redirect_url.clear();
}
void PlayListDownloader::readResponse(QNetworkReply *reply)
{
if(reply != m_getReply)
{
reply->deleteLater();
return;
}
if(reply->error() != QNetworkReply::NoError)
{
emit finished(false, reply->errorString() + " (" + reply->error() + ")");
reply->deleteLater();
return;
}
QUrl url = reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl();
if(!url.isEmpty() && url != m_redirect_url)
{
m_redirect_url = url;
qDebug("PlayListDownloader: redirect to %s", qPrintable(url.toString()));
QNetworkRequest request(url);
request.setRawHeader("User-Agent", m_ua);
if(reply == m_getReply)
m_getReply = m_manager->get(request);
reply->deleteLater();
return;
}
m_redirect_url.clear();
if(reply == m_getReply)
{
m_getReply = nullptr;
if(m_model.isNull())
{
emit finished(true);
return;
}
QString contentType = reply->header(QNetworkRequest::ContentTypeHeader).toString();
qDebug("PlayListDownloader: content type: %s", qPrintable(contentType));
PlayListFormat *fmt = PlayListParser::findByMime(contentType);
if(!fmt)
fmt = PlayListParser::findByUrl(m_url);
if(fmt)
{
m_model->loadPlaylist(fmt->properties().shortName, reply->readAll());
emit finished(true);
}
else
{
emit finished(false, tr("Unsupported playlist format"));
}
}
reply->deleteLater();
}
|