]> git.sur5r.net Git - minitube/blob - src/jsfunctions.cpp
b23098f6a4ea2920f740c7f08dc9d747933d5930
[minitube] / src / jsfunctions.cpp
1 /* $BEGIN_LICENSE
2
3 This file is part of Minitube.
4 Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
5
6 Minitube is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 Minitube is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Minitube.  If not, see <http://www.gnu.org/licenses/>.
18
19 $END_LICENSE */
20
21 #include "jsfunctions.h"
22 #include "networkaccess.h"
23 #include <QDesktopServices>
24 #include "constants.h"
25
26 namespace The {
27 NetworkAccess* http();
28 }
29
30 JsFunctions* JsFunctions::instance() {
31     static JsFunctions *i = new JsFunctions();
32     return i;
33 }
34
35 JsFunctions::JsFunctions(QObject *parent) : QObject(parent), engine(0) {
36     QFile file(jsPath());
37     if (file.exists()) {
38         if (file.open(QIODevice::ReadOnly | QIODevice::Text))
39             parseJs(QString::fromUtf8(file.readAll()));
40         else
41             qWarning() << file.errorString() << file.fileName();
42         QFileInfo info(file);
43         if (info.lastModified().toTime_t() < QDateTime::currentDateTime().toTime_t() - 1800)
44             loadJs();
45     } else {
46         QFile resFile(QLatin1String(":/") + jsFilename());
47         resFile.open(QIODevice::ReadOnly | QIODevice::Text);
48         parseJs(QString::fromUtf8(resFile.readAll()));
49         loadJs();
50     }
51 }
52
53 void JsFunctions::parseJs(const QString &js) {
54     if (js.isEmpty()) return;
55     if (engine) delete engine;
56     engine = new QScriptEngine();
57     engine->evaluate(js);
58 }
59
60 const QLatin1String & JsFunctions::jsFilename() {
61     static const QLatin1String filename("functions.js");
62     return filename;
63 }
64
65 const QString & JsFunctions::jsPath() {
66     static const QString path(
67             #if QT_VERSION >= 0x050000
68                 QStandardPaths::writableLocation(QStandardPaths::DataLocation)
69             #else
70                 QDesktopServices::storageLocation(QDesktopServices::DataLocation)
71             #endif
72                 + "/" + jsFilename());
73     return path;
74 }
75
76 void JsFunctions::loadJs() {
77     QUrl url(QLatin1String(Constants::WEBSITE) + "-ws/" + jsFilename());
78     url.addQueryItem("v", Constants::VERSION);
79     NetworkReply* reply = The::http()->get(url);
80     connect(reply, SIGNAL(data(QByteArray)), SLOT(gotJs(QByteArray)));
81     connect(reply, SIGNAL(error(QNetworkReply*)), SLOT(errorJs(QNetworkReply*)));
82 }
83
84 void JsFunctions::gotJs(QByteArray bytes) {
85     parseJs(QString::fromUtf8(bytes));
86     QFile file(jsPath());
87     if (!file.open(QIODevice::WriteOnly))
88         qWarning() << file.errorString() << file.fileName();
89     QDataStream stream(&file);
90     stream.writeRawData(bytes.constData(), bytes.size());
91 }
92
93 void JsFunctions::errorJs(QNetworkReply *reply) {
94     qWarning() << "Cannot get" << jsFilename() << reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt()
95                   << reply->url().toString() << reply->errorString();
96 }
97
98 QString JsFunctions::evaluate(const QString &js) {
99     if (!engine) return QString();
100     QScriptValue value = engine->evaluate(js);
101     if (value.isUndefined())
102         qWarning() << "Undefined result for" << js;
103     if (value.isError())
104         qWarning() << "Error in" << js << value.toString();
105
106     return value.toString();
107 }
108
109 QString JsFunctions::decryptSignature(const QString &s) {
110     return evaluate("decryptSignature('" + s + "')");
111 }
112
113 QString JsFunctions::decryptAgeSignature(const QString &s) {
114     return evaluate("decryptAgeSignature('" + s + "')");
115 }
116
117 QString JsFunctions::videoIdRE() {
118     return evaluate("videoIdRE()");
119 }
120
121 QString JsFunctions::videoTokenRE() {
122     return evaluate("videoTokenRE()");
123 }
124
125 QString JsFunctions::videoInfoFmtMapRE() {
126     return evaluate("videoInfoFmtMapRE()");
127 }
128
129 QString JsFunctions::webPageFmtMapRE() {
130     return evaluate("webPageFmtMapRE()");
131 }
132
133 QString JsFunctions::ageGateRE() {
134     return evaluate("ageGateRE()");
135 }
136
137 QString JsFunctions::jsPlayerRE() {
138     return evaluate("jsPlayerRE()");
139 }
140
141 QString JsFunctions::signatureFunctionNameRE() {
142     return evaluate("signatureFunctionNameRE()");
143 }