mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
import type { IExecuteFunctions, IHookFunctions } from 'n8n-workflow';
|
|
|
|
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);
|
|
}
|