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-api/server/v1/integrations.js

152 lines
4.2 KiB

import { Meteor } from 'meteor/meteor';
import { Match, check } from 'meteor/check';
RocketChat.API.v1.addRoute('integrations.create', { authRequired: true }, {
post() {
check(this.bodyParams, Match.ObjectIncluding({
type: String,
name: String,
enabled: Boolean,
username: String,
urls: Match.Maybe([String]),
channel: String,
event: Match.Maybe(String),
triggerWords: Match.Maybe([String]),
alias: Match.Maybe(String),
avatar: Match.Maybe(String),
emoji: Match.Maybe(String),
token: Match.Maybe(String),
scriptEnabled: Boolean,
script: Match.Maybe(String),
targetChannel: Match.Maybe(String),
}));
let integration;
switch (this.bodyParams.type) {
case 'webhook-outgoing':
Meteor.runAsUser(this.userId, () => {
integration = Meteor.call('addOutgoingIntegration', this.bodyParams);
});
break;
case 'webhook-incoming':
Meteor.runAsUser(this.userId, () => {
integration = Meteor.call('addIncomingIntegration', this.bodyParams);
});
break;
default:
return RocketChat.API.v1.failure('Invalid integration type.');
}
return RocketChat.API.v1.success({ integration });
},
});
RocketChat.API.v1.addRoute('integrations.history', { authRequired: true }, {
get() {
if (!RocketChat.authz.hasPermission(this.userId, 'manage-integrations')) {
return RocketChat.API.v1.unauthorized();
}
if (!this.queryParams.id || this.queryParams.id.trim() === '') {
return RocketChat.API.v1.failure('Invalid integration id.');
}
const { id } = this.queryParams;
const { offset, count } = this.getPaginationItems();
const { sort, fields, query } = this.parseJsonQuery();
const ourQuery = Object.assign({}, query, { 'integration._id': id });
const history = RocketChat.models.IntegrationHistory.find(ourQuery, {
sort: sort ? sort : { _updatedAt: -1 },
skip: offset,
limit: count,
fields,
}).fetch();
return RocketChat.API.v1.success({
history,
offset,
items: history.length,
total: RocketChat.models.IntegrationHistory.find(ourQuery).count(),
});
},
});
RocketChat.API.v1.addRoute('integrations.list', { authRequired: true }, {
get() {
if (!RocketChat.authz.hasPermission(this.userId, 'manage-integrations')) {
return RocketChat.API.v1.unauthorized();
}
const { offset, count } = this.getPaginationItems();
const { sort, fields, query } = this.parseJsonQuery();
const ourQuery = Object.assign({}, query);
const integrations = RocketChat.models.Integrations.find(ourQuery, {
sort: sort ? sort : { ts: -1 },
skip: offset,
limit: count,
fields,
}).fetch();
return RocketChat.API.v1.success({
integrations,
offset,
items: integrations.length,
total: RocketChat.models.Integrations.find(ourQuery).count(),
});
},
});
RocketChat.API.v1.addRoute('integrations.remove', { authRequired: true }, {
post() {
check(this.bodyParams, Match.ObjectIncluding({
type: String,
target_url: Match.Maybe(String),
integrationId: Match.Maybe(String),
}));
if (!this.bodyParams.target_url && !this.bodyParams.integrationId) {
return RocketChat.API.v1.failure('An integrationId or target_url needs to be provided.');
}
let integration;
switch (this.bodyParams.type) {
case 'webhook-outgoing':
if (this.bodyParams.target_url) {
integration = RocketChat.models.Integrations.findOne({ urls: this.bodyParams.target_url });
} else if (this.bodyParams.integrationId) {
integration = RocketChat.models.Integrations.findOne({ _id: this.bodyParams.integrationId });
}
if (!integration) {
return RocketChat.API.v1.failure('No integration found.');
}
Meteor.runAsUser(this.userId, () => {
Meteor.call('deleteOutgoingIntegration', integration._id);
});
return RocketChat.API.v1.success({
integration,
});
case 'webhook-incoming':
integration = RocketChat.models.Integrations.findOne({ _id: this.bodyParams.integrationId });
if (!integration) {
return RocketChat.API.v1.failure('No integration found.');
}
Meteor.runAsUser(this.userId, () => {
Meteor.call('deleteIncomingIntegration', integration._id);
});
return RocketChat.API.v1.success({
integration,
});
default:
return RocketChat.API.v1.failure('Invalid integration type.');
}
},
});