RocketChat/Rocket.Chat

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

Summary

Maintainability
A
2 hrs
Test Coverage
import type { ServerMethods } from '@rocket.chat/ddp-client';
import { Match, check } from 'meteor/check';
import { Meteor } from 'meteor/meteor';

import { hasPermissionAsync } from '../../../authorization/server/functions/hasPermission';
import { cleanRoomHistory } from '../functions/cleanRoomHistory';

declare module '@rocket.chat/ddp-client' {
    // eslint-disable-next-line @typescript-eslint/naming-convention
    interface ServerMethods {
        cleanRoomHistory(data: {
            roomId: string;
            latest: Date;
            oldest: Date;
            inclusive?: boolean;
            limit?: number;
            excludePinned?: boolean;
            ignoreDiscussion?: boolean;
            filesOnly?: boolean;
            fromUsers?: string[];
            ignoreThreads?: boolean;
        }): number;
    }
}

Meteor.methods<ServerMethods>({
    async cleanRoomHistory({
        roomId,
        latest,
        oldest,
        inclusive = true,
        limit,
        excludePinned = false,
        ignoreDiscussion = true,
        filesOnly = false,
        fromUsers = [],
        ignoreThreads,
    }) {
        check(roomId, String);
        check(latest, Date);
        check(oldest, Date);
        check(inclusive, Boolean);
        check(limit, Match.Maybe(Number));
        check(excludePinned, Match.Maybe(Boolean));
        check(filesOnly, Match.Maybe(Boolean));
        check(ignoreThreads, Match.Maybe(Boolean));
        check(fromUsers, Match.Maybe([String]));

        const userId = Meteor.userId();

        if (!userId) {
            throw new Meteor.Error('error-invalid-user', 'Invalid user', { method: 'cleanRoomHistory' });
        }

        if (!(await hasPermissionAsync(userId, 'clean-channel-history', roomId))) {
            throw new Meteor.Error('error-not-allowed', 'Not allowed', { method: 'cleanRoomHistory' });
        }

        return cleanRoomHistory({
            rid: roomId,
            latest,
            oldest,
            inclusive,
            limit,
            excludePinned,
            ignoreDiscussion,
            filesOnly,
            fromUsers,
            ignoreThreads,
        });
    },
});