| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- import { Inject, Service } from '@tsed/di';
- import axios from 'axios';
- import { addHours } from 'date-fns';
- import { REQUEST_TIMEOUT_FOR_PTOG } from '@growi/slack';
- import { Relation } from '~/entities/relation';
- import { RelationRepository } from '~/repositories/relation';
- import loggerFactory from '~/utils/logger';
- const logger = loggerFactory('slackbot-proxy:services:RelationsService');
- type checkPermissionForInteractionsResults = {
- allowedRelations:Relation[],
- disallowedGrowiUrls:Set<string>,
- commandName:string,
- }
- @Service()
- export class RelationsService {
- @Inject()
- relationRepository: RelationRepository;
- async getSupportedGrowiCommands(relation:Relation):Promise<any> {
- // generate API URL
- const url = new URL('/_api/v3/slack-integration/supported-commands', relation.growiUri);
- return axios.get(url.toString(), {
- headers: {
- 'x-growi-ptog-tokens': relation.tokenPtoG,
- },
- timeout: REQUEST_TIMEOUT_FOR_PTOG,
- });
- }
- async syncSupportedGrowiCommands(relation:Relation): Promise<Relation> {
- const res = await this.getSupportedGrowiCommands(relation);
- const { permissionsForBroadcastUseCommands, permissionsForSingleUseCommands } = res.data.data;
- if (relation !== null) {
- relation.permissionsForBroadcastUseCommands = permissionsForBroadcastUseCommands;
- relation.permissionsForSingleUseCommands = permissionsForSingleUseCommands;
- relation.expiredAtCommands = addHours(new Date(), 48);
- return this.relationRepository.save(relation);
- }
- throw Error('No relation exists.');
- }
- async syncRelation(relation:Relation, baseDate:Date):Promise<Relation|null> {
- if (relation == null) return null;
- const distanceMillisecondsToExpiredAt = relation.getDistanceInMillisecondsToExpiredAt(baseDate);
- if (distanceMillisecondsToExpiredAt < 0) {
- try {
- return await this.syncSupportedGrowiCommands(relation);
- }
- catch (err) {
- logger.error(err);
- return null;
- }
- }
- // 24 hours
- if (distanceMillisecondsToExpiredAt < 24 * 60 * 60 * 1000) {
- try {
- this.syncSupportedGrowiCommands(relation);
- }
- catch (err) {
- logger.error(err);
- }
- }
- return relation;
- }
- async isPermissionsForSingleUseCommands(relation:Relation, growiCommandType:string, channelName:string, baseDate:Date):Promise<boolean> {
- const syncedRelation = await this.syncRelation(relation, baseDate);
- if (syncedRelation == null) {
- return false;
- }
- const permission = relation.permissionsForSingleUseCommands[growiCommandType];
- if (permission == null) {
- return false;
- }
- if (Array.isArray(permission)) {
- return permission.includes(channelName);
- }
- return permission;
- }
- async isPermissionsUseBroadcastCommands(relation:Relation, growiCommandType:string, channelName:string, baseDate:Date):Promise<boolean> {
- const syncedRelation = await this.syncRelation(relation, baseDate);
- if (syncedRelation == null) {
- return false;
- }
- const permission = relation.permissionsForBroadcastUseCommands[growiCommandType];
- if (permission == null) {
- return false;
- }
- if (Array.isArray(permission)) {
- return permission.includes(channelName);
- }
- return permission;
- }
- async checkPermissionForInteractions(
- relations:Relation[], actionId:string, callbackId:string, channelName:string,
- ):Promise<checkPermissionForInteractionsResults> {
- return this.checkEachRelation(relations, actionId, callbackId, channelName);
- }
- async checkEachRelation(
- relations:Relation[], actionId:string, callbackId:string, channelName:string,
- ):Promise<checkPermissionForInteractionsResults> {
- const allowedRelations:Relation[] = [];
- const disallowedGrowiUrls:Set<string> = new Set();
- let commandName = '';
- await relations.map(async(relation) => {
- let permissionForInteractions:boolean|string[];
- const singleUse = Object.keys(relation.permissionsForSingleUseCommands);
- const broadCastUse = Object.keys(relation.permissionsForBroadcastUseCommands);
- [...singleUse, ...broadCastUse].forEach(async(tempCommandName) => {
- // ex. search OR search:handlerName
- const commandRegExp = new RegExp(`(^${tempCommandName}$)|(^${tempCommandName}:\\w+)`);
- // skip this forEach loop if the requested command is not in permissionsForBroadcastUseCommands and permissionsForSingleUseCommands
- if (!commandRegExp.test(actionId) && !commandRegExp.test(callbackId)) {
- return;
- }
- commandName = tempCommandName;
- // case: singleUse
- permissionForInteractions = relation.permissionsForSingleUseCommands[tempCommandName];
- // case: broadcastUse
- if (permissionForInteractions == null) {
- permissionForInteractions = relation.permissionsForBroadcastUseCommands[tempCommandName];
- }
- if (permissionForInteractions === true) {
- return allowedRelations.push(relation);
- }
- // check permission at channel level
- if (Array.isArray(permissionForInteractions) && permissionForInteractions.includes(channelName)) {
- return allowedRelations.push(relation);
- }
- disallowedGrowiUrls.add(relation.growiUri);
- });
- });
- return { allowedRelations, disallowedGrowiUrls, commandName };
- }
- }
|