n8n/packages/nodes-base/credentials/StrapiTokenApi.credentials.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.5 KiB
TypeScript
Raw Normal View History

2024-09-25 03:01:38 -07:00
import {
CredentialSchema,
type ICredentialType,
type IAuthenticateGeneric,
type ICredentialTestRequest,
} from 'n8n-workflow';
2024-09-25 03:01:38 -07:00
const strapiTokenApiCredentialSchema = CredentialSchema.create({
apiToken: CredentialSchema.password({ label: 'API Token' }),
url: CredentialSchema.url({ placeholder: 'https://api.example.com' }),
apiVersion: CredentialSchema.options({
label: 'API Version',
description: 'The version of api to be used',
options: [
{
label: 'Version 4',
value: 'v4',
description: 'API version supported by Strapi 4',
},
{
label: 'Version 3',
value: 'v3',
default: true,
description: 'API version supported by Strapi 3',
},
],
}),
});
export class StrapiTokenApi implements ICredentialType {
name = 'strapiTokenApi';
displayName = 'Strapi API Token';
documentationUrl = 'strapi';
2024-09-25 03:01:38 -07:00
properties = strapiTokenApiCredentialSchema.toNodeProperties();
schema = strapiTokenApiCredentialSchema;
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
headers: {
Authorization: '=Bearer {{$credentials.apiToken}}',
},
},
};
test: ICredentialTestRequest = {
request: {
baseURL: '={{$credentials.url}}',
url: '={{$credentials.apiVersion === "v3" ? "/users/count" : "/api/users/count"}}',
ignoreHttpStatusErrors: true,
},
rules: [
{
type: 'responseSuccessBody',
properties: {
key: 'error.name',
value: 'UnauthorizedError',
message: 'Invalid API token',
},
},
],
};
}