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

58 lines
1,002 B
TypeScript
Raw Normal View History

2019-12-30 13:08:22 -08:00
import {
IAuthenticateGeneric,
ICredentialTestRequest,
2019-12-30 13:08:22 -08:00
ICredentialType,
INodeProperties,
2019-12-30 13:08:22 -08:00
} from 'n8n-workflow';
export class WordpressApi implements ICredentialType {
name = 'wordpressApi';
2019-12-30 13:08:22 -08:00
displayName = 'Wordpress API';
documentationUrl = 'wordpress';
properties: INodeProperties[] = [
2019-12-30 13:08:22 -08:00
{
displayName: 'Username',
name: 'username',
type: 'string',
2019-12-30 13:08:22 -08:00
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: {
password: true,
},
2019-12-30 13:08:22 -08:00
default: '',
},
{
displayName: 'Wordpress URL',
name: 'url',
type: 'string',
2019-12-30 13:08:22 -08:00
default: '',
placeholder: 'https://example.com',
2019-12-30 13:08:22 -08:00
},
];
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
auth: {
username: '={{$credentials.username}}',
password: '={{$credentials.password}}',
},
},
};
test: ICredentialTestRequest = {
request: {
baseURL: '={{$credentials?.url}}/wp-json/wp/v2',
url: '/users',
method: 'GET',
},
};
2019-12-30 13:08:22 -08:00
}