This commit is contained in:
Caleb James DeLisle
2017-08-07 17:23:28 +02:00
parent 65dfd99171
commit 35a55a15ed
6 changed files with 113 additions and 62 deletions

View File

@@ -1,4 +1,5 @@
// This file provides the external API for launching the sandboxed iframe.
// This file provides the external API for launching and talking to the sandboxed iframe.
// The internal API is in sframe-channel.js
define([
'/common/requireconfig.js'
], function (RequireConfig) {
@@ -11,40 +12,64 @@ define([
return Math.random().toString(16).replace('0.', '') + Math.random().toString(16).replace('0.', '');
};
var init = module.exports.init = function (frame, cb) {
module.exports.init = function (frame, cb) {
if (iframe) { throw new Error('already initialized'); }
var txid = mkTxid();
var intr = setInterval(function () {
frame.contentWindow.postMessage({
frame.contentWindow.postMessage(JSON.stringify({
txid: txid,
requireConf: RequireConfig,
content: { requireConf: RequireConfig },
q: 'INIT'
}, '*');
}), '*');
});
window.addEventListener('message', function (msg) {
console.log('recv');
console.log(msg.origin);
var data = msg.data;
if (data.txid !== txid) { return; }
clearInterval(intr);
iframe = frame;
cb();
var data = JSON.parse(msg.data);
if (!iframe) {
if (data.txid !== txid) { return; }
clearInterval(intr);
iframe = frame;
cb();
} else if (typeof(data.q) === 'string' && handlers[data.q]) {
handlers[data.q](data, msg);
} else if (typeof(data.q) === 'undefined' && queries[data.txid]) {
queries[data.txid](data, msg);
} else {
console.log("Unhandled message");
console.log(msg);
}
});
};
var query = module.exports.query = function (msg, cb) {
module.exports.query = function (q, content, cb) {
if (!iframe) { throw new Error('not yet initialized'); }
var txid = mkTxid();
queries[txid] = {
txid: txid,
timeout: setTimeout(function () {
delete queries[txid];
console.log("Error")
})
var timeout = setTimeout(function () {
delete queries[txid];
cb("Timeout making query " + q);
});
queries[txid] = function (data, msg) {
clearTimeout(timeout);
delete queries[txid];
cb(undefined, data.content, msg);
};
iframe.contentWindow.postMessage(JSON.stringify({
txid: txid,
content: content,
q: q
}), '*');
};
var registerHandler = module.exports.registerHandler = function (queryType, handler) {
module.exports.registerHandler = function (queryType, handler) {
if (typeof(handlers[queryType]) !== 'undefined') { throw new Error('already registered'); }
handlers[queryType] = handler;
handlers[queryType] = function (msg) {
var data = JSON.parse(msg.data);
handler(data.content, function (replyContent) {
msg.source.postMessage(JSON.stringify({
txid: data.txid,
content: replyContent
}), '*');
}, msg);
};
};
return module.exports;