This repository has been archived by the owner on Aug 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
index.js.in
791 lines (677 loc) · 22.9 KB
/
index.js.in
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
'use strict';
/**
* Pre-load dependencies and then load the main page.
*/
(function() {
var loadingPromises = [];
if (config.midletClassName === "RunTestsMIDlet" ||
config.midletClassName.startsWith("tests.midlets")) {
loadingPromises.push(loadScript("tests/contacts.js"),
loadScript("tests/index.js"),
loadScript("tests/mozactivitymock.js"));
}
if (navigator.userAgent.indexOf('Chrome') > -1) {
loadingPromises.push(loadScript("polyfill/chrome_polyfills.js"));
}
Promise.all(loadingPromises).then(function() {
document.getElementById("mozbrowser").src = "main.html" + location.search;
});
})();
var childOrigin = document.location.origin;
document.getElementById("mozbrowser").addEventListener("mozbrowserlocationchange", function(event) {
childOrigin = new URL(event.detail).origin;
var parentOrigin = document.location.origin;
if (childOrigin !== parentOrigin) {
console.warn("on location change: child origin " + childOrigin + " !== parent origin " + parentOrigin);
}
});
var DumbPipe = {
// Functions that handle requests to open a pipe, indexed by type.
openers: {},
// Functions that receive messages from the other side for active pipes.
recipients: {},
// Every time we want to make the other side retrieve messages, the hash
// of the other side's web page has to change, so we increment it.
nextHashID: 0,
registerOpener: function(type, opener) {
this.openers[type] = opener;
},
handleEvent: function(event) {
var parentOrigin = document.location.origin;
if (childOrigin !== parentOrigin) {
console.error("on show modal prompt: child origin " + childOrigin + " !== parent origin " + parentOrigin);
return;
}
window.nextTickBeforeEvents(this.handlePipeEvent.bind(this, event));
},
handlePipeEvent: function(event) {
if (event.detail.promptType == "custom-prompt") {
console.warn("unresponsive script warning; figure out how to handle");
return;
}
/**
* We embed messages in the mozbrowsershowmodalprompt event's detail.message
* property. The value of that property is a JSON string representing
* the message envelope, whose inner "message" property contains the actual
* message.
*
* @property command {String} the command to invoke: open|message|get|close
* @property type {String} the type of pipe to open (when command == open)
* @property pipeID {Number} unique ID (when command == open|message|close)
* @property message {String} the JSON message to forward to this side
*/
var envelope = JSON.parse(event.detail.message);
switch (envelope.command) {
case "open":
//console.log("outer recv: " + JSON.stringify(envelope));
this.openPipe(envelope.pipeID, envelope.type, envelope.message);
break;
case "message":
//console.log("outer recv: " + JSON.stringify(envelope));
this.receiveMessage(envelope.pipeID, envelope.message);
break;
case "close":
//console.log("outer recv: " + JSON.stringify(envelope));
this.closePipe(envelope.pipeID);
break;
}
},
openPipe: function(pipeID, type, message) {
var opener = this.openers[type];
if (!opener) {
console.error("no opener for pipe type " + type);
return;
}
// Create a function that this side of the boundary can use to send
// a message to the other side.
var sender = this.sendMessage.bind(this, pipeID);
this.recipients[pipeID] = opener(message, sender);
},
sendMessage: function(pipeID, message) {
var envelope = { pipeID: pipeID, message: message };
//console.log("outer send: " + JSON.stringify(envelope));
try {
document.getElementById("mozbrowser").contentWindow.postMessage(envelope, "*");
} catch (e) {
console.log("Error " + e + " while sending message: " + JSON.stringify(envelope));
}
},
receiveMessage: function(pipeID, message, detail) {
window.nextTickBeforeEvents(function() {
if (!this.recipients[pipeID]) {
console.warn("nonexistent pipe " + pipeID + " received message " + JSON.stringify(message));
return;
}
try {
this.recipients[pipeID](message);
} catch(ex) {
console.error(ex + "\n" + ex.stack);
}
}.bind(this));
},
closePipe: function(pipeID) {
delete this.recipients[pipeID];
}
};
document.getElementById("mozbrowser").addEventListener("mozbrowsershowmodalprompt",
DumbPipe.handleEvent.bind(DumbPipe),
true);
DumbPipe.registerOpener("alert", function(message, sender) {
alert(message);
});
DumbPipe.registerOpener("mobileInfo", function(message, sender) {
// Initialize the object with the URL params and fallback placeholders
// for testing/debugging on a desktop.
var mobileInfo = {
network: {
mcc: config.network_mcc || "310", // United States
mnc: config.network_mnc || "001",
},
icc: {
mcc: config.icc_mcc || "310", // United States
mnc: config.icc_mnc || "001",
msisdn: config.icc_msisdn || "10005551212",
},
};
var mobileConnections = window.navigator.mozMobileConnections;
if (!mobileConnections && window.navigator.mozMobileConnection) {
mobileConnections = [ window.navigator.mozMobileConnection ];
}
// If we have access to the Mobile Connection API, then we use it to get
// the actual values.
if (mobileConnections) {
// Then the only part of the Mobile Connection API that is accessible
// to privileged apps is lastKnownNetwork and lastKnownHomeNetwork, which
// is fortunately all we need. lastKnownNetwork is a string of format
// "<mcc>-<mnc>", while lastKnownHomeNetwork is "<mcc>-<mnc>[-<spn>]".
// Use only the info about the first SIM for the time being.
var lastKnownNetwork = mobileConnections[0].lastKnownNetwork.split("-");
mobileInfo.network.mcc = lastKnownNetwork[0];
mobileInfo.network.mnc = lastKnownNetwork[1];
var lastKnownHomeNetwork = mobileConnections[0].lastKnownHomeNetwork.split("-");
mobileInfo.icc.mcc = lastKnownHomeNetwork[0];
mobileInfo.icc.mnc = lastKnownHomeNetwork[1];
}
sender(mobileInfo);
});
DumbPipe.registerOpener("contacts", function(message, sender) {
var req = navigator.mozContacts.getAll();
req.onsuccess = function() {
var contact = req.result;
// Transform the mozContact into a normal object, otherwise
// the pipe won't be able to send it.
sender(contact ? JSON.parse(JSON.stringify(contact)) : null);
if (contact) {
req.continue();
}
}
req.onerror = function() {
console.error("Error while reading contacts");
}
});
DumbPipe.registerOpener("socket", function(message, sender) {
var socket;
try {
socket = navigator.mozTCPSocket.open(message.host, message.port, { binaryType: "arraybuffer" });
} catch(ex) {
sender({ type: "error", error: "error opening socket" });
return function() {};
}
socket.onopen = function() {
sender({ type: "open" });
}
socket.onerror = function(event) {
sender({ type: "error", error: event.data.name });
}
socket.ondata = function(event) {
sender({ type: "data", data: event.data });
}
socket.ondrain = function(event) {
sender({ type: "drain" });
}
socket.onclose = function(event) {
sender({ type: "close" });
}
var send = function(data) {
// Convert the data back to an Int8Array.
data = new Int8Array(data);
try {
var result = socket.send(data.buffer, 0, data.length);
sender({ type: "send", result: result });
} catch (ex) {
sender({ type: "send", error: ex.toString() });
}
};
return function(message) {
switch (message.type) {
case "send":
send(message.data);
break;
case "close":
socket.close();
break;
}
};
});
DumbPipe.registerOpener("audiorecorder", function(message, sender) {
var mediaRecorder = null;
var localAudioStream = null;
function startRecording(localStream) {
localAudioStream = localStream;
mediaRecorder = new MediaRecorder(localStream, {
mimeType: message.mimeType // 'audio/3gpp' // need to be certified app.
});
mediaRecorder.ondataavailable = function(e) {
if (e.data.size == 0) {
return;
}
var fileReader = new FileReader();
fileReader.onload = function() {
sender({ type: "data", data: fileReader.result });
};
fileReader.readAsArrayBuffer(e.data);
};
mediaRecorder.onstop = function(e) {
// Do nothing here, just relay the event.
//
// We can't close the pipe here, one reason is |onstop| is fired before |ondataavailable|,
// if close pipe here, there is no chance to deliever the recorded voice. Another reason is
// the recording might be stopped and started back and forth. So let's do the pipe
// closing on the other side instead, i.e. DirectRecord::nClose.
sender({ type: "stop" });
};
mediaRecorder.onerror = function(e) {
sender({ type: "error" });
};
mediaRecorder.onpause = function(e) {
sender({ type: "pause" });
};
mediaRecorder.onstart = function(e) {
sender({ type: "start" });
};
mediaRecorder.start();
}
return function(message) {
switch(message.type) {
case "start":
try {
if (!mediaRecorder) {
navigator.mozGetUserMedia({
audio: true
}, function(localStream) {
startRecording(localStream);
}, function(e) {
sender({ type: "error", error: e });
});
} else if (mediaRecorder.state == "paused") {
mediaRecorder.resume();
} else {
mediaRecorder.start();
}
} catch (e) {
sender({ type: "error", error: e });
}
break;
case "requestData":
try {
// An InvalidState error might be thrown.
mediaRecorder.requestData();
} catch (e) {
sender({ type: "error", error: e });
}
break;
case "pause":
try {
mediaRecorder.pause();
} catch (e) {
sender({ type: "error", error: e });
}
break;
case "stop":
try {
mediaRecorder.stop();
localAudioStream.stop();
mediaRecorder = null;
localAudioStream = null;
} catch (e) {
sender({ type: "error", error: e });
}
break;
}
};
});
DumbPipe.registerOpener("audioplayer", function(message, sender) {
var audio = new Audio();
function play() {
audio.play();
audio.onended = function() {
sender({ type: "end", duration: getDuration() });
};
}
function getDuration() {
return Math.round(audio.duration * 1000);
}
return function(message) {
var data;
switch(message.type) {
case "start":
if (!message.data) {
play();
return;
}
// Convert the data back to an Int8Array.
data = new Int8Array(message.data);
new Promise(function(resolve, reject) {
var blob = new Blob([ data ],
{ type: message.contentType });
audio.src = URL.createObjectURL(blob);
audio.onloadedmetadata = function() {
resolve();
play();
};
audio.onerror = reject;
}).done(function() {
URL.revokeObjectURL(audio.src);
});
break;
case "play":
play();
break;
case "pause":
audio.onended = null;
audio.pause();
break;
case "close":
audio.pause();
audio.src = "";
break;
case "getMediaTime":
sender({ type: "mediaTime", data: Math.round(audio.currentTime * 1000) });
break;
case "setMediaTime":
audio.currentTime = message.data / 1000;
break;
case "setVolume":
audio.volume = message.data / 100;
break;
case "setMute":
audio.muted = message.data;
case "getDuration":
sender({ type: "duration", data: getDuration() });
break;
}
};
});
DumbPipe.registerOpener("camera", function(message, sender) {
var mediaStream = null;
var url = null;
var video = document.createElement("video");
document.body.appendChild(video);
video.style.position = "absolute";
video.style.visibility = "hidden";
// Some MIDlets need user touch/click on the screen to complete the snapshot,
// to make sure the MIDlet itself instead of the video element can capture
// the mouse/touch events, we need to set `pointer-events` as `none`.
video.style.pointerEvents = "none";
video.addEventListener('canplay', function(ev) {
// We should use videoWidth and videoHeight, but they are unavailable (https://bugzilla.mozilla.org/show_bug.cgi?id=926753)
var getDimensions = setInterval(function() {
if (video.videoWidth > 0 && video.videoHeight > 0) {
clearInterval(getDimensions);
sender({ type: "gotstream", width: video.videoWidth, height: video.videoHeight });
}
}, 50);
}, false);
navigator.mozGetUserMedia({
video: true,
audio: false,
}, function(localMediaStream) {
mediaStream = localMediaStream;
url = URL.createObjectURL(localMediaStream);
video.onerror = video.onloadeddata = function() {
URL.revokeObjectURL(url);
};
video.src = url;
video.play();
}, function(err) {
console.log("Error: " + err);
sender({ type: "initerror", name: err.name, message: err.message });
});
return function(message) {
switch (message.type) {
case "setPosition":
video.style.left = message.x + "px";
video.style.top = message.y + "px";
video.style.width = message.w + "px";
video.style.height = message.h + "px";
break;
case "setVisible":
video.style.visibility = message.visible ? "visible" : "hidden";
break;
case "snapshot":
var canvas = document.createElement("canvas");
canvas.width = video.videoWidth;
canvas.height = video.videoHeight;
var ctx = canvas.getContext("2d");
ctx.drawImage(video, 0, 0, video.videoWidth, video.videoHeight);
canvas.toBlob(function(blob) {
var fileReader = new FileReader();
fileReader.onload = function(data) {
sender({ type: "snapshot", data: fileReader.result });
}
fileReader.readAsArrayBuffer(blob);
}, message.imageType);
break;
case "close":
if (mediaStream) {
mediaStream.stop();
}
if (video.parentNode) {
document.body.removeChild(video);
}
break;
}
};
});
// #if JSR_179 == 1
var LocationProvider = {};
LocationProvider.AVAILABLE = 1;
LocationProvider.TEMPORARILY_UNAVAILABLE = 1;
LocationProvider.OUT_OF_SERVICE = 1;
LocationProvider.state = LocationProvider.OUT_OF_SERVICE;
LocationProvider.position = {
timestamp: 0,
latitude: 0,
longitude: 0,
altitude: NaN,
horizontalAccuracy: NaN,
verticalAccuracy: NaN,
speed: NaN,
heading: NaN
};
DumbPipe.registerOpener("locationprovider", function(message, sender) {
var id = -1;
var waitForData = false;
// Used to stop watching geolocation if it hasn't been accessed for a given
// time period.
var clearWatchInterval = -1;
var lastVisited = 0;
function watchPosition() {
lastVisited = Date.now();
if (id !== -1) {
return;
}
LocationProvider.state = LocationProvider.TEMPORARILY_UNAVAILABLE;
id = navigator.geolocation.watchPosition(function(pos) {
LocationProvider.state = LocationProvider.AVAILABLE;
LocationProvider.position.timestamp = pos.timestamp;
var c = pos.coords;
LocationProvider.position.latitude = c.latitude;
LocationProvider.position.longitude = c.longitude;
LocationProvider.position.altitude =
c.altitude !== null ? c.altitude : NaN;
LocationProvider.position.horizontalAccuracy =
c.accuracy !== null ? c.accuracy : NaN;
LocationProvider.position.verticalAccuracy =
c.altitudeAccuracy !== null ? c.altitudeAccuracy : NaN;
LocationProvider.position.speed = c.speed !== null ? c.speed : NaN;
LocationProvider.position.course = c.heading !== null ? c.heading : NaN;
sendData();
}, function(err) {
console.log("locationprovider error: " + err);
LocationProvider.state = LocationProvider.OUT_OF_SERVICE;
clearWatch();
sendData();
});
clearWatchInterval = setInterval(function() {
// Stop watching after being inactive for 30s to save power.
if (Date.now() - lastVisited > 30 * 1000) {
clearWatch();
}
}, 10000);
}
function clearWatch() {
if (id === -1) {
return;
}
clearInterval(clearWatchInterval);
clearWatchInterval = -1;
navigator.geolocation.clearWatch(id);
id = -1;
}
function sendData() {
if (!waitForData) {
return;
}
sender({
type: "data",
position: LocationProvider.position,
state: LocationProvider.state
});
waitForData = false;
}
watchPosition();
return function(message) {
switch (message.type) {
case "close":
clearWatch();
break;
case "requestData":
waitForData = true;
watchPosition();
break;
}
};
});
// #endif
var notification = null;
DumbPipe.registerOpener("notification", function(message, sender) {
if (notification) {
notification.close();
notification = null;
}
var img = new Image();
img.src = URL.createObjectURL(new Blob([ new Uint8Array(message.icon) ], { type : message.mime_type }));
img.onload = function() {
var width = Math.min(32, img.naturalWidth);
var height = Math.min(32, img.naturalHeight);
var canvas = document.createElement("canvas");
canvas.width = width;
canvas.height = height;
var ctx = canvas.getContext("2d");
ctx.drawImage(img, 0, 0, width, height);
URL.revokeObjectURL(img.src);
img.src = '';
message.options.icon = canvas.toDataURL();
function permissionGranted() {
notification = new Notification(message.title, message.options);
notification.onshow = function() {
sender({ type: "opened" });
};
notification.onclick = function() {
var request = navigator.mozApps.getSelf();
request.onsuccess = function() {
var app = request.result;
if (app) {
app.launch();
}
};
};
}
if (Notification.permission === "granted") {
permissionGranted();
} else if (Notification.permission !== 'denied') {
Notification.requestPermission(function(permission) {
if (permission === "granted") {
permissionGranted();
}
});
}
}
img.onerror = function() {
URL.revokeObjectURL(img.src);
}
return function(message) {
switch(message.type) {
case "close":
if (notification) {
notification.close();
notification = null;
}
sender({ type: "close" });
break;
}
}
});
DumbPipe.registerOpener("JARDownloader", function(url, sender) {
loadWithProgress(url, "text", function(jadData) {
try {
var manifest = {};
jadData
.replace(/\r\n|\r/g, "\n")
.replace(/\n /g, "")
.split("\n")
.forEach(function(entry) {
if (entry) {
var keyEnd = entry.indexOf(":");
var key = entry.substring(0, keyEnd);
var val = entry.substring(keyEnd + 1).trim();
manifest[key] = val;
}
});
var jarURL = manifest["MIDlet-Jar-URL"];
if (!jarURL.startsWith("http")) {
var jarName = jarURL.substring(jarURL.lastIndexOf("/") + 1);
jarURL = url.substring(0, url.lastIndexOf("/") + 1) + jarName;
}
loadWithProgress(jarURL, "arraybuffer", function(jarData) {
sender({ type: "done", data: { jadData: jadData, jarData: jarData } });
}, function() {
sender({ type: "fail" });
}, function(progress) {
sender({ type: "progress", progress: progress });
}, manifest["MIDlet-Jar-Size"] || 0);
} catch (e) {
sender({ type: "fail" });
}
}, function() {
sender({ type: "fail" });
});
});
DumbPipe.registerOpener("windowOpen", function(message, sender) {
window.open(message);
});
// #if BENCHMARK == "true"
DumbPipe.registerOpener("gcReload", function(message, sender) {
window.location.replace(window.location.href.replace("index.html", "gc.html"));
});
// #endif
DumbPipe.registerOpener("reload", function(message, sender) {
window.location.reload();
});
DumbPipe.registerOpener("exit", function(message, sender) {
window.close();
});
DumbPipe.registerOpener("backgroundCheck", function(message, sender) {
if (navigator.mozAlarms) {
navigator.mozAlarms.add(new Date(Date.now() + MIDlet.wakeUpAlarm), 'ignoreTimezone', {});
navigator.mozSetMessageHandler('alarm', function() {
navigator.mozAlarms.add(new Date(Date.now() + MIDlet.wakeUpAlarm), 'ignoreTimezone', {});
});
}
});
DumbPipe.registerOpener("mozActivity", function(message, sender) {
var activity = new MozActivity(message);
activity.onsuccess = sender.bind(null, { type: "onsuccess" });
activity.onerror = sender.bind(null, { type: "onerror" });
});
DumbPipe.registerOpener("mozActivityHandler", function(message, sender) {
if (!navigator.mozSetMessageHandler) {
return;
}
navigator.mozSetMessageHandler('activity', function(activityRequest) {
if (activityRequest.source.name !== 'share') {
return;
}
/* The data attribute looks like this:
{
"type":"image/*",
"number":1,
"blobs":[{}],
"filenames":["IMG_0001.jpg"],
"filepaths":["/sdcard/DCIM/100MZLLA/IMG_0001.jpg"]
}
*/
var blob = activityRequest.source.data.blobs[0];
var fileReader = new FileReader();
fileReader.onload = function(data) {
sender({
fileName: activityRequest.source.data.filenames[0],
data: fileReader.result
});
}
fileReader.readAsArrayBuffer(blob);
});
});