The communications platform that puts data protection first.
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.
 
 
 
 
 
 
Rocket.Chat/packages/rocketchat-ui/client/lib/iframeCommands.js

87 lines
2.4 KiB

const commands = {
go(data) {
if (typeof data.path !== 'string' || data.path.trim().length === 0) {
return console.error('`path` not defined');
}
FlowRouter.go(data.path, null, FlowRouter.current().queryParams);
},
'set-user-status'(data) {
AccountBox.setStatus(data.status);
},
'call-custom-oauth-login'(data, event) {
const customOAuthCallback = (response) => {
event.source.postMessage({
event: 'custom-oauth-callback',
response
}, event.origin);
};
const siteUrl = `${ Meteor.settings.Site_Url }/`;
if (typeof data.redirectUrl !== 'string' || !data.redirectUrl.startsWith(siteUrl)) {
data.redirectUrl = null;
}
if (typeof data.service === 'string' && window.ServiceConfiguration) {
const customOauth = ServiceConfiguration.configurations.findOne({service: data.service});
if (customOauth) {
const customLoginWith = Meteor[`loginWith${ _.capitalize(customOauth.service, true) }`];
const customRedirectUri = data.redirectUrl || siteUrl;
customLoginWith.call(Meteor, {'redirectUrl': customRedirectUri}, customOAuthCallback);
}
}
},
'login-with-token'(data) {
if (typeof data.token === 'string') {
Meteor.loginWithToken(data.token, function() {
console.log('Iframe command [login-with-token]: result', arguments);
});
}
},
'logout'() {
const user = Meteor.user();
Meteor.logout(() => {
RocketChat.callbacks.run('afterLogoutCleanUp', user);
Meteor.call('logoutCleanUp', user);
return FlowRouter.go('home');
});
},
'set-toolbar-button'({ id, icon, label }) {
const toolbar = Session.get('toolbarButtons') || { buttons: {} };
toolbar.buttons[id] = { icon, label };
Session.set('toolbarButtons', toolbar);
},
'remove-toolbar-button'({ id }) {
const toolbar = Session.get('toolbarButtons') || { buttons: {} };
delete toolbar.buttons[id];
Session.set('toolbarButtons', toolbar);
}
};
window.addEventListener('message', (e) => {
if (RocketChat.settings.get('Iframe_Integration_receive_enable') !== true) {
return;
}
if (typeof e.data !== 'object' || typeof e.data.externalCommand !== 'string') {
return;
}
const origins = RocketChat.settings.get('Iframe_Integration_receive_origin');
if (origins !== '*' && origins.split(',').indexOf(e.origin) === -1) {
return console.error('Origin not allowed', e.origin);
}
const command = commands[e.data.externalCommand];
if (command) {
command(e.data, e);
}
});