]> git.sur5r.net Git - minitube/blob - src/video.cpp
d414990ddf2538be47dac24eb4d6bc678ad6cecc
[minitube] / src / video.cpp
1 #include "video.h"
2 #include "networkaccess.h"
3 #include <QtNetwork>
4 #include "videodefinition.h"
5
6 namespace The {
7     NetworkAccess* http();
8 }
9
10 Video::Video() : m_duration(0),
11 m_viewCount(-1),
12 definitionCode(0),
13 elIndex(0),
14 loadingStreamUrl(false)
15 { }
16
17 Video* Video::clone() {
18     Video* cloneVideo = new Video();
19     cloneVideo->m_title = m_title;
20     cloneVideo->m_description = m_description;
21     cloneVideo->m_author = m_author;
22     cloneVideo->m_webpage = m_webpage;
23     cloneVideo->m_streamUrl = m_streamUrl;
24     cloneVideo->m_thumbnail = m_thumbnail;
25     cloneVideo->m_thumbnailUrls = m_thumbnailUrls;
26     cloneVideo->m_duration = m_duration;
27     cloneVideo->m_published = m_published;
28     cloneVideo->m_viewCount = m_viewCount;
29     cloneVideo->videoId = videoId;
30     cloneVideo->videoToken = videoToken;
31     cloneVideo->definitionCode = definitionCode;
32     return cloneVideo;
33 }
34
35 void Video::preloadThumbnail() {
36     if (m_thumbnailUrls.isEmpty()) return;
37     QObject *reply = The::http()->get(m_thumbnailUrls.first());
38     connect(reply, SIGNAL(data(QByteArray)), SLOT(setThumbnail(QByteArray)));
39 }
40
41 void Video::setThumbnail(QByteArray bytes) {
42     m_thumbnail = QImage::fromData(bytes);
43     emit gotThumbnail();
44 }
45
46 const QImage Video::thumbnail() const {
47     return m_thumbnail;
48 }
49
50 void Video::loadStreamUrl() {
51     if (loadingStreamUrl) {
52         qDebug() << "Already loading stream URL for" << this->title();
53         return;
54     }
55     loadingStreamUrl = true;
56
57     // https://develop.participatoryculture.org/trac/democracy/browser/trunk/tv/portable/flashscraper.py
58
59     // Get Video ID
60     // youtube-dl line 428
61     // QRegExp re("^((?:http://)?(?:\\w+\\.)?youtube\\.com/(?:(?:v/)|(?:(?:watch(?:\\.php)?)?\\?(?:.+&)?v=)))?([0-9A-Za-z_-]+)(?(1).+)?$");
62     QRegExp re("^http://www\\.youtube\\.com/watch\\?v=([0-9A-Za-z_-]+).*");
63     bool match = re.exactMatch(m_webpage.toString());
64     if (!match || re.numCaptures() < 1) {
65         emit errorStreamUrl(QString("Cannot get video id for %1").arg(m_webpage.toString()));
66         loadingStreamUrl = false;
67         return;
68     }
69     videoId = re.cap(1);
70
71     getVideoInfo();
72
73 }
74
75 void  Video::getVideoInfo() {
76     static const QStringList elTypes = QStringList() << "&el=embedded" << "&el=vevo" << "&el=detailpage" << "";
77
78     if (elIndex > elTypes.size() - 1) {
79         loadingStreamUrl = false;
80         emit errorStreamUrl("Cannot get video info");
81         /*
82         // Don't panic! We have a plan B.
83         // get the youtube video webpage
84         qDebug() << "Scraping" << webpage().toString();
85         QObject *reply = The::http()->get(webpage().toString());
86         connect(reply, SIGNAL(data(QByteArray)), SLOT(scrapeWebPage(QByteArray)));
87         connect(reply, SIGNAL(error(QNetworkReply*)), SLOT(errorVideoInfo(QNetworkReply*)));
88         // see you in scrapWebPage(QByteArray)
89         */
90         return;
91     }
92
93     // Get Video Token
94     QUrl videoInfoUrl = QUrl(QString(
95             "http://www.youtube.com/get_video_info?video_id=%1%2&ps=default&eurl=&gl=US&hl=en"
96             ).arg(videoId, elTypes.at(elIndex)));
97
98     QObject *reply = The::http()->get(videoInfoUrl);
99     connect(reply, SIGNAL(data(QByteArray)), SLOT(gotVideoInfo(QByteArray)));
100     connect(reply, SIGNAL(error(QNetworkReply*)), SLOT(errorVideoInfo(QNetworkReply*)));
101
102     // see you in gotVideoInfo...
103
104 }
105
106 void  Video::gotVideoInfo(QByteArray data) {
107     QString videoInfo = QString::fromUtf8(data);
108
109     // qDebug() << "videoInfo" << videoInfo;
110
111     // get video token
112     QRegExp re = QRegExp("^.*&token=([^&]+).*$");
113     bool match = re.exactMatch(videoInfo);
114     // handle regexp failure
115     if (!match || re.numCaptures() < 1) {
116         // Don't panic! We're gonna try another magic "el" param
117         elIndex++;
118         getVideoInfo();
119         return;
120     }
121     QString videoToken = re.cap(1);
122     while (videoToken.contains('%'))
123         videoToken = QByteArray::fromPercentEncoding(videoToken.toAscii());
124     // qDebug() << "videoToken" << videoToken;
125     this->videoToken = videoToken;
126
127     // get fmt_url_map
128     re = QRegExp("^.*&url_encoded_fmt_stream_map=([^&]+).*$");
129     match = re.exactMatch(videoInfo);
130     // handle regexp failure
131     if (!match || re.numCaptures() < 1) {
132         // Don't panic! We're gonna try another magic "el" param
133         elIndex++;
134         getVideoInfo();
135         return;
136     }
137
138     QString fmtUrlMap = re.cap(1);
139     fmtUrlMap = QByteArray::fromPercentEncoding(fmtUrlMap.toUtf8());
140
141     QSettings settings;
142     QString definitionName = settings.value("definition").toString();
143     int definitionCode = VideoDefinition::getDefinitionCode(definitionName);
144
145     // qDebug() << "fmtUrlMap" << fmtUrlMap;
146     QStringList formatUrls = fmtUrlMap.split(",", QString::SkipEmptyParts);
147     QHash<int, QString> urlMap;
148     foreach(QString formatUrl, formatUrls) {
149         // qDebug() << "formatUrl" << formatUrl;
150         QStringList urlParams = formatUrl.split("&", QString::SkipEmptyParts);
151         // qDebug() << "urlParams" << urlParams;
152
153         int format = -1;
154         QString url;
155         foreach(QString urlParam, urlParams) {
156             if (urlParam.startsWith("itag=")) {
157                 int separator = urlParam.indexOf("=");
158                 format = urlParam.mid(separator + 1).toInt();
159             } else if (urlParam.startsWith("url=")) {
160                 int separator = urlParam.indexOf("=");
161                 url = urlParam.mid(separator + 1);
162                 url = QByteArray::fromPercentEncoding(url.toUtf8());
163             }
164         }
165         if (format == -1 || url.isNull()) continue;
166
167         if (format == definitionCode) {
168             qDebug() << "Found format" << definitionCode;
169             QUrl videoUrl = QUrl::fromEncoded(url.toUtf8(), QUrl::StrictMode);
170             m_streamUrl = videoUrl;
171             this->definitionCode = definitionCode;
172             emit gotStreamUrl(videoUrl);
173             loadingStreamUrl = false;
174             return;
175         }
176
177         urlMap.insert(format, url);
178     }
179
180     QList<int> definitionCodes = VideoDefinition::getDefinitionCodes();
181     int currentIndex = definitionCodes.indexOf(definitionCode);
182     int previousIndex = 0;
183     while (currentIndex >= 0) {
184         previousIndex = currentIndex - 1;
185         if (previousIndex < 0) previousIndex = 0;
186         int definitionCode = definitionCodes.at(previousIndex);
187         if (urlMap.contains(definitionCode)) {
188             qDebug() << "Found format" << definitionCode;
189             QString url = urlMap.value(definitionCode);
190             QUrl videoUrl = QUrl::fromEncoded(url.toUtf8(), QUrl::StrictMode);
191             m_streamUrl = videoUrl;
192             this->definitionCode = definitionCode;
193             emit gotStreamUrl(videoUrl);
194             loadingStreamUrl = false;
195             return;
196         }
197         currentIndex--;
198     }
199
200     emit errorStreamUrl(tr("Cannot get video stream for %1").arg(m_webpage.toString()));
201
202 }
203
204 void Video::foundVideoUrl(QString videoToken, int definitionCode) {
205     // qDebug() << "foundVideoUrl" << videoToken << definitionCode;
206
207     QUrl videoUrl = QUrl(QString(
208             "http://www.youtube.com/get_video?video_id=%1&t=%2&eurl=&el=&ps=&asv=&fmt=%3"
209             ).arg(videoId, videoToken, QString::number(definitionCode)));
210
211     m_streamUrl = videoUrl;
212     loadingStreamUrl = false;
213     emit gotStreamUrl(videoUrl);
214 }
215
216 void Video::errorVideoInfo(QNetworkReply *reply) {
217     loadingStreamUrl = false;
218     emit errorStreamUrl(tr("Network error: %1 for %2").arg(reply->errorString(), reply->url().toString()));
219 }
220
221 void Video::scrapeWebPage(QByteArray data) {
222
223     QString videoHTML = QString::fromUtf8(data);
224     QRegExp re(".*, \"t\": \"([^\"]+)\".*");
225     bool match = re.exactMatch(videoHTML);
226
227     // on regexp failure, stop and report error
228     if (!match || re.numCaptures() < 1) {
229         emit errorStreamUrl("Error parsing video page");
230         loadingStreamUrl = false;
231         return;
232     }
233
234     QString videoToken = re.cap(1);
235     // FIXME proper decode
236     videoToken = videoToken.replace("%3D", "=");
237
238     // we'll need this in gotHeadHeaders()
239     this->videoToken = videoToken;
240
241     // qDebug() << "token" << videoToken;
242
243     QSettings settings;
244     QString definitionName = settings.value("definition").toString();
245     int definitionCode = VideoDefinition::getDefinitionCode(definitionName);
246     if (definitionCode == 18) {
247         // This is assumed always available
248         foundVideoUrl(videoToken, 18);
249     } else {
250         findVideoUrl(definitionCode);
251     }
252
253 }
254
255 void Video::gotHeadHeaders(QNetworkReply* reply) {
256     int statusCode = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
257     // qDebug() << "gotHeaders" << statusCode;
258     if (statusCode == 200) {
259         foundVideoUrl(videoToken, definitionCode);
260     } else {
261
262         // try next (lower quality) definition
263         /*
264         QStringList definitionNames = VideoDefinition::getDefinitionNames();
265         int currentIndex = definitionNames.indexOf(currentDefinition);
266         int previousIndex = 0;
267         if (currentIndex > 0) {
268             previousIndex = currentIndex - 1;
269         }
270         if (previousIndex > 0) {
271             QString nextDefinitionName = definitionNames.at(previousIndex);
272             findVideoUrl(nextDefinitionName);
273         } else {
274             foundVideoUrl(videoToken, 18);
275         }*/
276
277
278         QList<int> definitionCodes = VideoDefinition::getDefinitionCodes();
279         int currentIndex = definitionCodes.indexOf(definitionCode);
280         int previousIndex = 0;
281         if (currentIndex > 0) {
282             previousIndex = currentIndex - 1;
283             int definitionCode = definitionCodes.at(previousIndex);
284             if (definitionCode == 18) {
285                 // This is assumed always available
286                 foundVideoUrl(videoToken, 18);
287             } else {
288                 findVideoUrl(definitionCode);
289             }
290
291         } else {
292             foundVideoUrl(videoToken, 18);
293         }
294
295     }
296 }
297
298 void Video::findVideoUrl(int definitionCode) {
299     this->definitionCode = definitionCode;
300
301     QUrl videoUrl = QUrl(QString(
302             "http://www.youtube.com/get_video?video_id=%1&t=%2&eurl=&el=&ps=&asv=&fmt=%3"
303             ).arg(videoId, videoToken, QString::number(definitionCode)));
304
305     QObject *reply = The::http()->head(videoUrl);
306     connect(reply, SIGNAL(finished(QNetworkReply*)), SLOT(gotHeadHeaders(QNetworkReply*)));
307     // connect(reply, SIGNAL(error(QNetworkReply*)), SLOT(errorVideoInfo(QNetworkReply*)));
308
309     // see you in gotHeadHeaders()
310
311 }