Optimize & group dapp requests (#7083)

* Group similar methods in same grouping

* Add a shell_getMethodGroups API

* Small code clean changes

* Fix bug dapp.name not showing

* Additional error handling

* Store sources in own map

* Remove observable variables where not needed

* Refactor code and fix bug dapp not showing on approve
This commit is contained in:
Amaury Martiny 2017-11-21 15:50:38 +01:00 committed by Jaco Greeff
parent 2650154cd7
commit 570fc56af7
10 changed files with 404 additions and 323 deletions

View File

@ -0,0 +1,9 @@
# Terminology used
To be clear with the terminology used in the code here:
- a *method* is an allowed JSON-RPC api method or a shell method
- a *methodGroup* is the grouping of similar methods (see `methodGroups.js`)
- a *permission* is a boolean which tells if an app is allowed to call a method or not
- a *request* is when an app prompts the shell to call a method
- a *requestGroup* is an array of *requests* whose methods are in the same *methodGroup*

View File

@ -1,85 +0,0 @@
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
// This file is part of Parity.
// Parity is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Parity 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 General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
import React from 'react';
import PropTypes from 'prop-types';
import { FormattedMessage } from 'react-intl';
import Button from '@parity/ui/lib/Button';
import DappsStore from '@parity/shared/lib/mobx/dappsStore';
export default function Request ({ appId, className, approveRequest, denyRequest, queueId, request: { from, method } }) {
const _onApprove = () => approveRequest(queueId, false);
const _onApproveAll = () => approveRequest(queueId, true);
const _onReject = () => denyRequest(queueId);
const app = DappsStore.get().getAppById(appId);
return (
<div className={ className }>
<FormattedMessage
id='dappRequests.request.info'
defaultMessage='Received request for {method} from {appName}'
values={ {
appName:
app
? app.name
: appId,
method
} }
/>
<div>
<Button
label={
<FormattedMessage
id='dappRequests.request.buttons.approve'
defaultMessage='Approve'
/>
}
onClick={ _onApprove }
/>
<Button
label={
<FormattedMessage
id='dappRequests.request.buttons.approveAll'
defaultMessage='Approve All'
/>
}
onClick={ _onApproveAll }
/>
<Button
label={
<FormattedMessage
id='dappRequests.request.buttons.reject'
defaultMessage='Reject'
/>
}
onClick={ _onReject }
/>
</div>
</div>
);
}
Request.propTypes = {
appId: PropTypes.string.isRequired,
className: PropTypes.string,
approveRequest: PropTypes.func.isRequired,
denyRequest: PropTypes.func.isRequired,
queueId: PropTypes.number.isRequired,
request: PropTypes.object.isRequired
};

View File

@ -0,0 +1,39 @@
/* Copyright 2015-2017 Parity Technologies (UK) Ltd.
/* This file is part of Parity.
/*
/* Parity is free software: you can redistribute it and/or modify
/* it under the terms of the GNU General Public License as published by
/* the Free Software Foundation, either version 3 of the License, or
/* (at your option) any later version.
/*
/* Parity 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 General Public License for more details.
/*
/* You should have received a copy of the GNU General Public License
/* along with Parity. If not, see <http://www.gnu.org/licenses/>.
*/
$backgroundOne: #f80;
$backgroundTwo: #e57a00;
.requestGroups {
background: $backgroundOne;
background: linear-gradient($backgroundOne, $backgroundTwo);
padding: 0.5em;
text-align: right;
color: white;
> span {
margin-right: 30px;
}
.requestGroup {
margin-top: 2px;
.requestGroupTitle {
margin-right: 10px;
}
}
}

View File

@ -0,0 +1,116 @@
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
// This file is part of Parity.
// Parity is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Parity 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 General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import { FormattedMessage } from 'react-intl';
import Popup from 'semantic-ui-react/dist/commonjs/modules/Popup';
import Button from '@parity/ui/lib/Button';
import DappsStore from '@parity/shared/lib/mobx/dappsStore';
import styles from './RequestGroups.css';
export default class RequestGroups extends PureComponent {
state = {
opened: false
};
handleApproveRequestGroup = groupId => {
const { requestGroups, onApproveRequestGroup } = this.props;
onApproveRequestGroup(Object.values(requestGroups[groupId].map(({ requestId }) => requestId)));
}
handleRejectRequestGroup = groupId => {
const { requestGroups, onRejectRequestGroup } = this.props;
onRejectRequestGroup(Object.values(requestGroups[groupId].map(({ requestId }) => requestId)));
}
renderPopupContent = groupId => {
const { requestGroups } = this.props;
// Get unique list of methods in that request group
const requestedMethods = [...new Set(
Object.values(requestGroups[groupId])
.map(request => request.data.method || request.data.params[0])
)];
return `Requested methods: ${requestedMethods.join(', ')}`;
}
render () {
const {
appId,
requestGroups
} = this.props;
const app = DappsStore.get().getAppById(appId);
return (
<div className={ styles.requestGroups }>
<FormattedMessage
className={ styles.requestGroups }
id='dappRequests.request.info'
defaultMessage='{appName} wants to request permissions:'
values={ {
appName: app ? app.name : `Dapp ${appId}`
} }
/>
{Object.keys(requestGroups).map(groupId => (
<div key={ `${appId}-${groupId}` } className={ styles.requestGroup }>
<span className={ styles.requestGroupTitle }>
Permission for{' '}
<Popup
trigger={ <span>{groupId}</span> }
content={ this.renderPopupContent(groupId) }
/>
</span>
<Button
size='mini'
label={
<FormattedMessage
id='dappRequests.request.buttons.approve'
defaultMessage='Approve'
/>
}
onClick={ () => this.handleApproveRequestGroup(groupId) }
/>
<Button
size='mini'
label={
<FormattedMessage
id='dappRequests.request.buttons.reject'
defaultMessage='Reject'
/>
}
onClick={ () => this.handleRejectRequestGroup(groupId) }
/>
</div>
))}
</div>
);
}
}
RequestGroups.propTypes = {
appId: PropTypes.string.isRequired,
className: PropTypes.string,
onApproveRequestGroup: PropTypes.func.isRequired,
onRejectRequestGroup: PropTypes.func.isRequired,
requestGroups: PropTypes.object.isRequired
};

View File

@ -14,4 +14,4 @@
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>. // along with Parity. If not, see <http://www.gnu.org/licenses/>.
export default from './request'; export default from './RequestGroups';

View File

@ -15,27 +15,10 @@
/* along with Parity. If not, see <http://www.gnu.org/licenses/>. /* along with Parity. If not, see <http://www.gnu.org/licenses/>.
*/ */
$backgroundOne: #f80;
$backgroundTwo: #e57a00;
.requests { .requests {
color: white;
position: fixed; position: fixed;
left: 0; left: 0;
right: 0; right: 0;
bottom: 0; bottom: 0;
z-index: 1001; /* sits above sync warning */ z-index: 1001; /* sits above sync warning */
.request {
align-items: center;
background: $backgroundOne;
background: linear-gradient($backgroundOne, $backgroundTwo);
display: flex;
justify-content: flex-end;
padding: 0.5em;
> span {
margin-right: 1em;
}
}
} }

View File

@ -15,36 +15,43 @@
// along with Parity. If not, see <http://www.gnu.org/licenses/>. // along with Parity. If not, see <http://www.gnu.org/licenses/>.
import { observer } from 'mobx-react'; import { observer } from 'mobx-react';
import React from 'react'; import React, { PureComponent } from 'react';
import Request from './Request'; import RequestGroups from './RequestGroups';
import Store from './store'; import Store from './store';
import styles from './dappRequests.css'; import styles from './dappRequests.css';
function DappRequests () { class DappRequests extends PureComponent {
const store = Store.get(); store = Store.get();
if (!store || !store.hasRequests) { handleApproveRequestGroup = requestIds => {
return null; requestIds.forEach(this.store.approveRequest);
} }
return ( handleRejectRequestGroup = requestIds => {
<div className={ styles.requests }> requestIds.forEach(this.store.rejectRequest);
{ }
store.squashedRequests.map(({ appId, queueId, request: { data } }) => (
<Request render () {
appId={ appId } if (!this.store || !this.store.hasRequests) {
className={ styles.request } return null;
approveRequest={ store.approveRequest } }
denyRequest={ store.rejectRequest }
key={ queueId } return (
queueId={ queueId } <div className={ styles.requests }>
request={ data } {Object.keys(this.store.groupedRequests)
/> .map(appId => (
)) <RequestGroups
} key={ appId }
</div> appId={ appId }
); onApproveRequestGroup={ this.handleApproveRequestGroup }
onRejectRequestGroup={ this.handleRejectRequestGroup }
requestGroups={ this.store.groupedRequests[appId] }
/>
))}
</div>
);
}
} }
export default observer(DappRequests); export default observer(DappRequests);

View File

@ -14,21 +14,19 @@
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>. // along with Parity. If not, see <http://www.gnu.org/licenses/>.
export default { const methodGroups = {
shell: { shell: {
methods: [ methods: [
'shell_getApps', 'shell_getApps',
'shell_getFilteredMethods', 'shell_getFilteredMethods',
'shell_getMethodGroups',
'shell_getMethodPermissions', 'shell_getMethodPermissions',
'shell_setAppVisibility', 'shell_setAppVisibility',
'shell_setMethodPermissions' 'shell_setMethodPermissions'
] ]
}, },
accountsView: { accountsView: {
methods: [ methods: ['parity_accountsInfo', 'parity_allAccountsInfo']
'parity_accountsInfo',
'parity_allAccountsInfo'
]
}, },
accountsCreate: { accountsCreate: {
methods: [ methods: [
@ -42,10 +40,7 @@ export default {
] ]
}, },
accountsEdit: { accountsEdit: {
methods: [ methods: ['parity_setAccountName', 'parity_setAccountMeta']
'parity_setAccountName',
'parity_setAccountMeta'
]
}, },
upgrade: { upgrade: {
methods: [ methods: [
@ -76,3 +71,15 @@ export default {
] ]
} }
}; };
const methodGroupFromMethod = {}; // Maps method to methodGroup
// Populate methodGroupFromMethod
Object.keys(methodGroups).forEach(groupId => {
methodGroups[groupId].methods.forEach(method => {
methodGroupFromMethod[method] = groupId;
});
});
export { methodGroupFromMethod };
export default methodGroups;

View File

@ -19,19 +19,17 @@ import store from 'store';
import { sha3 } from '@parity/api/lib/util/sha3'; import { sha3 } from '@parity/api/lib/util/sha3';
import filteredRequests from './filteredRequests'; import { methodGroupFromMethod } from './methodGroups';
const LS_PERMISSIONS = '_parity::dapps::methods'; const LS_PERMISSIONS = '_parity::dapps::methods';
let nextQueueId = 0;
export default class Store { export default class Store {
@observable permissions = {}; @observable requests = {}; // Maps requestId to request
@observable requests = [];
@observable tokens = {};
middleware = []; middleware = [];
sources = {}; permissions = {}; // Maps `${method}:${appId}` to true/false
sources = {}; // Maps requestId to a postMessage source
tokens = {}; // Maps token to appId
constructor (provider) { constructor (provider) {
this.provider = provider; this.provider = provider;
@ -41,131 +39,112 @@ export default class Store {
} }
@computed get hasRequests () { @computed get hasRequests () {
return this.requests.length !== 0; return Object.keys(this.requests).length !== 0;
} }
@computed get squashedRequests () { @computed get groupedRequests () {
const duplicates = {}; // Group by appId on top level, and by methodGroup on 2nd level
return Object.keys(this.requests).reduce((accumulator, requestId) => {
const { data } = this.requests[requestId];
const appId = this.tokens[data.token];
const method = this.getMethodFromRequest(requestId);
const methodGroup = methodGroupFromMethod[method]; // Get the methodGroup the current request belongs to
return this.requests.filter(({ request: { data: { method, token } } }) => { accumulator[appId] = accumulator[appId] || {};
const section = this.getFilteredSectionName(method); accumulator[appId][methodGroup] = accumulator[appId][methodGroup] || [];
const id = `${token}:${section}`; accumulator[appId][methodGroup].push({ data, requestId }); // Append the requestId field in the request object
if (!duplicates[id]) { return accumulator;
duplicates[id] = true; }, {});
return true;
}
return false;
});
} }
@action createToken = (appId) => { @action queueRequest = (requestId, { data, source }) => {
const token = sha3(`${appId}:${Date.now()}`); this.sources[requestId] = source;
// Create a new this.requests object to update mobx store
this.requests = {
...this.requests,
[requestId]: { data }
};
};
this.tokens = Object.assign({}, this.tokens, { @action approveRequest = requestId => {
[token]: appId const { data } = this.requests[requestId];
}); const method = this.getMethodFromRequest(requestId);
return token;
}
@action removeRequest = (_queueId) => {
this.requests = this.requests.filter(({ queueId }) => queueId !== _queueId);
delete this.sources[_queueId];
}
@action queueRequest = (request) => {
const { data, origin, source } = request;
const appId = this.tokens[data.token]; const appId = this.tokens[data.token];
const source = this.sources[requestId];
let queueId = ++nextQueueId; this.addAppPermission(method, appId);
this.removeRequest(requestId);
this.sources[queueId] = source;
this.requests = this.requests.concat([{
appId,
queueId,
request: {
data,
origin
}
}]);
}
@action addTokenPermission = (method, token) => {
const id = `${method}:${this.tokens[token]}`;
this.permissions = Object.assign({}, this.permissions, {
[id]: true
});
this.savePermissions();
}
@action approveSingleRequest = ({ queueId, request: { data } }) => {
const source = this.sources[queueId];
this.removeRequest(queueId);
if (data.api) { if (data.api) {
this.executePubsubCall(data, source); this.executePubsubCall(data, source);
} else { } else {
this.executeMethodCall(data, source); this.executeMethodCall(data, source);
} }
} };
@action approveRequest = (queueId, approveAll) => { @action rejectRequest = requestId => {
const queued = this.findRequest(queueId); const { data } = this.requests[requestId];
const source = this.sources[requestId];
if (approveAll) { this.removeRequest(requestId);
const { request: { data: { method, token, params } } } = queued;
this.getFilteredSection(method || params[0]).methods.forEach((m) => {
this.addTokenPermission(m, token);
this.findMatchingRequests(m, token).forEach(this.approveSingleRequest);
});
} else {
this.approveSingleRequest(queued);
}
}
@action rejectRequest = (queueId) => {
const { request: { data } } = this.findRequest(queueId);
const source = this.sources[queueId];
this.removeRequest(queueId);
this.rejectMessage(source, data); this.rejectMessage(source, data);
};
@action removeRequest = requestId => {
delete this.requests[requestId];
delete this.sources[requestId];
// Create a new object to update mobx store
this.requests = { ...this.requests };
};
getPermissionId = (method, appId) => `${method}:${appId}` // Create an id to identify permissions based on method and appId
getMethodFromRequest = requestId => {
const { data: { method, params } } = this.requests[requestId];
return method || params[0];
} }
@action rejectMessage = (source, { id, from, method, token }) => { rejectMessage = (source, { id, from, method, token }) => {
if (!source) { if (!source) {
return; return;
} }
source.postMessage({ source.postMessage(
error: `Method ${method} not allowed`, {
id, error: `Method ${method} not allowed`,
from: 'shell', id,
result: null, from: 'shell',
to: from, result: null,
token to: from,
}, '*'); token
} },
'*'
);
};
@action setPermissions = (_permissions) => { addAppPermission = (method, appId) => {
this.permissions[this.getPermissionId(method, appId)] = true;
this.savePermissions();
};
setPermissions = _permissions => {
const permissions = {}; const permissions = {};
Object.keys(_permissions).forEach((id) => { Object.keys(_permissions).forEach(id => {
permissions[id] = !!_permissions[id]; permissions[id] = !!_permissions[id];
}); });
this.permissions = Object.assign({}, this.permissions, permissions); this.permissions = permissions;
this.savePermissions(); this.savePermissions();
return true; return true;
} };
addMiddleware (middleware) { addMiddleware (middleware) {
if (!middleware || (typeof middleware !== 'function')) { if (!middleware || typeof middleware !== 'function') {
throw new Error('Interceptor middleware does not implement a function'); throw new Error('Interceptor middleware does not implement a function');
} }
@ -174,114 +153,131 @@ export default class Store {
return true; return true;
} }
createToken = appId => {
const token = sha3(`${appId}:${Date.now()}`);
this.tokens[token] = appId;
return token;
};
hasValidToken = (method, appId, token) => { hasValidToken = (method, appId, token) => {
if (!token) { if (!token) {
return method === 'shell_requestNewToken'; return method === 'shell_requestNewToken';
} }
return this.tokens[token] === appId; return this.tokens[token] === appId;
} };
hasTokenPermission = (method, token) => { hasTokenPermission = (method, token) => {
return this.hasAppPermission(method, this.tokens[token]); return this.hasAppPermission(method, this.tokens[token]);
} };
hasAppPermission = (method, appId) => { hasAppPermission = (method, appId) => {
return this.permissions[`${method}:${appId}`] || false; return !!this.permissions[this.getPermissionId(method, appId)];
} };
savePermissions = () => { savePermissions = () => {
store.set(LS_PERMISSIONS, this.permissions); store.set(LS_PERMISSIONS, this.permissions);
} };
findRequest (_queueId) {
return this.requests.find(({ queueId }) => queueId === _queueId);
}
findMatchingRequests (_method, _token) {
return this.requests.filter(({ request: { data: { method, token, params } } }) => (method === _method || (params && params[0] === _method)) && token === _token);
}
_methodCallbackPost = (id, from, source, token) => { _methodCallbackPost = (id, from, source, token) => {
return (error, result) => { return (error, result) => {
if (!source) { if (!source) {
return; return;
} }
source.postMessage(
source.postMessage({ {
error: error error: error ? error.message : null,
? error.message id,
: null, from: 'shell',
id, to: from,
from: 'shell', result,
to: from, token
result, },
token '*'
}, '*'); );
}; };
} };
executePubsubCall = ({ api, id, from, token, params }, source) => { executePubsubCall = ({ api, id, from, token, params }, source) => {
const callback = this._methodCallbackPost(id, from, source, token); const callback = this._methodCallbackPost(id, from, source, token);
this.provider this.provider.subscribe(api, callback, params).then((result, error) => {
.subscribe(api, callback, params) this._methodCallbackPost(id, from, source, token)(null, result);
.then((result, error) => { });
this._methodCallbackPost(id, from, source, token)(null, result); };
});
}
executeMethodCall = ({ id, from, method, params, token }, source) => { executeMethodCall = ({ id, from, method, params, token }, source) => {
const callback = this._methodCallbackPost(id, from, source, token); try {
const isHandled = this.middleware.find((middleware) => middleware(from, method, params, callback)); const callback = this._methodCallbackPost(id, from, source, token);
const isHandled = this.middleware.some(middleware => {
try {
return middleware(from, method, params, callback);
} catch (error) {
console.error(`Middleware error handling '${method}'`, error);
}
if (!isHandled) { return false;
this.provider.send(method, params, callback); });
if (!isHandled) {
this.provider.send(method, params, callback);
}
} catch (error) {
console.error(`Execution error handling '${method}'`, error);
} }
} };
getFilteredSectionName = (method) => { receiveMessage = ({ data, source }) => {
return Object.keys(filteredRequests).find((key) => { try {
return filteredRequests[key].methods.includes(method); if (!data) {
}); return;
} }
getFilteredSection = (method) => { const { from, method, to, token, params, api, subId, id } = data;
return filteredRequests[this.getFilteredSectionName(method)];
}
receiveMessage = ({ data, origin, source }) => { if (to !== 'shell' || !from || from === 'shell') {
if (!data) { return;
return; }
if (!this.hasValidToken(method, from, token)) {
this.rejectMessage(source, data);
return;
}
if (
(method &&
methodGroupFromMethod[method] &&
!this.hasTokenPermission(method, token)) ||
(api &&
methodGroupFromMethod[params[0]] &&
!this.hasTokenPermission(method, token))
) {
this.queueRequest(id, { // The requestId of a request is the id inside data
data,
source
});
return;
}
if (api) {
this.executePubsubCall(data, source);
} else if (subId) {
const unsubscribePromise = subId === '*'
? this.provider.unsubscribeAll()
: this.provider.unsubscribe(subId);
unsubscribePromise
.then(v =>
this._methodCallbackPost(id, from, source, token)(null, v)
);
} else {
this.executeMethodCall(data, source);
}
} catch (error) {
console.error('Exception handling data', data, error);
} }
};
const { from, method, to, token, params, api, subId, id } = data;
if (to !== 'shell' || !from || from === 'shell') {
return;
}
if (!this.hasValidToken(method, from, token)) {
this.rejectMessage(source, data);
return;
}
if ((method && this.getFilteredSection(method) && !this.hasTokenPermission(method, token)) ||
(api && this.getFilteredSection(params[0]) && !this.hasTokenPermission(method, token))) {
this.queueRequest({ data, origin, source });
return;
}
if (api) {
this.executePubsubCall(data, source);
} else if (subId) {
subId === '*'
? this.provider.unsubscribeAll().then(v => this._methodCallbackPost(id, from, source, token)(null, v))
: this.provider.unsubscribe(subId).then(v => this._methodCallbackPost(id, from, source, token)(null, v));
} else {
this.executeMethodCall(data, source);
}
}
static instance = null; static instance = null;

View File

@ -14,13 +14,14 @@
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>. // along with Parity. If not, see <http://www.gnu.org/licenses/>.
import mobx from 'mobx';
import flatten from 'lodash.flatten'; import flatten from 'lodash.flatten';
import { sha3 } from '@parity/api/lib/util/sha3'; import { sha3 } from '@parity/api/lib/util/sha3';
import VisibleStore from '@parity/shared/lib/mobx/dappsStore'; import VisibleStore from '@parity/shared/lib/mobx/dappsStore';
import RequestStore from './DappRequests/store'; import RequestStore from './DappRequests/store';
import filteredRequests from './DappRequests/filteredRequests'; import methodGroups from './DappRequests/methodGroups';
export default function execute (appId, method, params, callback) { export default function execute (appId, method, params, callback) {
const visibleStore = VisibleStore.get(); const visibleStore = VisibleStore.get();
@ -30,29 +31,35 @@ export default function execute (appId, method, params, callback) {
case 'shell_getApps': case 'shell_getApps':
const [displayAll] = params; const [displayAll] = params;
callback(null, displayAll callback(
? visibleStore.allApps.slice() null,
: visibleStore.visibleApps.slice() displayAll
? visibleStore.allApps.slice().map(mobx.toJS)
: visibleStore.visibleApps.slice().map(mobx.toJS)
); );
return true; return true;
case 'shell_getFilteredMethods': case 'shell_getFilteredMethods':
callback(null, flatten( callback(
Object null,
.keys(filteredRequests) flatten(Object.keys(methodGroups).map(key => methodGroups[key].methods))
.map((key) => filteredRequests[key].methods) );
)); return true;
case 'shell_getMethodGroups':
callback(
null,
methodGroups
);
return true; return true;
case 'shell_getMethodPermissions': case 'shell_getMethodPermissions':
callback(null, requestStore.permissions); callback(null, mobx.toJS(requestStore.permissions));
return true; return true;
case 'shell_loadApp': case 'shell_loadApp':
const [_loadId, loadParams] = params; const [_loadId, loadParams] = params;
const loadId = _loadId.substr(0, 2) !== '0x' const loadId = _loadId.substr(0, 2) !== '0x' ? sha3(_loadId) : _loadId;
? sha3(_loadId)
: _loadId;
const loadUrl = `/${loadId}/${loadParams || ''}`; const loadUrl = `/${loadId}/${loadParams || ''}`;
window.location.hash = loadUrl; window.location.hash = loadUrl;
@ -67,9 +74,11 @@ export default function execute (appId, method, params, callback) {
case 'shell_setAppVisibility': case 'shell_setAppVisibility':
const [changeId, visibility] = params; const [changeId, visibility] = params;
callback(null, visibility callback(
? visibleStore.showApp(changeId) null,
: visibleStore.hideApp(changeId) visibility
? visibleStore.showApp(changeId)
: visibleStore.hideApp(changeId)
); );
return true; return true;