]> git.sur5r.net Git - minitube/blob - src/video.cpp
Imported Upstream version 1.4.1
[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("^.*&fmt_url_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         int separator = formatUrl.indexOf("|");
150         if (separator == -1) continue;
151         int format = formatUrl.left(separator).toInt();
152         QString url = formatUrl.mid(separator + 1);
153
154         if (format == definitionCode) {
155             qDebug() << "Found format" << definitionCode;
156             QUrl videoUrl = QUrl::fromEncoded(url.toUtf8(), QUrl::StrictMode);
157             m_streamUrl = videoUrl;
158             this->definitionCode = definitionCode;
159             emit gotStreamUrl(videoUrl);
160             loadingStreamUrl = false;
161             return;
162         }
163
164         urlMap.insert(format, url);
165     }
166
167     QList<int> definitionCodes = VideoDefinition::getDefinitionCodes();
168     int currentIndex = definitionCodes.indexOf(definitionCode);
169     int previousIndex = 0;
170     while (currentIndex >= 0) {
171         previousIndex = currentIndex - 1;
172         int definitionCode = definitionCodes.at(previousIndex);
173         if (urlMap.contains(definitionCode)) {
174             qDebug() << "Found format" << definitionCode;
175             QString url = urlMap.value(definitionCode);
176             QUrl videoUrl = QUrl::fromEncoded(url.toUtf8(), QUrl::StrictMode);
177             m_streamUrl = videoUrl;
178             this->definitionCode = definitionCode;
179             emit gotStreamUrl(videoUrl);
180             loadingStreamUrl = false;
181             return;
182         }
183         currentIndex--;
184     }
185
186     emit errorStreamUrl(tr("Cannot get video stream for %1").arg(m_webpage.toString()));
187
188 }
189
190 void Video::foundVideoUrl(QString videoToken, int definitionCode) {
191     // qDebug() << "foundVideoUrl" << videoToken << definitionCode;
192
193     QUrl videoUrl = QUrl(QString(
194             "http://www.youtube.com/get_video?video_id=%1&t=%2&eurl=&el=&ps=&asv=&fmt=%3"
195             ).arg(videoId, videoToken, QString::number(definitionCode)));
196
197     m_streamUrl = videoUrl;
198     loadingStreamUrl = false;
199     emit gotStreamUrl(videoUrl);
200 }
201
202 void Video::errorVideoInfo(QNetworkReply *reply) {
203     loadingStreamUrl = false;
204     emit errorStreamUrl(tr("Network error: %1 for %2").arg(reply->errorString(), reply->url().toString()));
205 }
206
207 void Video::scrapeWebPage(QByteArray data) {
208
209     QString videoHTML = QString::fromUtf8(data);
210     QRegExp re(".*, \"t\": \"([^\"]+)\".*");
211     bool match = re.exactMatch(videoHTML);
212
213     // on regexp failure, stop and report error
214     if (!match || re.numCaptures() < 1) {
215         emit errorStreamUrl("Error parsing video page");
216         loadingStreamUrl = false;
217         return;
218     }
219
220     QString videoToken = re.cap(1);
221     // FIXME proper decode
222     videoToken = videoToken.replace("%3D", "=");
223
224     // we'll need this in gotHeadHeaders()
225     this->videoToken = videoToken;
226
227     // qDebug() << "token" << videoToken;
228
229     QSettings settings;
230     QString definitionName = settings.value("definition").toString();
231     int definitionCode = VideoDefinition::getDefinitionCode(definitionName);
232     if (definitionCode == 18) {
233         // This is assumed always available
234         foundVideoUrl(videoToken, 18);
235     } else {
236         findVideoUrl(definitionCode);
237     }
238
239 }
240
241 void Video::gotHeadHeaders(QNetworkReply* reply) {
242     int statusCode = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
243     // qDebug() << "gotHeaders" << statusCode;
244     if (statusCode == 200) {
245         foundVideoUrl(videoToken, definitionCode);
246     } else {
247
248         // try next (lower quality) definition
249         /*
250         QStringList definitionNames = VideoDefinition::getDefinitionNames();
251         int currentIndex = definitionNames.indexOf(currentDefinition);
252         int previousIndex = 0;
253         if (currentIndex > 0) {
254             previousIndex = currentIndex - 1;
255         }
256         if (previousIndex > 0) {
257             QString nextDefinitionName = definitionNames.at(previousIndex);
258             findVideoUrl(nextDefinitionName);
259         } else {
260             foundVideoUrl(videoToken, 18);
261         }*/
262
263
264         QList<int> definitionCodes = VideoDefinition::getDefinitionCodes();
265         int currentIndex = definitionCodes.indexOf(definitionCode);
266         int previousIndex = 0;
267         if (currentIndex > 0) {
268             previousIndex = currentIndex - 1;
269             int definitionCode = definitionCodes.at(previousIndex);
270             if (definitionCode == 18) {
271                 // This is assumed always available
272                 foundVideoUrl(videoToken, 18);
273             } else {
274                 findVideoUrl(definitionCode);
275             }
276
277         } else {
278             foundVideoUrl(videoToken, 18);
279         }
280
281     }
282 }
283
284 void Video::findVideoUrl(int definitionCode) {
285     this->definitionCode = definitionCode;
286
287     QUrl videoUrl = QUrl(QString(
288             "http://www.youtube.com/get_video?video_id=%1&t=%2&eurl=&el=&ps=&asv=&fmt=%3"
289             ).arg(videoId, videoToken, QString::number(definitionCode)));
290
291     QObject *reply = The::http()->head(videoUrl);
292     connect(reply, SIGNAL(finished(QNetworkReply*)), SLOT(gotHeadHeaders(QNetworkReply*)));
293     // connect(reply, SIGNAL(error(QNetworkReply*)), SLOT(errorVideoInfo(QNetworkReply*)));
294
295     // see you in gotHeadHeaders()
296
297 }