mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
7ce7285f7a
* 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>
86 lines
2.4 KiB
TypeScript
86 lines
2.4 KiB
TypeScript
import {
|
|
IExecuteFunctions,
|
|
ILoadOptionsFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
IHookFunctions,
|
|
NodeApiError,
|
|
} from 'n8n-workflow';
|
|
|
|
export async function kitemakerRequest(
|
|
this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions,
|
|
body: IDataObject = {},
|
|
) {
|
|
const { personalAccessToken } = await this.getCredentials('kitemakerApi') as { personalAccessToken: string };
|
|
|
|
const options = {
|
|
headers: {
|
|
Authorization: `Bearer ${personalAccessToken}`,
|
|
},
|
|
method: 'POST',
|
|
body,
|
|
uri: 'https://toil.kitemaker.co/developers/graphql',
|
|
json: true,
|
|
};
|
|
|
|
const responseData = await this.helpers.request!.call(this, options);
|
|
|
|
if (responseData.errors) {
|
|
throw new NodeApiError(this.getNode(), responseData);
|
|
}
|
|
|
|
return responseData;
|
|
}
|
|
|
|
export async function kitemakerRequestAllItems(
|
|
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
|
body: { query: string; variables: { [key: string]: string } },
|
|
) {
|
|
const resource = this.getNodeParameter('resource', 0) as 'space' | 'user' | 'workItem';
|
|
const [group, items] = getGroupAndItems(resource);
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', 0, false) as boolean;
|
|
const limit = this.getNodeParameter('limit', 0, 0) as number;
|
|
|
|
const returnData: IDataObject[] = [];
|
|
let responseData;
|
|
|
|
do {
|
|
responseData = await kitemakerRequest.call(this, body);
|
|
body.variables.cursor = responseData.data[group].cursor;
|
|
returnData.push(...responseData.data[group][items]);
|
|
|
|
if (!returnAll && returnData.length > limit) {
|
|
return returnData.slice(0, limit);
|
|
}
|
|
|
|
} while (responseData.data[group].hasMore);
|
|
|
|
return returnData;
|
|
}
|
|
|
|
function getGroupAndItems(resource: 'space' | 'user' | 'workItem') {
|
|
const map: { [key: string]: { [key: string]: string } } = {
|
|
space: { group: 'organization', items: 'spaces' },
|
|
user: { group: 'organization', items: 'users' },
|
|
workItem: { group: 'workItems', items: 'workItems' },
|
|
};
|
|
|
|
return [
|
|
map[resource]['group'],
|
|
map[resource]['items'],
|
|
];
|
|
}
|
|
|
|
export function createLoadOptions(
|
|
resources: Array<{ name?: string; username?: string; title?: string; id: string }>,
|
|
): Array<{ name: string; value: string }> {
|
|
return resources.map(option => {
|
|
if (option.username) return ({ name: option.username, value: option.id });
|
|
if (option.title) return ({ name: option.title, value: option.id });
|
|
return ({ name: option.name ?? 'Unnamed', value: option.id });
|
|
});
|
|
}
|