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-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-06-28 22:53:18 +08:00
|
|
|
import { _t } 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-07-27 23:41:52 +08:00
|
|
|
import MessageSpinner from './MessageSpinner';
|
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-15 06:31:57 +08:00
|
|
|
const betaHelpMsg = 'This feature is currently experimental and is intended for beta testing only';
|
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-27 23:41:52 +08:00
|
|
|
fullWidth: React.PropTypes.bool,
|
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-07-27 23:41:52 +08:00
|
|
|
hasPermissionToLoad: Boolean(hasPermissionToLoad === 'true'),
|
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() {
|
|
|
|
const scalarUrl = SdkConfig.get().integrations_rest_url;
|
|
|
|
return scalarUrl && this.props.url.startsWith(scalarUrl);
|
|
|
|
},
|
|
|
|
|
|
|
|
componentWillMount: function() {
|
|
|
|
if (!this.isScalarUrl()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Fetch the token before loading the iframe as we need to mangle the URL
|
|
|
|
this.setState({
|
|
|
|
loading: true,
|
|
|
|
});
|
|
|
|
this._scalarClient = new ScalarAuthClient();
|
|
|
|
this._scalarClient.getScalarToken().done((token) => {
|
|
|
|
// Append scalar_token as a query param
|
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-07-28 01:10:28 +08:00
|
|
|
_canUserModify: function() {
|
|
|
|
let canModify = false;
|
|
|
|
const client = MatrixClientPeg.get();
|
|
|
|
// const warningMsg = 'User can not modify widgets:';
|
|
|
|
if (client) {
|
|
|
|
const room = client.getRoom(this.props.room.roomId);
|
|
|
|
const me = client.credentials.userId;
|
|
|
|
if(room && me) {
|
|
|
|
const member = room.getMember(me);
|
|
|
|
if (member && member.membership === "join") {
|
|
|
|
canModify = room.currentState.maySendStateEvent('set_widget', me);
|
|
|
|
// } else {
|
|
|
|
// console.warn(warningMsg, 'Not room member');
|
|
|
|
}
|
|
|
|
// } else {
|
|
|
|
// console.warn(warningMsg, 'No roomId or userId');
|
|
|
|
}
|
|
|
|
// } else {
|
|
|
|
// console.warn(warningMsg, 'No Matrix client');
|
|
|
|
}
|
|
|
|
return canModify;
|
|
|
|
},
|
|
|
|
|
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");
|
|
|
|
const src = this._scalarClient.getScalarInterfaceUrlForRoom(this.props.room.roomId, 'type_' + this.props.type);
|
|
|
|
Modal.createDialog(IntegrationsManager, {
|
|
|
|
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()) {
|
|
|
|
console.log("Delete widget %s", this.props.id);
|
|
|
|
this.setState({deleting: true});
|
|
|
|
MatrixClientPeg.get().sendStateEvent(
|
|
|
|
this.props.room.roomId,
|
|
|
|
'im.vector.modular.widgets',
|
|
|
|
{}, // empty content
|
|
|
|
this.props.id,
|
|
|
|
).then(() => {
|
|
|
|
console.log('Deleted widget');
|
|
|
|
}, (e) => {
|
|
|
|
console.error('Failed to delete widget', e);
|
|
|
|
this.setState({deleting: false});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
console.log("Revoke widget permissions - %s", this.props.id);
|
|
|
|
this._revokeWidgetPermission();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_deleteWidgetLabel() {
|
|
|
|
if (this._canUserModify()) {
|
|
|
|
return 'Delete widget';
|
|
|
|
}
|
|
|
|
return 'Revoke widget access';
|
2017-05-23 01:00:17 +08:00
|
|
|
},
|
|
|
|
|
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-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();
|
|
|
|
appTileName = appTileName[0].toUpperCase() + appTileName.slice(1).toLowerCase();
|
|
|
|
}
|
|
|
|
return appTileName;
|
|
|
|
},
|
|
|
|
|
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 "+
|
|
|
|
"allow-same-origin allow-scripts";
|
|
|
|
const parsedWidgetUrl = url.parse(this.state.widgetUrl);
|
|
|
|
let safeWidgetUrl = '';
|
|
|
|
if (ALLOWED_APP_URL_SCHEMES.indexOf(parsedWidgetUrl.protocol) !== -1) {
|
|
|
|
safeWidgetUrl = url.format(parsedWidgetUrl);
|
|
|
|
}
|
|
|
|
|
2017-07-06 16:28:48 +08:00
|
|
|
if (this.state.loading) {
|
|
|
|
appTileBody = (
|
2017-07-27 23:41:52 +08:00
|
|
|
<div className='mx_AppTileBody mx_AppLoading'>
|
|
|
|
<MessageSpinner msg='Loading...'/>
|
|
|
|
</div>
|
2017-07-06 16:28:48 +08:00
|
|
|
);
|
2017-07-27 23:41:52 +08:00
|
|
|
} else if (this.state.hasPermissionToLoad == true) {
|
2017-07-06 16:28:48 +08:00
|
|
|
appTileBody = (
|
|
|
|
<div className="mx_AppTileBody">
|
2017-07-26 18:28:43 +08:00
|
|
|
<iframe
|
|
|
|
ref="appFrame"
|
|
|
|
src={safeWidgetUrl}
|
|
|
|
allowFullScreen="true"
|
2017-07-12 17:34:50 +08:00
|
|
|
sandbox={sandboxFlags}
|
2017-07-12 17:21:43 +08:00
|
|
|
></iframe>
|
2017-07-06 16:28:48 +08:00
|
|
|
</div>
|
|
|
|
);
|
2017-07-26 18:28:43 +08:00
|
|
|
} else {
|
|
|
|
appTileBody = (
|
2017-07-27 23:41:52 +08:00
|
|
|
<div className="mx_AppTileBody">
|
|
|
|
<AppPermission
|
|
|
|
url={this.state.widgetUrl}
|
|
|
|
onPermissionGranted={this._grantWidgetPermission}
|
|
|
|
/>
|
|
|
|
</div>
|
2017-07-26 18:28:43 +08:00
|
|
|
);
|
2017-07-06 16:28:48 +08:00
|
|
|
}
|
2017-07-14 18:17:59 +08:00
|
|
|
|
|
|
|
// editing is done in scalar
|
|
|
|
const showEditButton = Boolean(this._scalarClient);
|
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()) {
|
|
|
|
deleteIcon = 'img/cancel-red.svg';
|
|
|
|
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-05-22 19:34:27 +08:00
|
|
|
<div className="mx_AppTileMenuBar">
|
2017-06-28 17:27:06 +08:00
|
|
|
{this.formatAppTileName()}
|
2017-05-22 19:34:27 +08:00
|
|
|
<span className="mx_AppTileMenuBarWidgets">
|
2017-07-15 06:31:57 +08:00
|
|
|
<span className="mx_Beta" alt={betaHelpMsg} title={betaHelpMsg}>β</span>
|
2017-05-23 01:00:17 +08:00
|
|
|
{/* Edit widget */}
|
2017-07-14 18:17:59 +08:00
|
|
|
{showEditButton && <img
|
2017-05-23 01:00:17 +08:00
|
|
|
src="img/edit.svg"
|
|
|
|
className="mx_filterFlipColor mx_AppTileMenuBarWidget mx_AppTileMenuBarWidgetPadding"
|
|
|
|
width="8" height="8" alt="Edit"
|
|
|
|
onClick={this._onEditClick}
|
2017-07-14 18:17:59 +08:00
|
|
|
/>}
|
2017-05-23 01:00:17 +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-07-06 16:28:48 +08:00
|
|
|
{appTileBody}
|
2017-05-22 19:34:27 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|