2017-05-22 19:34:27 +08:00
|
|
|
/*
|
2017-06-28 19:23:33 +08:00
|
|
|
Copyright 2017 Vector Creations Ltd
|
2017-05-22 19:34:27 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2017-07-12 21:16:47 +08:00
|
|
|
import url from 'url';
|
2017-06-28 22:53:18 +08:00
|
|
|
import React from 'react';
|
|
|
|
import MatrixClientPeg from '../../../MatrixClientPeg';
|
2017-09-04 15:31:25 +08:00
|
|
|
import PlatformPeg from '../../../PlatformPeg';
|
2017-07-06 16:28:48 +08:00
|
|
|
import ScalarAuthClient from '../../../ScalarAuthClient';
|
|
|
|
import SdkConfig from '../../../SdkConfig';
|
2017-07-14 18:17:59 +08:00
|
|
|
import Modal from '../../../Modal';
|
2017-09-23 03:43:27 +08:00
|
|
|
import { _t, _td } from '../../../languageHandler';
|
2017-07-14 18:17:59 +08:00
|
|
|
import sdk from '../../../index';
|
2017-07-26 18:28:43 +08:00
|
|
|
import AppPermission from './AppPermission';
|
2017-08-02 00:29:29 +08:00
|
|
|
import AppWarning from './AppWarning';
|
2017-07-27 23:41:52 +08:00
|
|
|
import MessageSpinner from './MessageSpinner';
|
2017-07-28 06:38:26 +08:00
|
|
|
import WidgetUtils from '../../../WidgetUtils';
|
2017-08-17 01:19:12 +08:00
|
|
|
import dis from '../../../dispatcher';
|
2017-05-22 19:34:27 +08:00
|
|
|
|
2017-07-12 21:16:47 +08:00
|
|
|
const ALLOWED_APP_URL_SCHEMES = ['https:', 'http:'];
|
2017-07-06 16:28:48 +08:00
|
|
|
|
2017-05-22 19:34:27 +08:00
|
|
|
export default React.createClass({
|
|
|
|
displayName: 'AppTile',
|
|
|
|
|
|
|
|
propTypes: {
|
|
|
|
id: React.PropTypes.string.isRequired,
|
|
|
|
url: React.PropTypes.string.isRequired,
|
|
|
|
name: React.PropTypes.string.isRequired,
|
2017-06-13 21:33:17 +08:00
|
|
|
room: React.PropTypes.object.isRequired,
|
2017-07-14 18:17:59 +08:00
|
|
|
type: React.PropTypes.string.isRequired,
|
2017-07-28 23:46:21 +08:00
|
|
|
// Specifying 'fullWidth' as true will render the app tile to fill the width of the app drawer continer.
|
|
|
|
// This should be set to true when there is only one widget in the app drawer, otherwise it should be false.
|
2017-07-27 23:41:52 +08:00
|
|
|
fullWidth: React.PropTypes.bool,
|
2017-08-18 18:41:27 +08:00
|
|
|
// UserId of the current user
|
|
|
|
userId: React.PropTypes.string.isRequired,
|
|
|
|
// UserId of the entity that added / modified the widget
|
|
|
|
creatorUserId: React.PropTypes.string,
|
2017-05-22 19:34:27 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
getDefaultProps: function() {
|
|
|
|
return {
|
|
|
|
url: "",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2017-07-06 16:28:48 +08:00
|
|
|
getInitialState: function() {
|
2017-07-26 18:28:43 +08:00
|
|
|
const widgetPermissionId = [this.props.room.roomId, encodeURIComponent(this.props.url)].join('_');
|
2017-07-27 23:41:52 +08:00
|
|
|
const hasPermissionToLoad = localStorage.getItem(widgetPermissionId);
|
2017-07-06 16:28:48 +08:00
|
|
|
return {
|
|
|
|
loading: false,
|
|
|
|
widgetUrl: this.props.url,
|
2017-07-26 18:28:43 +08:00
|
|
|
widgetPermissionId: widgetPermissionId,
|
2017-08-18 18:41:27 +08:00
|
|
|
// Assume that widget has permission to load if we are the user who added it to the room, or if explicitly granted by the user
|
|
|
|
hasPermissionToLoad: hasPermissionToLoad === 'true' || this.props.userId === this.props.creatorUserId,
|
2017-07-06 16:28:48 +08:00
|
|
|
error: null,
|
2017-07-13 07:27:03 +08:00
|
|
|
deleting: false,
|
2017-07-06 16:28:48 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
// Returns true if props.url is a scalar URL, typically https://scalar.vector.im/api
|
|
|
|
isScalarUrl: function() {
|
2017-08-30 17:36:22 +08:00
|
|
|
let scalarUrls = SdkConfig.get().integrations_widgets_urls;
|
|
|
|
if (!scalarUrls || scalarUrls.length == 0) {
|
|
|
|
scalarUrls = [SdkConfig.get().integrations_rest_url];
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < scalarUrls.length; i++) {
|
|
|
|
if (this.props.url.startsWith(scalarUrls[i])) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2017-07-06 16:28:48 +08:00
|
|
|
},
|
|
|
|
|
2017-08-02 00:29:29 +08:00
|
|
|
isMixedContent: function() {
|
|
|
|
const parentContentProtocol = window.location.protocol;
|
|
|
|
const u = url.parse(this.props.url);
|
|
|
|
const childContentProtocol = u.protocol;
|
2017-08-02 00:49:41 +08:00
|
|
|
if (parentContentProtocol === 'https:' && childContentProtocol !== 'https:') {
|
2017-08-03 00:05:46 +08:00
|
|
|
console.warn("Refusing to load mixed-content app:",
|
|
|
|
parentContentProtocol, childContentProtocol, window.location, this.props.url);
|
2017-08-02 00:29:29 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
2017-07-06 16:28:48 +08:00
|
|
|
componentWillMount: function() {
|
2017-10-27 20:47:51 +08:00
|
|
|
window.addEventListener('message', this._onMessage, false);
|
|
|
|
this.updateWidgetContent();
|
|
|
|
},
|
|
|
|
|
|
|
|
// Update widget content
|
|
|
|
updateWidgetContent() {
|
|
|
|
this.setScalarToken();
|
|
|
|
this.setState({
|
|
|
|
loading: true,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
// Adds a scalar token to the widget URL, if required
|
|
|
|
setScalarToken() {
|
2017-07-06 16:28:48 +08:00
|
|
|
if (!this.isScalarUrl()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Fetch the token before loading the iframe as we need to mangle the URL
|
2017-10-27 20:47:51 +08:00
|
|
|
if(! this._scalarClient) {
|
|
|
|
this._scalarClient = new ScalarAuthClient();
|
|
|
|
}
|
2017-07-06 16:28:48 +08:00
|
|
|
this._scalarClient.getScalarToken().done((token) => {
|
|
|
|
// Append scalar_token as a query param
|
2017-08-01 22:53:42 +08:00
|
|
|
this._scalarClient.scalarToken = token;
|
2017-07-06 17:44:32 +08:00
|
|
|
const u = url.parse(this.props.url);
|
2017-07-06 16:28:48 +08:00
|
|
|
if (!u.search) {
|
|
|
|
u.search = "?scalar_token=" + encodeURIComponent(token);
|
2017-07-06 17:44:32 +08:00
|
|
|
} else {
|
2017-07-06 16:28:48 +08:00
|
|
|
u.search += "&scalar_token=" + encodeURIComponent(token);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
error: null,
|
|
|
|
widgetUrl: u.format(),
|
|
|
|
loading: false,
|
|
|
|
});
|
|
|
|
}, (err) => {
|
|
|
|
this.setState({
|
|
|
|
error: err.message,
|
|
|
|
loading: false,
|
|
|
|
});
|
|
|
|
});
|
2017-09-04 15:31:25 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
window.removeEventListener('message', this._onMessage);
|
|
|
|
},
|
|
|
|
|
2017-10-27 20:47:51 +08:00
|
|
|
componentWillReceiveProps(nextProps) {
|
|
|
|
console.warn("Apptile", this.id, "got new props", this.url, nextProps.url);
|
|
|
|
},
|
|
|
|
|
2017-09-04 15:31:25 +08:00
|
|
|
_onMessage(event) {
|
2017-09-25 23:13:18 +08:00
|
|
|
if (this.props.type !== 'jitsi') {
|
2017-09-04 15:31:25 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!event.origin) {
|
|
|
|
event.origin = event.originalEvent.origin;
|
|
|
|
}
|
|
|
|
|
2017-09-25 23:14:25 +08:00
|
|
|
if (!this.state.widgetUrl.startsWith(event.origin)) {
|
2017-09-04 15:31:25 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event.data.widgetAction === 'jitsi_iframe_loaded') {
|
|
|
|
const iframe = this.refs.appFrame.contentWindow
|
|
|
|
.document.querySelector('iframe[id^="jitsiConferenceFrame"]');
|
|
|
|
PlatformPeg.get().setupScreenSharingForIframe(iframe);
|
|
|
|
}
|
2017-07-06 16:28:48 +08:00
|
|
|
},
|
|
|
|
|
2017-07-28 01:10:28 +08:00
|
|
|
_canUserModify: function() {
|
2017-08-01 18:39:17 +08:00
|
|
|
return WidgetUtils.canUserModifyWidgets(this.props.room.roomId);
|
2017-08-01 18:42:50 +08:00
|
|
|
},
|
2017-07-28 01:10:28 +08:00
|
|
|
|
2017-07-14 18:17:59 +08:00
|
|
|
_onEditClick: function(e) {
|
|
|
|
console.log("Edit widget ID ", this.props.id);
|
|
|
|
const IntegrationsManager = sdk.getComponent("views.settings.IntegrationsManager");
|
2017-08-22 17:04:57 +08:00
|
|
|
const src = this._scalarClient.getScalarInterfaceUrlForRoom(
|
|
|
|
this.props.room.roomId, 'type_' + this.props.type, this.props.id);
|
2017-07-28 00:19:18 +08:00
|
|
|
Modal.createTrackedDialog('Integrations Manager', '', IntegrationsManager, {
|
2017-07-14 18:17:59 +08:00
|
|
|
src: src,
|
|
|
|
}, "mx_IntegrationsManager");
|
2017-05-23 01:00:17 +08:00
|
|
|
},
|
|
|
|
|
2017-07-28 01:10:28 +08:00
|
|
|
/* If user has permission to modify widgets, delete the widget, otherwise revoke access for the widget to load in the user's browser
|
|
|
|
*/
|
2017-05-23 01:00:17 +08:00
|
|
|
_onDeleteClick: function() {
|
2017-07-28 01:10:28 +08:00
|
|
|
if (this._canUserModify()) {
|
2017-10-24 00:05:44 +08:00
|
|
|
// Show delete confirmation dialog
|
|
|
|
const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
|
|
|
|
Modal.createTrackedDialog('Delete Widget', '', QuestionDialog, {
|
|
|
|
title: _t("Delete Widget"),
|
2017-10-25 17:45:17 +08:00
|
|
|
description: _t(
|
|
|
|
"Deleting a widget removes it for all users in this room." +
|
|
|
|
" Are you sure you want to delete this widget?"),
|
2017-10-24 01:42:43 +08:00
|
|
|
button: _t("Delete widget"),
|
2017-10-24 00:05:44 +08:00
|
|
|
onFinished: (confirmed) => {
|
2017-10-24 06:47:37 +08:00
|
|
|
if (!confirmed) {
|
|
|
|
return;
|
2017-10-24 00:05:44 +08:00
|
|
|
}
|
2017-10-24 06:47:37 +08:00
|
|
|
this.setState({deleting: true});
|
|
|
|
MatrixClientPeg.get().sendStateEvent(
|
|
|
|
this.props.room.roomId,
|
|
|
|
'im.vector.modular.widgets',
|
|
|
|
{}, // empty content
|
|
|
|
this.props.id,
|
|
|
|
).catch((e) => {
|
|
|
|
console.error('Failed to delete widget', e);
|
|
|
|
this.setState({deleting: false});
|
|
|
|
});
|
2017-10-24 00:05:44 +08:00
|
|
|
},
|
2017-07-28 01:10:28 +08:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
console.log("Revoke widget permissions - %s", this.props.id);
|
|
|
|
this._revokeWidgetPermission();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-07-28 23:48:13 +08:00
|
|
|
// Widget labels to render, depending upon user permissions
|
|
|
|
// These strings are translated at the point that they are inserted in to the DOM, in the render method
|
2017-07-28 01:10:28 +08:00
|
|
|
_deleteWidgetLabel() {
|
|
|
|
if (this._canUserModify()) {
|
2017-09-23 03:43:27 +08:00
|
|
|
return _td('Delete widget');
|
2017-07-28 01:10:28 +08:00
|
|
|
}
|
2017-09-23 03:43:27 +08:00
|
|
|
return _td('Revoke widget access');
|
2017-05-23 01:00:17 +08:00
|
|
|
},
|
|
|
|
|
2017-07-29 01:21:23 +08:00
|
|
|
/* TODO -- Store permission in account data so that it is persisted across multiple devices */
|
2017-07-26 18:28:43 +08:00
|
|
|
_grantWidgetPermission() {
|
|
|
|
console.warn('Granting permission to load widget - ', this.state.widgetUrl);
|
|
|
|
localStorage.setItem(this.state.widgetPermissionId, true);
|
2017-07-27 23:41:52 +08:00
|
|
|
this.setState({hasPermissionToLoad: true});
|
2017-07-26 18:28:43 +08:00
|
|
|
},
|
|
|
|
|
2017-07-28 01:10:28 +08:00
|
|
|
_revokeWidgetPermission() {
|
|
|
|
console.warn('Revoking permission to load widget - ', this.state.widgetUrl);
|
|
|
|
localStorage.removeItem(this.state.widgetPermissionId);
|
|
|
|
this.setState({hasPermissionToLoad: false});
|
2017-05-23 01:00:17 +08:00
|
|
|
},
|
|
|
|
|
2017-06-28 17:27:06 +08:00
|
|
|
formatAppTileName: function() {
|
|
|
|
let appTileName = "No name";
|
|
|
|
if(this.props.name && this.props.name.trim()) {
|
|
|
|
appTileName = this.props.name.trim();
|
|
|
|
}
|
|
|
|
return appTileName;
|
|
|
|
},
|
|
|
|
|
2017-08-17 01:19:12 +08:00
|
|
|
onClickMenuBar: function(ev) {
|
|
|
|
ev.preventDefault();
|
|
|
|
|
|
|
|
// Ignore clicks on menu bar children
|
|
|
|
if (ev.target !== this.refs.menu_bar) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Toggle the view state of the apps drawer
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'appsDrawer',
|
|
|
|
show: !this.props.show,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-05-22 19:34:27 +08:00
|
|
|
render: function() {
|
2017-07-06 16:28:48 +08:00
|
|
|
let appTileBody;
|
2017-07-13 07:27:03 +08:00
|
|
|
|
|
|
|
// Don't render widget if it is in the process of being deleted
|
|
|
|
if (this.state.deleting) {
|
|
|
|
return <div></div>;
|
|
|
|
}
|
|
|
|
|
2017-07-26 18:28:43 +08:00
|
|
|
// Note that there is advice saying allow-scripts shouldn't be used with allow-same-origin
|
|
|
|
// because that would allow the iframe to prgramatically remove the sandbox attribute, but
|
|
|
|
// this would only be for content hosted on the same origin as the riot client: anything
|
|
|
|
// hosted on the same origin as the client will get the same access as if you clicked
|
|
|
|
// a link to it.
|
|
|
|
const sandboxFlags = "allow-forms allow-popups allow-popups-to-escape-sandbox "+
|
2017-07-28 18:14:04 +08:00
|
|
|
"allow-same-origin allow-scripts allow-presentation";
|
2017-07-26 18:28:43 +08:00
|
|
|
const parsedWidgetUrl = url.parse(this.state.widgetUrl);
|
|
|
|
let safeWidgetUrl = '';
|
|
|
|
if (ALLOWED_APP_URL_SCHEMES.indexOf(parsedWidgetUrl.protocol) !== -1) {
|
|
|
|
safeWidgetUrl = url.format(parsedWidgetUrl);
|
|
|
|
}
|
|
|
|
|
2017-08-19 01:33:56 +08:00
|
|
|
if (this.props.show) {
|
|
|
|
if (this.state.loading) {
|
2017-08-02 00:48:02 +08:00
|
|
|
appTileBody = (
|
2017-08-19 01:33:56 +08:00
|
|
|
<div className='mx_AppTileBody mx_AppLoading'>
|
2017-09-28 18:21:06 +08:00
|
|
|
<MessageSpinner msg='Loading...' />
|
2017-08-02 00:48:02 +08:00
|
|
|
</div>
|
|
|
|
);
|
2017-08-19 01:33:56 +08:00
|
|
|
} else if (this.state.hasPermissionToLoad == true) {
|
|
|
|
if (this.isMixedContent()) {
|
|
|
|
appTileBody = (
|
|
|
|
<div className="mx_AppTileBody">
|
|
|
|
<AppWarning
|
|
|
|
errorMsg="Error - Mixed content"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
appTileBody = (
|
|
|
|
<div className="mx_AppTileBody">
|
|
|
|
<iframe
|
|
|
|
ref="appFrame"
|
|
|
|
src={safeWidgetUrl}
|
|
|
|
allowFullScreen="true"
|
|
|
|
sandbox={sandboxFlags}
|
|
|
|
></iframe>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
2017-08-21 16:30:38 +08:00
|
|
|
const isRoomEncrypted = MatrixClientPeg.get().isRoomEncrypted(this.props.room.roomId);
|
2017-08-02 00:48:02 +08:00
|
|
|
appTileBody = (
|
|
|
|
<div className="mx_AppTileBody">
|
2017-08-19 01:33:56 +08:00
|
|
|
<AppPermission
|
2017-08-21 16:30:38 +08:00
|
|
|
isRoomEncrypted={isRoomEncrypted}
|
2017-08-19 01:33:56 +08:00
|
|
|
url={this.state.widgetUrl}
|
|
|
|
onPermissionGranted={this._grantWidgetPermission}
|
|
|
|
/>
|
2017-08-02 00:48:02 +08:00
|
|
|
</div>
|
|
|
|
);
|
2017-07-12 21:16:47 +08:00
|
|
|
}
|
2017-07-06 16:28:48 +08:00
|
|
|
}
|
2017-07-14 18:17:59 +08:00
|
|
|
|
|
|
|
// editing is done in scalar
|
2017-07-28 03:18:31 +08:00
|
|
|
const showEditButton = Boolean(this._scalarClient && this._canUserModify());
|
2017-07-28 01:10:28 +08:00
|
|
|
const deleteWidgetLabel = this._deleteWidgetLabel();
|
|
|
|
let deleteIcon = 'img/cancel.svg';
|
|
|
|
let deleteClasses = 'mx_filterFlipColor mx_AppTileMenuBarWidget';
|
|
|
|
if(this._canUserModify()) {
|
2017-10-24 00:05:44 +08:00
|
|
|
deleteIcon = 'img/icon-delete-pink.svg';
|
2017-07-28 01:10:28 +08:00
|
|
|
deleteClasses += ' mx_AppTileMenuBarWidgetDelete';
|
|
|
|
}
|
2017-07-14 18:17:59 +08:00
|
|
|
|
2017-05-22 19:34:27 +08:00
|
|
|
return (
|
2017-06-13 21:32:40 +08:00
|
|
|
<div className={this.props.fullWidth ? "mx_AppTileFullWidth" : "mx_AppTile"} id={this.props.id}>
|
2017-08-17 01:19:12 +08:00
|
|
|
<div ref="menu_bar" className="mx_AppTileMenuBar" onClick={this.onClickMenuBar}>
|
2017-09-28 18:21:06 +08:00
|
|
|
{ this.formatAppTileName() }
|
2017-05-22 19:34:27 +08:00
|
|
|
<span className="mx_AppTileMenuBarWidgets">
|
2017-09-28 18:21:06 +08:00
|
|
|
{ /* Edit widget */ }
|
|
|
|
{ showEditButton && <img
|
2017-05-23 01:00:17 +08:00
|
|
|
src="img/edit.svg"
|
|
|
|
className="mx_filterFlipColor mx_AppTileMenuBarWidget mx_AppTileMenuBarWidgetPadding"
|
2017-07-28 03:18:31 +08:00
|
|
|
width="8" height="8"
|
|
|
|
alt={_t('Edit')}
|
|
|
|
title={_t('Edit')}
|
2017-05-23 01:00:17 +08:00
|
|
|
onClick={this._onEditClick}
|
2017-09-28 18:21:06 +08:00
|
|
|
/> }
|
2017-05-23 01:00:17 +08:00
|
|
|
|
2017-09-28 18:21:06 +08:00
|
|
|
{ /* Delete widget */ }
|
2017-07-28 01:10:28 +08:00
|
|
|
<img src={deleteIcon}
|
|
|
|
className={deleteClasses}
|
|
|
|
width="8" height="8"
|
|
|
|
alt={_t(deleteWidgetLabel)}
|
|
|
|
title={_t(deleteWidgetLabel)}
|
2017-05-23 01:00:17 +08:00
|
|
|
onClick={this._onDeleteClick}
|
|
|
|
/>
|
2017-05-22 19:34:27 +08:00
|
|
|
</span>
|
|
|
|
</div>
|
2017-09-28 18:21:06 +08:00
|
|
|
{ appTileBody }
|
2017-05-22 19:34:27 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|