You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
3.9 KiB
145 lines
3.9 KiB
/* |
|
* Spreed WebRTC. |
|
* Copyright (C) 2013-2015 struktur AG |
|
* |
|
* This file is part of Spreed WebRTC. |
|
* |
|
* This program is free software: you can redistribute it and/or modify |
|
* it under the terms of the GNU Affero General Public License as published by |
|
* the Free Software Foundation, either version 3 of the License, or |
|
* (at your option) any later version. |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU Affero General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU Affero General Public License |
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
* |
|
*/ |
|
|
|
"use strict"; |
|
define(["jquery", "underscore"], function($, _) { |
|
|
|
return ["$window", function($window) { |
|
|
|
var Sandbox = function(container, template, url, sandbox, className, attrs) { |
|
this.container = container; |
|
this.sandbox = sandbox ? sandbox : ""; |
|
this.className = className; |
|
this.attrs = attrs; |
|
if (template) { |
|
var blob = new $window.Blob([template], {type: "text/html;charset=utf-8"}); |
|
this.url = this.blobUrl = $window.URL.createObjectURL(blob); |
|
} else if (url) { |
|
this.url = url; |
|
} |
|
if (this.url) { |
|
this.create(); |
|
} |
|
}; |
|
|
|
Sandbox.prototype.create = function() { |
|
if (!this.url) { |
|
return; |
|
} |
|
var iframe; |
|
var $container = $(this.container); |
|
if ($container.is("iframe")) { |
|
// Container is iframe. |
|
if (this.className) { |
|
$container.addClass(this.className); |
|
} |
|
if (this.attrs) { |
|
$container.attr(this.attrs); |
|
} |
|
iframe = $container[0]; |
|
iframe.src = this.url; |
|
this.created = false; |
|
} else { |
|
// Create iframe. |
|
iframe = $window.document.createElement("iframe"); |
|
iframe.sandbox = this.sandbox; |
|
if (this.className) { |
|
iframe.className = this.className; |
|
} |
|
if (this.attrs) { |
|
$(iframe).attr(this.attrs); |
|
} |
|
iframe.src = this.url; |
|
$container.append(iframe); |
|
this.created = true; |
|
} |
|
this.iframe = iframe; |
|
this.target = this.iframe.contentWindow; |
|
this.e = $({}); |
|
this.handler = _.bind(this.onPostMessageReceived, this); |
|
this.ready = false; |
|
this.pending_messages = []; |
|
this.origin = $window.location.protocol + "//" + $window.location.host; |
|
$window.addEventListener("message", this.handler, false); |
|
}; |
|
|
|
Sandbox.prototype.destroy = function() { |
|
if (this.handler) { |
|
$window.removeEventListener("message", this.handler, false); |
|
this.handler = null; |
|
} |
|
if (this.blobUrl) { |
|
$window.URL.revokeObjectURL(this.blobUrl); |
|
this.blobUrl = null; |
|
} |
|
this.url = null; |
|
this.container = null; |
|
this.attrs = null; |
|
if (this.created) { |
|
$(this.iframe).remove(); |
|
} |
|
}; |
|
|
|
Sandbox.prototype.onPostMessageReceived = function(event) { |
|
if ((event.origin !== "null" && event.origin !== this.origin) || event.source !== this.target) { |
|
// the sandboxed data-url iframe has "null" as origin |
|
return; |
|
} |
|
|
|
if (event.data.type === "ready") { |
|
this.ready = true; |
|
this._sendPendingMessages(); |
|
} |
|
|
|
this.e.triggerHandler("message", [event]); |
|
}; |
|
|
|
Sandbox.prototype._sendPendingMessages = function() { |
|
var i; |
|
for (i=0; i<this.pending_messages.length; i++) { |
|
var entry = this.pending_messages[i]; |
|
this.postMessage(entry[0], entry[1]); |
|
} |
|
this.pending_messages = []; |
|
}; |
|
|
|
Sandbox.prototype.postMessage = function(type, message) { |
|
if (!this.ready) { |
|
this.pending_messages.push([type, message]); |
|
return; |
|
} |
|
var msg = {"type": type} |
|
msg[type] = message; |
|
this.target.postMessage(msg, "*"); |
|
}; |
|
|
|
return { |
|
createSandbox: function(iframe, template, sandbox, className, attrs) { |
|
if (!sandbox) { |
|
sandbox = ""; |
|
} |
|
return new Sandbox(iframe, template, sandbox, className, attrs); |
|
} |
|
}; |
|
|
|
}]; |
|
|
|
});
|
|
|