Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
58 lines
1.2 KiB
TypeScript
58 lines
1.2 KiB
TypeScript
import type {
|
|
ICredentialDataDecryptedObject,
|
|
ICredentialTestRequest,
|
|
ICredentialType,
|
|
IHttpRequestOptions,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class NextCloudApi implements ICredentialType {
|
|
name = 'nextCloudApi';
|
|
|
|
displayName = 'NextCloud API';
|
|
|
|
documentationUrl = 'nextcloud';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Web DAV URL',
|
|
name: 'webDavUrl',
|
|
type: 'string',
|
|
placeholder: 'https://nextcloud.example.com/remote.php/webdav',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'User',
|
|
name: 'user',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Password',
|
|
name: 'password',
|
|
type: 'string',
|
|
typeOptions: { password: true },
|
|
default: '',
|
|
},
|
|
];
|
|
|
|
async authenticate(
|
|
credentials: ICredentialDataDecryptedObject,
|
|
requestOptions: IHttpRequestOptions,
|
|
): Promise<IHttpRequestOptions> {
|
|
requestOptions.auth = {
|
|
username: credentials.user as string,
|
|
password: credentials.password as string,
|
|
};
|
|
return requestOptions;
|
|
}
|
|
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: "={{$credentials.webDavUrl.replace('/remote.php/webdav', '')}}",
|
|
url: '/ocs/v1.php/cloud/capabilities',
|
|
headers: { 'OCS-APIRequest': true },
|
|
},
|
|
};
|
|
}
|