// This file provides the API for the channel for talking to and from the sandbox iframe. define([ '/common/sframe-protocol.js' ], function (SFrameProtocol) { var mkTxid = function () { return Math.random().toString(16).replace('0.', '') + Math.random().toString(16).replace('0.', ''); }; var create = function (ow, cb) { var otherWindow; var handlers = {}; var queries = {}; // list of handlers which are registered from the other side... var insideHandlers = []; var callWhenRegistered = {}; var chan = {}; chan.query = function (q, content, cb) { if (!otherWindow) { throw new Error('not yet initialized'); } if (!SFrameProtocol[q]) { throw new Error('please only make queries are defined in sframe-protocol.js'); } var txid = mkTxid(); var timeout = setTimeout(function () { delete queries[txid]; console.log("Timeout making query " + q); }, 30000); queries[txid] = function (data, msg) { clearTimeout(timeout); delete queries[txid]; cb(undefined, data.content, msg); }; otherWindow.postMessage(JSON.stringify({ txid: txid, content: content, q: q }), '*'); }; var event = chan.event = function (e, content) { if (!otherWindow) { throw new Error('not yet initialized'); } if (!SFrameProtocol[e]) { throw new Error('please only fire events that are defined in sframe-protocol.js'); } if (e.indexOf('EV_') !== 0) { throw new Error('please only use events (starting with EV_) for event messages'); } otherWindow.postMessage(JSON.stringify({ content: content, q: e }), '*'); }; chan.on = function (queryType, handler, quiet) { if (!otherWindow) { throw new Error('not yet initialized'); } if (!SFrameProtocol[queryType]) { throw new Error('please only register handlers which are defined in sframe-protocol.js'); } (handlers[queryType] = handlers[queryType] || []).push(function (data, msg) { handler(data.content, function (replyContent) { msg.source.postMessage(JSON.stringify({ txid: data.txid, content: replyContent }), '*'); }, msg); }); if (!quiet) { event('EV_REGISTER_HANDLER', queryType); } }; chan.whenReg = function (queryType, handler) { if (!otherWindow) { throw new Error('not yet initialized'); } if (!SFrameProtocol[queryType]) { throw new Error('please only register handlers which are defined in sframe-protocol.js'); } if (insideHandlers.indexOf(queryType) > -1) { handler(); } else { (callWhenRegistered[queryType] = callWhenRegistered[queryType] || []).push(handler); } }; (handlers['EV_REGISTER_HANDLER'] = handlers['EV_REGISTER_HANDLER'] || []).push(function (data) { if (callWhenRegistered[data.content]) { callWhenRegistered[data.content].forEach(function (f) { f(); }); delete callWhenRegistered[data.content]; } insideHandlers.push(data.content); }); var intr; var txid; window.addEventListener('message', function (msg) { var data = JSON.parse(msg.data); if (ow !== msg.source) { console.log("DROP Message from unexpected source"); console.log(msg); } else if (!otherWindow) { if (data.txid !== txid) { console.log("DROP Message with weird txid"); return; } clearInterval(intr); otherWindow = ow; cb(chan); } else if (typeof(data.q) === 'string' && handlers[data.q]) { handlers[data.q].forEach(function (f) { f(data || JSON.parse(msg.data), msg); data = undefined; }); } else if (typeof(data.q) === 'undefined' && queries[data.txid]) { queries[data.txid](msg, msg); } else if (data.txid === txid) { // stray message from init return; } else { console.log("DROP Unhandled message"); console.log(msg); } }); if (window !== window.top) { // we're in the sandbox otherWindow = ow; cb(chan); } else { require(['/common/requireconfig.js'], function (RequireConfig) { txid = mkTxid(); intr = setInterval(function () { ow.postMessage(JSON.stringify({ txid: txid, content: { requireConf: RequireConfig }, q: 'INIT' }), '*'); }); }); } }; return { create: create }; });