RocketChat/Rocket.Chat

View on GitHub
apps/meteor/app/lib/server/methods/deleteMessage.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { IMessage } from '@rocket.chat/core-typings';
import type { ServerMethods } from '@rocket.chat/ddp-client';
import { Meteor } from 'meteor/meteor';

import { deleteMessageValidatingPermission } from '../functions/deleteMessage';
import { methodDeprecationLogger } from '../lib/deprecationWarningLogger';

declare module '@rocket.chat/ddp-client' {
    // eslint-disable-next-line @typescript-eslint/naming-convention
    interface ServerMethods {
        deleteMessage({ _id }: Pick<IMessage, '_id'>): void;
    }
}

Meteor.methods<ServerMethods>({
    async deleteMessage(message) {
        methodDeprecationLogger.method('deleteMessage', '7.0.0');

        check(
            message,
            Match.ObjectIncluding({
                _id: String,
            }),
        );

        const uid = Meteor.userId();

        if (!uid) {
            throw new Meteor.Error('error-invalid-user', 'Invalid user', {
                method: 'deleteMessage',
            });
        }
        return deleteMessageValidatingPermission(message, uid);
    },
});