mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
import {
|
|
ICredentialDataDecryptedObject,
|
|
ICredentialsDecrypted,
|
|
ICredentialTestFunctions,
|
|
IHttpRequestOptions,
|
|
NodeCredentialTestResult,
|
|
} from 'n8n-workflow';
|
|
|
|
export async function bambooHrApiCredentialTest(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise<NodeCredentialTestResult> {
|
|
try {
|
|
await validateCredentials.call(this, credential.data as ICredentialDataDecryptedObject);
|
|
} catch (error) {
|
|
return {
|
|
status: 'Error',
|
|
message: 'The API Key included in the request is invalid',
|
|
};
|
|
}
|
|
|
|
return {
|
|
status: 'OK',
|
|
message: 'Connection successful!',
|
|
} as NodeCredentialTestResult;
|
|
}
|
|
|
|
async function validateCredentials(this: ICredentialTestFunctions, decryptedCredentials: ICredentialDataDecryptedObject): Promise<any> { // tslint:disable-line:no-any
|
|
const credentials = decryptedCredentials;
|
|
|
|
const {
|
|
subdomain,
|
|
apiKey,
|
|
} = credentials as {
|
|
subdomain: string,
|
|
apiKey: string,
|
|
};
|
|
|
|
const options: IHttpRequestOptions = {
|
|
method: 'GET',
|
|
auth: {
|
|
username: apiKey as string,
|
|
password: 'x',
|
|
},
|
|
url: `https://api.bamboohr.com/api/gateway.php/${subdomain}/v1/employees/directory`,
|
|
};
|
|
|
|
return await this.helpers.request(options);
|
|
} |