-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.js
272 lines (220 loc) · 8.01 KB
/
main.js
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/*
*
* This extension is based on AdobeHDS Link Detector Firefox complement.
* https://addons.mozilla.org/pt-BR/firefox/addon/hds-link-detector/?src=api
*
*/
var endpointUrl = "http://ec2-nutel.duckdns.org:8080/hello"
var manifestUrl = false;
var manifestDetected = false;
var disciplina;
var aula;
var nextAula;
// ID of the tab where my content script is running;
var tabID;
/*
* After the manifest is downloaded, this function is called when the player will get the first video
* fragment. This is needed to get authentication information which the player derives from is key.
*/
function onSendHeaders(details)
{
//console.log("onSendHeaders: " + details.url);
if (manifestDetected && manifestUrl)
{
var fullUrl = details.url
var url = fullUrl;
var headers = details.requestHeaders;
var userAgent = findUserAgent(headers);
//console.log("onSendHeaders: " + userAgent);
if (url.indexOf("?") != -1) url = url.substr(0, url.indexOf("?"));
if (url.search(/seg\d+\-frag\d+$/i) != -1)
{
var command = "php AdobeHDS.php --manifest \"" + manifestUrl + "\" --delete";
var authParams = false;
if (fullUrl.indexOf("?") != -1) authParams = fullUrl.substr(fullUrl.indexOf("?") + 1);
if (authParams)
{
command += " --auth \"" + authParams + "\"";
}
if (userAgent)
{
command += " --useragent \"" + userAgent + "\"";
}
console.dir(command);
queueDownload(manifestUrl, authParams, userAgent);
manifestDetected = false;
manifestUrl = false;
}
}
}
/*
* Get addition information about this class.
*/
function getClassDetails(callback){
chrome.tabs.sendMessage(tabID, {
command: 'get_details',
}, function (response) {
if (chrome.runtime.lastError) {
console.log('ERROR: ' + chrome.runtime.lastError.message);
} else {
callback(response);
}
});
}
/*
* Tell content script to change tab URL to the next class URL;
*/
function goToNextClass(){
if (typeof nextAula == undefined){
console.log("Can't go past the last class");
}else{
chrome.tabs.update(tabID, {url: nextAula});
}
}
function logOnContentScript(message){
chrome.tabs.sendMessage(tabID, {command: "log", message: message});
}
function queueDownload(manifestURL, authParams, userAgent){
var data = new FormData();
data.append('disciplina', disciplina);
data.append('aula', aula);
data.append('manifest', manifestUrl);
data.append('auth', authParams);
data.append('ua', userAgent);
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState == XMLHttpRequest.DONE && xhr.status == 200) {
logOnContentScript("Download finished");
setTimeout(function(){ goToNextClass() }, 5000);
}
}
xhr.open('POST', endpointUrl, false);
//xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
xhr.send(data);
}
function findUserAgent(headers)
{
a = headers.filter(function(el){
return el.name === 'User-Agent'
});
if (a.length > 0){
return a[0].value;
}
return false;
}
/*
* This will try to get manifest URL from a request.
*/
function onCompleted(details)
{
//console.log("onCompleted: " + details.url);
if (!manifestUrl && !manifestDetected)
{
var fullUrl = details.url;
var url = fullUrl;
if (url.indexOf("?") != -1) url = url.substr(0, url.indexOf("?"));
if (url.search(/\.f4m$/i) != -1)
{
manifestDetected = true;
manifestUrl = fullUrl;
//var newListener = new TracingListener();
//event.subject.QueryInterface(Ci.nsITraceableChannel);
//newListener.originalListener = event.subject.setNewListener(newListener);
}
}
}
/*
function CCIN(cName, ifaceName)
{
return Cc[cName].createInstance(Ci[ifaceName]);
}
*/
/*
* There is no way right now (april-2015) to read response body from a chrome extension
* without using developer tools.
* So, this may be broke, because we won't check if the manifest is valid.
* TODO: Get manifest via XMLHTTP (if possible) and parse it.
function TracingListener()
{
this.originalListener = null;
this.receivedData = "";
this.onDataAvailable = function (request, context, inputStream, offset, count)
{
var binaryInputStream = CCIN("@mozilla.org/binaryinputstream;1", "nsIBinaryInputStream");
var storageStream = CCIN("@mozilla.org/storagestream;1", "nsIStorageStream");
var binaryOutputStream = CCIN("@mozilla.org/binaryoutputstream;1", "nsIBinaryOutputStream");
binaryInputStream.setInputStream(inputStream);
storageStream.init(8192, count, null);
binaryOutputStream.setOutputStream(storageStream.getOutputStream(0));
// Copy received data
var data = binaryInputStream.readBytes(count);
this.receivedData += data;
binaryOutputStream.writeBytes(data, count);
this.originalListener.onDataAvailable(request, context, storageStream.newInputStream(0), offset, count);
};
this.onStartRequest = function (request, context)
{
this.originalListener.onStartRequest(request, context);
};
this.onStopRequest = function (request, context, statusCode)
{
console.log(this.receivedData);
var xmlParser = CCIN("@mozilla.org/xmlextras/domparser;1", "nsIDOMParser");
var xml = xmlParser.parseFromString(this.receivedData, "application/xml");
if (xml.getElementsByTagName("parsererror")[0])
{
manifestUrl = false;
console.log("Failed to parse xml");
}
else if (xml.getElementsByTagName("manifest")[0])
{
var manifest = xml.getElementsByTagName("manifest")[0];
var href = manifest.getElementsByTagName("media")[0].getAttribute("href");
var url = manifest.getElementsByTagName("media")[0].getAttribute("url");
if (href)
{
console.log("Detected a set-level manifest: " + href);
}
else if (url)
{
console.log("Detected a stream-level manifest: " + url)
if (url.indexOf("?") != -1) url = url.substr(0, url.indexOf("?"));
if (url.search(/\.f4m$/i) != -1) manifestUrl = false;
}
else
{
manifestUrl = false;
}
}
else
{
manifestUrl = false
};
this.originalListener.onStopRequest(request, context, statusCode);
};
this.QueryInterface = function (aIID)
{
if (aIID.equals(Ci.nsIStreamListener) || aIID.equals(Ci.nsISupports))
{
return this;
}
throw Cr.NS_NOINTERFACE;
};
}
*/
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse) {
switch(request.command){
case "register":
// TODO: find a way to deregister the content-script;
tabID = sender.tab.id;
aula = request.aula;
disciplina = request.disciplina;
nextAula = request.nextAula;
// TODO: Check if blocking is really needed.
chrome.webRequest.onSendHeaders.addListener(onSendHeaders, {urls: ["<all_urls>"]}, ["requestHeaders"]);
chrome.webRequest.onCompleted.addListener(onCompleted, {urls: ["<all_urls>"]}, ["responseHeaders"]);
sendResponse({result : "OK"});
break;
}
});