n8n/packages/nodes-base/nodes/NextCloud/GenericFunctions.ts
Iván Ovejero b03e358a12
refactor: Integrate consistent-type-imports in nodes-base (no-changelog) (#5267)
* 👕 Enable `consistent-type-imports` for nodes-base

* 👕 Apply to nodes-base

*  Undo unrelated changes

* 🚚 Move to `.eslintrc.js` in nodes-base

*  Revert "Enable `consistent-type-imports` for nodes-base"

This reverts commit 529ad72b05.

* 👕 Fix severity
2023-01-27 12:22:44 +01:00

57 lines
1.5 KiB
TypeScript

import type { IExecuteFunctions, IHookFunctions } from 'n8n-core';
import type { OptionsWithUri } from 'request';
/**
* Make an API request to NextCloud
*
*/
export async function nextCloudApiRequest(
this: IHookFunctions | IExecuteFunctions,
method: string,
endpoint: string,
body: object | string | Buffer,
headers?: object,
encoding?: null | undefined,
query?: object,
) {
const resource = this.getNodeParameter('resource', 0);
const operation = this.getNodeParameter('operation', 0);
const authenticationMethod = this.getNodeParameter('authentication', 0);
let credentials;
if (authenticationMethod === 'accessToken') {
credentials = (await this.getCredentials('nextCloudApi')) as { webDavUrl: string };
} else {
credentials = (await this.getCredentials('nextCloudOAuth2Api')) as { webDavUrl: string };
}
const options: OptionsWithUri = {
headers,
method,
body,
qs: query ?? {},
uri: '',
json: false,
};
if (encoding === null) {
options.encoding = null;
}
options.uri = `${credentials.webDavUrl}/${encodeURI(endpoint)}`;
if (resource === 'user' && operation === 'create') {
options.uri = options.uri.replace('/remote.php/webdav', '');
}
if (resource === 'file' && operation === 'share') {
options.uri = options.uri.replace('/remote.php/webdav', '');
}
const credentialType =
authenticationMethod === 'accessToken' ? 'nextCloudApi' : 'nextCloudOAuth2Api';
return this.helpers.requestWithAuthentication.call(this, credentialType, options);
}