RocketChat/Rocket.Chat

View on GitHub
apps/meteor/app/webdav/server/methods/getWebdavFileList.ts

Summary

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

import { settings } from '../../../settings/server';
import { getWebdavCredentials } from '../lib/getWebdavCredentials';
import { WebdavClientAdapter } from '../lib/webdavClientAdapter';

declare module '@rocket.chat/ddp-client' {
    // eslint-disable-next-line @typescript-eslint/naming-convention
    interface ServerMethods {
        getWebdavFileList(accountId: IWebdavAccount['_id'], path: string): { success: boolean; data: IWebdavNode[] };
    }
}

Meteor.methods<ServerMethods>({
    async getWebdavFileList(accountId, path) {
        const userId = Meteor.userId();

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

        if (!settings.get('Webdav_Integration_Enabled')) {
            throw new Meteor.Error('error-not-allowed', 'WebDAV Integration Not Allowed', {
                method: 'getWebdavFileList',
            });
        }

        const account = await WebdavAccounts.findOneByIdAndUserId(accountId, userId, {});
        if (!account) {
            throw new Meteor.Error('error-invalid-account', 'Invalid WebDAV Account', {
                method: 'getWebdavFileList',
            });
        }

        try {
            const cred = getWebdavCredentials(account);
            const client = new WebdavClientAdapter(account.serverURL, cred);
            const data = (await client.getDirectoryContents(path)) as IWebdavNode[];
            return { success: true, data };
        } catch (error) {
            throw new Meteor.Error('could-not-access-webdav', 'Could not access webdav', {
                method: 'getWebdavFileList',
            });
        }
    },
});