n8n/packages/nodes-base/nodes/Wekan/GenericFunctions.ts
Omar Ajoue 7ce7285f7a
Load credentials from the database (#1741)
* Changes to types so that credentials can be always loaded from DB

This first commit changes all return types from the execute functions
and calls to get credentials to be async so we can use await.

This is a first step as previously credentials were loaded in memory and
always available. We will now be loading them from the DB which requires
turning the whole call chain async.

* Fix updated files

* Removed unnecessary credential loading to improve performance

* Fix typo

*  Fix issue

* Updated new nodes to load credentials async

*  Remove not needed comment

Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2021-08-20 18:57:30 +02:00

81 lines
1.9 KiB
TypeScript

import {
IExecuteFunctions,
IExecuteSingleFunctions,
IHookFunctions,
ILoadOptionsFunctions,
IWebhookFunctions,
} from 'n8n-core';
import {
OptionsWithUri,
} from 'request';
import {
ICredentialDataDecryptedObject,
IDataObject,
NodeApiError,
NodeOperationError,
} from 'n8n-workflow';
export async function getAuthorization(
this: IHookFunctions | IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions | IWebhookFunctions,
credentials?: ICredentialDataDecryptedObject,
): Promise<IDataObject> {
if (credentials === undefined) {
throw new NodeOperationError(this.getNode(), 'No credentials got returned!');
}
const { password, username } = credentials;
const options: OptionsWithUri = {
method: 'POST',
form: {
username,
password,
},
uri: `${credentials.url}/users/login`,
json: true,
};
try {
const response = await this.helpers.request!(options);
return { token: response.token, userId: response.id };
} catch (error) {
throw new NodeApiError(this.getNode(), error);
}
}
export async function apiRequest(this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions, method: string, endpoint: string, body: object, query?: IDataObject): Promise<any> { // tslint:disable-line:no-any
const credentials = await this.getCredentials('wekanApi');
if (credentials === undefined) {
throw new NodeOperationError(this.getNode(), 'No credentials got returned!');
}
query = query || {};
const { token } = await getAuthorization.call(this, credentials);
const options: OptionsWithUri = {
headers: {
'Accept':'application/json',
'Authorization': `Bearer ${token}`,
},
method,
body,
qs: query,
uri: `${credentials.url}/api/${endpoint}`,
json: true,
};
try {
return await this.helpers.request!(options);
} catch (error) {
if (error.statusCode === 401) {
throw new NodeOperationError(this.getNode(), 'The Wekan credentials are not valid!');
}
throw error;
}
}