import type { IRoom } from '@rocket.chat/core-typings'; import type { ServerMethods } from '@rocket.chat/ui-contexts'; import { Meteor } from 'meteor/meteor'; import { LivechatRooms } from '@rocket.chat/models'; import { hasPermissionAsync } from '../../../authorization/server/functions/hasPermission'; import { Livechat } from '../lib/LivechatTyped'; declare module '@rocket.chat/ui-contexts' { // eslint-disable-next-line @typescript-eslint/naming-convention interface ServerMethods { 'livechat:removeRoom'(rid: IRoom['_id']): void; } } Meteor.methods({ async 'livechat:removeRoom'(rid) { const user = Meteor.userId(); if (!user || !(await hasPermissionAsync(user, 'remove-closed-livechat-room'))) { throw new Meteor.Error('error-not-allowed', 'Not allowed', { method: 'livechat:removeRoom' }); } const room = await LivechatRooms.findOneById(rid); if (!room) { throw new Meteor.Error('error-invalid-room', 'Invalid room', { method: 'livechat:removeRoom', }); } if (room.t !== 'l') { throw new Meteor.Error('error-this-is-not-a-livechat-room', 'This is not a Livechat room', { method: 'livechat:removeRoom', }); } if (room.open) { throw new Meteor.Error('error-room-is-not-closed', 'Room is not closed', { method: 'livechat:removeRoom', }); } await Livechat.removeRoom(rid); }, });