RocketChat/Rocket.Chat

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

Summary

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

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

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

Meteor.methods<ServerMethods>({
    async refreshOAuthService() {
        const userId = Meteor.userId();

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

        if ((await hasPermissionAsync(userId, 'add-oauth-service')) !== true) {
            throw new Meteor.Error('error-action-not-allowed', 'Refresh OAuth Services is not allowed', {
                method: 'refreshOAuthService',
                action: 'Refreshing_OAuth_Services',
            });
        }

        await refreshLoginServices();
    },
});