2017-11-30 02:11:03 +08:00
|
|
|
/*
|
2017-11-30 18:20:29 +08:00
|
|
|
Copyright 2017 New Vector Ltd
|
2017-11-30 02:11:03 +08:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-12-01 22:44:14 +08:00
|
|
|
/*
|
|
|
|
Listens for incoming postMessage requests from embedded widgets. The following API is exposed:
|
|
|
|
{
|
2017-12-01 23:56:30 +08:00
|
|
|
api: "widget",
|
|
|
|
action: "content_loaded",
|
2017-12-05 02:06:05 +08:00
|
|
|
widgetId: $WIDGET_ID,
|
|
|
|
data: {}
|
2017-12-01 23:56:30 +08:00
|
|
|
// additional request fields
|
2017-12-01 22:44:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
The complete request object is returned to the caller with an additional "response" key like so:
|
|
|
|
{
|
2017-12-01 23:56:30 +08:00
|
|
|
api: "widget",
|
|
|
|
action: "content_loaded",
|
2017-12-05 02:06:05 +08:00
|
|
|
widgetId: $WIDGET_ID,
|
|
|
|
data: {},
|
2017-12-01 23:56:30 +08:00
|
|
|
// additional request fields
|
2017-12-01 22:44:14 +08:00
|
|
|
response: { ... }
|
|
|
|
}
|
|
|
|
|
2017-12-01 23:56:30 +08:00
|
|
|
The "api" field is required to use this API, and must be set to "widget" in all requests.
|
|
|
|
|
2017-12-01 22:44:14 +08:00
|
|
|
The "action" determines the format of the request and response. All actions can return an error response.
|
2017-12-01 22:56:27 +08:00
|
|
|
|
2017-12-05 02:06:05 +08:00
|
|
|
Additional data can be sent as additional, abritrary fields. However, typically the data object should be used.
|
|
|
|
|
2017-12-01 22:56:27 +08:00
|
|
|
A success response is an object with zero or more keys.
|
|
|
|
|
2017-12-01 22:44:14 +08:00
|
|
|
An error response is a "response" object which consists of a sole "error" key to indicate an error.
|
|
|
|
They look like:
|
|
|
|
{
|
|
|
|
error: {
|
|
|
|
message: "Unable to invite user into room.",
|
|
|
|
_error: <Original Error Object>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
The "message" key should be a human-friendly string.
|
|
|
|
|
|
|
|
ACTIONS
|
|
|
|
=======
|
2017-12-01 23:56:30 +08:00
|
|
|
** All actions must include an "api" field with valie "widget".**
|
2017-12-01 22:44:14 +08:00
|
|
|
All actions can return an error response instead of the response outlined below.
|
|
|
|
|
|
|
|
content_loaded
|
|
|
|
--------------
|
|
|
|
Indicates that widget contet has fully loaded
|
|
|
|
|
|
|
|
Request:
|
|
|
|
- widgetId is the unique ID of the widget instance in riot / matrix state.
|
|
|
|
- No additional fields.
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
success: true
|
|
|
|
}
|
|
|
|
Example:
|
|
|
|
{
|
2017-12-01 23:56:30 +08:00
|
|
|
api: "widget",
|
|
|
|
action: "content_loaded",
|
2017-12-01 22:44:14 +08:00
|
|
|
widgetId: $WIDGET_ID
|
|
|
|
}
|
2017-12-01 23:56:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
api_version
|
|
|
|
-----------
|
|
|
|
Get the current version of the widget postMessage API
|
|
|
|
|
|
|
|
Request:
|
|
|
|
- No additional fields.
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
api_version: "0.0.1"
|
|
|
|
}
|
|
|
|
Example:
|
|
|
|
{
|
|
|
|
api: "widget",
|
|
|
|
action: "api_version",
|
|
|
|
}
|
|
|
|
|
|
|
|
supported_api_versions
|
|
|
|
----------------------
|
|
|
|
Get versions of the widget postMessage API that are currently supported
|
|
|
|
|
|
|
|
Request:
|
|
|
|
- No additional fields.
|
|
|
|
Response:
|
|
|
|
{
|
|
|
|
api: "widget"
|
|
|
|
supported_versions: ["0.0.1"]
|
|
|
|
}
|
|
|
|
Example:
|
|
|
|
{
|
|
|
|
api: "widget",
|
|
|
|
action: "supported_api_versions",
|
|
|
|
}
|
|
|
|
|
2017-12-01 22:44:14 +08:00
|
|
|
*/
|
|
|
|
|
2017-12-05 08:08:17 +08:00
|
|
|
import URL from 'url';
|
|
|
|
|
2017-12-01 23:56:30 +08:00
|
|
|
const WIDGET_API_VERSION = '0.0.1'; // Current API version
|
|
|
|
const SUPPORTED_WIDGET_API_VERSIONS = [
|
|
|
|
'0.0.1',
|
|
|
|
];
|
|
|
|
|
2017-11-30 20:26:40 +08:00
|
|
|
import dis from './dispatcher';
|
|
|
|
|
2017-12-05 01:54:00 +08:00
|
|
|
if (!global.mxWidgetMessagingListenerCount) {
|
|
|
|
global.mxWidgetMessagingListenerCount = 0;
|
|
|
|
}
|
|
|
|
if (!global.mxWidgetMessagingMessageEndpoints) {
|
|
|
|
global.mxWidgetMessagingMessageEndpoints = [];
|
|
|
|
}
|
2017-11-30 19:30:30 +08:00
|
|
|
|
2017-12-02 00:17:18 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register widget message event listeners
|
|
|
|
*/
|
|
|
|
function startListening() {
|
2017-12-05 01:54:00 +08:00
|
|
|
if (global.mxWidgetMessagingListenerCount === 0) {
|
2017-12-02 00:17:18 +08:00
|
|
|
window.addEventListener("message", onMessage, false);
|
|
|
|
}
|
2017-12-05 01:54:00 +08:00
|
|
|
global.mxWidgetMessagingListenerCount += 1;
|
2017-12-02 00:17:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* De-register widget message event listeners
|
|
|
|
*/
|
|
|
|
function stopListening() {
|
2017-12-05 01:54:00 +08:00
|
|
|
global.mxWidgetMessagingListenerCount -= 1;
|
|
|
|
if (global.mxWidgetMessagingListenerCount === 0) {
|
2017-12-02 00:17:18 +08:00
|
|
|
window.removeEventListener("message", onMessage);
|
|
|
|
}
|
2017-12-05 01:54:00 +08:00
|
|
|
if (global.mxWidgetMessagingListenerCount < 0) {
|
2017-12-02 00:17:18 +08:00
|
|
|
// Make an error so we get a stack trace
|
|
|
|
const e = new Error(
|
|
|
|
"WidgetMessaging: mismatched startListening / stopListening detected." +
|
|
|
|
" Negative count",
|
|
|
|
);
|
|
|
|
console.error(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a widget endpoint for trusted postMessage communication
|
|
|
|
* @param {string} widgetId Unique widget identifier
|
|
|
|
* @param {string} endpointUrl Widget wurl origin (protocol + (optional port) + host)
|
|
|
|
*/
|
|
|
|
function addEndpoint(widgetId, endpointUrl) {
|
2017-12-05 08:08:17 +08:00
|
|
|
const u = URL.parse(endpointUrl);
|
|
|
|
if (!u || !u.protocol || !u.host) {
|
2017-12-07 00:44:41 +08:00
|
|
|
console.warn("Invalid origin:", endpointUrl);
|
2017-12-05 08:08:17 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const origin = u.protocol + '//' + u.host;
|
|
|
|
const endpoint = new WidgetMessageEndpoint(widgetId, origin);
|
|
|
|
if (global.mxWidgetMessagingMessageEndpoints) {
|
|
|
|
if (global.mxWidgetMessagingMessageEndpoints.some(function(ep) {
|
2017-12-02 00:39:07 +08:00
|
|
|
return (ep.widgetId === widgetId && ep.endpointUrl === endpointUrl);
|
2017-12-05 08:08:17 +08:00
|
|
|
})) {
|
2017-12-02 00:17:18 +08:00
|
|
|
// Message endpoint already registered
|
2017-12-05 08:08:17 +08:00
|
|
|
console.warn("Endpoint already registered");
|
2017-12-02 00:17:18 +08:00
|
|
|
return;
|
|
|
|
}
|
2017-12-05 01:54:00 +08:00
|
|
|
global.mxWidgetMessagingMessageEndpoints.push(endpoint);
|
2017-12-02 00:17:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* De-register a widget endpoint from trusted communication sources
|
|
|
|
* @param {string} widgetId Unique widget identifier
|
|
|
|
* @param {string} endpointUrl Widget wurl origin (protocol + (optional port) + host)
|
|
|
|
* @return {boolean} True if endpoint was successfully removed
|
|
|
|
*/
|
|
|
|
function removeEndpoint(widgetId, endpointUrl) {
|
2017-12-05 08:08:17 +08:00
|
|
|
const u = URL.parse(endpointUrl);
|
|
|
|
if (!u || !u.protocol || !u.host) {
|
|
|
|
console.warn("Invalid origin");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const origin = u.protocol + '//' + u.host;
|
2017-12-05 01:54:00 +08:00
|
|
|
if (global.mxWidgetMessagingMessageEndpoints && global.mxWidgetMessagingMessageEndpoints.length > 0) {
|
|
|
|
const length = global.mxWidgetMessagingMessageEndpoints.length;
|
|
|
|
global.mxWidgetMessagingMessageEndpoints = global.mxWidgetMessagingMessageEndpoints.filter(function(endpoint) {
|
2017-12-05 08:08:17 +08:00
|
|
|
return (endpoint.widgetId != widgetId || endpoint.endpointUrl != origin);
|
2017-12-02 00:17:18 +08:00
|
|
|
});
|
2017-12-05 01:54:00 +08:00
|
|
|
return (length > global.mxWidgetMessagingMessageEndpoints.length);
|
2017-12-02 00:17:18 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-30 18:20:29 +08:00
|
|
|
/**
|
|
|
|
* Handle widget postMessage events
|
|
|
|
* @param {Event} event Event to handle
|
|
|
|
* @return {undefined}
|
|
|
|
*/
|
|
|
|
function onMessage(event) {
|
|
|
|
if (!event.origin) { // Handle chrome
|
|
|
|
event.origin = event.originalEvent.origin;
|
2017-11-30 02:11:03 +08:00
|
|
|
}
|
|
|
|
|
2017-11-30 18:20:29 +08:00
|
|
|
// Event origin is empty string if undefined
|
2017-11-30 20:26:40 +08:00
|
|
|
if (
|
|
|
|
event.origin.length === 0 ||
|
2017-12-02 00:31:39 +08:00
|
|
|
!trustedEndpoint(event.origin) ||
|
2017-12-01 23:56:30 +08:00
|
|
|
event.data.api !== "widget" ||
|
2017-11-30 20:26:40 +08:00
|
|
|
!event.data.widgetId
|
|
|
|
) {
|
2017-11-30 18:20:29 +08:00
|
|
|
return; // don't log this - debugging APIs like to spam postMessage which floods the log otherwise
|
|
|
|
}
|
|
|
|
|
2017-12-01 23:56:30 +08:00
|
|
|
const action = event.data.action;
|
2017-11-30 20:26:40 +08:00
|
|
|
const widgetId = event.data.widgetId;
|
2017-12-02 00:39:07 +08:00
|
|
|
if (action === 'content_loaded') {
|
2017-11-30 20:26:40 +08:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'widget_content_loaded',
|
|
|
|
widgetId: widgetId,
|
|
|
|
});
|
2017-12-01 22:56:27 +08:00
|
|
|
sendResponse(event, {success: true});
|
2017-12-02 00:39:07 +08:00
|
|
|
} else if (action === 'supported_api_versions') {
|
2017-12-01 23:56:30 +08:00
|
|
|
sendResponse(event, {
|
|
|
|
api: "widget",
|
|
|
|
supported_versions: SUPPORTED_WIDGET_API_VERSIONS,
|
|
|
|
});
|
2017-12-02 00:39:07 +08:00
|
|
|
} else if (action === 'api_version') {
|
2017-12-01 23:56:30 +08:00
|
|
|
sendResponse(event, {
|
|
|
|
api: "widget",
|
|
|
|
version: WIDGET_API_VERSION,
|
|
|
|
});
|
2017-11-30 20:26:40 +08:00
|
|
|
} else {
|
|
|
|
console.warn("Widget postMessage event unhandled");
|
2017-12-01 22:56:27 +08:00
|
|
|
sendError(event, {message: "The postMessage was unhandled"});
|
2017-11-30 20:26:40 +08:00
|
|
|
}
|
2017-11-30 18:20:29 +08:00
|
|
|
}
|
|
|
|
|
2017-11-30 19:30:30 +08:00
|
|
|
/**
|
|
|
|
* Check if message origin is registered as trusted
|
|
|
|
* @param {string} origin PostMessage origin to check
|
|
|
|
* @return {boolean} True if trusted
|
|
|
|
*/
|
|
|
|
function trustedEndpoint(origin) {
|
2017-12-02 00:35:55 +08:00
|
|
|
if (!origin) {
|
|
|
|
return false;
|
2017-11-30 19:30:30 +08:00
|
|
|
}
|
|
|
|
|
2017-12-05 01:54:00 +08:00
|
|
|
return global.mxWidgetMessagingMessageEndpoints.some((endpoint) => {
|
2017-12-02 00:35:55 +08:00
|
|
|
return endpoint.endpointUrl === origin;
|
|
|
|
});
|
2017-11-30 19:30:30 +08:00
|
|
|
}
|
|
|
|
|
2017-12-01 22:56:27 +08:00
|
|
|
/**
|
|
|
|
* Send a postmessage response to a postMessage request
|
|
|
|
* @param {Event} event The original postMessage request event
|
|
|
|
* @param {Object} res Response data
|
|
|
|
*/
|
|
|
|
function sendResponse(event, res) {
|
|
|
|
const data = JSON.parse(JSON.stringify(event.data));
|
|
|
|
data.response = res;
|
|
|
|
event.source.postMessage(data, event.origin);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send an error response to a postMessage request
|
|
|
|
* @param {Event} event The original postMessage request event
|
|
|
|
* @param {string} msg Error message
|
|
|
|
* @param {Error} nestedError Nested error event (optional)
|
|
|
|
*/
|
|
|
|
function sendError(event, msg, nestedError) {
|
|
|
|
console.error("Action:" + event.data.action + " failed with message: " + msg);
|
|
|
|
const data = JSON.parse(JSON.stringify(event.data));
|
|
|
|
data.response = {
|
|
|
|
error: {
|
|
|
|
message: msg,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
if (nestedError) {
|
|
|
|
data.response.error._error = nestedError;
|
|
|
|
}
|
|
|
|
event.source.postMessage(data, event.origin);
|
|
|
|
}
|
|
|
|
|
2017-11-30 19:30:30 +08:00
|
|
|
/**
|
|
|
|
* Represents mapping of widget instance to URLs for trusted postMessage communication.
|
|
|
|
*/
|
|
|
|
class WidgetMessageEndpoint {
|
|
|
|
/**
|
|
|
|
* Mapping of widget instance to URL for trusted postMessage communication.
|
|
|
|
* @param {string} widgetId Unique widget identifier
|
|
|
|
* @param {string} endpointUrl Widget wurl origin.
|
|
|
|
*/
|
|
|
|
constructor(widgetId, endpointUrl) {
|
|
|
|
if (!widgetId) {
|
|
|
|
throw new Error("No widgetId specified in widgetMessageEndpoint constructor");
|
|
|
|
}
|
|
|
|
if (!endpointUrl) {
|
|
|
|
throw new Error("No endpoint specified in widgetMessageEndpoint constructor");
|
|
|
|
}
|
|
|
|
this.widgetId = widgetId;
|
|
|
|
this.endpointUrl = endpointUrl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-02 00:17:18 +08:00
|
|
|
export default {
|
|
|
|
startListening: startListening,
|
|
|
|
stopListening: stopListening,
|
|
|
|
addEndpoint: addEndpoint,
|
|
|
|
removeEndpoint: removeEndpoint,
|
2017-11-30 18:20:29 +08:00
|
|
|
};
|