]> git.sur5r.net Git - minitube/blob - src/jsfunctions.cpp
New upstream version 3.9.1
[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 "constants.h"
23 #include "http.h"
24
25 #include <QJSValueIterator>
26
27 JsFunctions *JsFunctions::instance() {
28     static JsFunctions *i = new JsFunctions(QLatin1String(Constants::WEBSITE) + "-ws/functions.js");
29     return i;
30 }
31
32 JsFunctions::JsFunctions(const QString &url, QObject *parent)
33     : QObject(parent), url(url), engine(nullptr) {
34     QFile file(jsPath());
35     if (file.exists()) {
36         if (file.open(QIODevice::ReadOnly | QIODevice::Text))
37             parseJs(QString::fromUtf8(file.readAll()));
38         else
39             qWarning() << "Cannot open" << file.errorString() << file.fileName();
40         QFileInfo info(file);
41         bool stale = info.size() == 0 || info.lastModified().toTime_t() <
42                                                  QDateTime::currentDateTime().toTime_t() - 1800;
43         if (stale) loadJs();
44     } else {
45         /*
46         QFile resFile(QLatin1String(":/") + jsFilename());
47         resFile.open(QIODevice::ReadOnly | QIODevice::Text);
48         parseJs(QString::fromUtf8(resFile.readAll()));
49         */
50         loadJs();
51     }
52 }
53
54 void JsFunctions::parseJs(const QString &js) {
55     // qDebug() << "Js Parsing" << js;
56     if (js.isEmpty()) return;
57     if (engine) delete engine;
58     engine = new QJSEngine(this);
59     engine->evaluate(js);
60     QTimer::singleShot(0, this, [this] {
61         qDebug() << "Emitting ready";
62         emit ready();
63     });
64 }
65
66 QString JsFunctions::jsFilename() {
67     return QFileInfo(url).fileName();
68 }
69
70 QString JsFunctions::jsDir() {
71     return QStandardPaths::writableLocation(QStandardPaths::DataLocation);
72 }
73
74 QString JsFunctions::jsPath() {
75     return jsDir() + QLatin1String("/") + jsFilename();
76 }
77
78 void JsFunctions::loadJs() {
79     qDebug() << "Js Loading" << url;
80     QUrl url(this->url);
81     QUrlQuery q;
82     q.addQueryItem("v", Constants::VERSION);
83     url.setQuery(q);
84     QObject *reply = Http::instance().get(url);
85     connect(reply, SIGNAL(data(QByteArray)), SLOT(gotJs(QByteArray)));
86     connect(reply, SIGNAL(error(QString)), SLOT(errorJs(QString)));
87 }
88
89 void JsFunctions::gotJs(const QByteArray &bytes) {
90     if (bytes.isEmpty()) {
91         qWarning() << "Got empty js";
92         return;
93     }
94     QDir().mkpath(jsDir());
95     QFile file(jsPath());
96     if (!file.open(QIODevice::WriteOnly)) {
97         qWarning() << "Cannot write" << file.errorString() << file.fileName();
98         return;
99     }
100     QDataStream stream(&file);
101     stream.writeRawData(bytes.constData(), bytes.size());
102     parseJs(QString::fromUtf8(bytes));
103 }
104
105 void JsFunctions::errorJs(const QString &message) {
106     qWarning() << message;
107 }
108
109 QJSValue JsFunctions::evaluate(const QString &js) {
110     if (!engine) return QString();
111     QJSValue value = engine->evaluate(js);
112     if (value.isUndefined()) qWarning() << "Undefined result for" << js;
113     if (value.isError()) qWarning() << "Error in" << js << value.toString();
114
115     return value;
116 }
117
118 QString JsFunctions::string(const QString &js) {
119     return evaluate(js).toString();
120 }
121
122 QStringList JsFunctions::stringArray(const QString &js) {
123     QStringList items;
124     QJSValue array = evaluate(js);
125     if (!array.isArray()) return items;
126     QJSValueIterator it(array);
127     while (it.hasNext()) {
128         it.next();
129         QJSValue value = it.value();
130         if (!value.isString()) continue;
131         items << value.toString();
132     }
133     return items;
134 }
135
136 QString JsFunctions::decryptSignature(const QString &s) {
137     return string("decryptSignature('" + s + "')");
138 }
139
140 QString JsFunctions::decryptAgeSignature(const QString &s) {
141     return string("decryptAgeSignature('" + s + "')");
142 }
143
144 QString JsFunctions::videoIdRE() {
145     return string("videoIdRE()");
146 }
147
148 QString JsFunctions::videoTokenRE() {
149     return string("videoTokenRE()");
150 }
151
152 QString JsFunctions::videoInfoFmtMapRE() {
153     return string("videoInfoFmtMapRE()");
154 }
155
156 QString JsFunctions::webPageFmtMapRE() {
157     return string("webPageFmtMapRE()");
158 }
159
160 QString JsFunctions::ageGateRE() {
161     return string("ageGateRE()");
162 }
163
164 QString JsFunctions::jsPlayerRE() {
165     return string("jsPlayerRE()");
166 }
167
168 QString JsFunctions::signatureFunctionNameRE() {
169     return string("signatureFunctionNameRE()");
170 }
171
172 QStringList JsFunctions::signatureFunctionNameREs() {
173     return stringArray("signatureFunctionNameREs()");
174 }
175
176 QStringList JsFunctions::apiKeys() {
177     return stringArray("apiKeys()");
178 }