mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
0b08be1c0b
* feat(Emelia Node): Add campaign duplication feature * ⚡ small ui fixes, added credential test, fixed nodelinter issues * ⚡ Improvements * ⚡ Updated wording for Number operations on IF-Node (#3065) * fix(Google Tasks Node): Fix "Show Completed" option and hide title field where not needed (#2741) * 🐛 Google Tasks: Fix showCompleted * ⚡ Improvements Co-authored-by: ricardo <ricardoespinoza105@gmail.com> * feat(Mocean Node): Add "Delivery Report URL" option and credential tests (#3075) * add dlr url column add dlr url(delivery report URl) column. Allow user set the endpoint to receive the report * update update delivery report url description * ⚡ fixed nodelinter issues, added credential test, replaced icon * ⚡ Improvements Co-authored-by: d3no <d3no520@gmail.com> Co-authored-by: Michael Kret <michael.k@radency.com> * ⚡ Normalize name Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jonathan Bennetts <jonathan.bennetts@gmail.com> Co-authored-by: Tom <19203795+that-one-tom@users.noreply.github.com> Co-authored-by: Ricardo Espinoza <ricardo@n8n.io> Co-authored-by: d3no <d3no520@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
142 lines
2.8 KiB
TypeScript
142 lines
2.8 KiB
TypeScript
import {
|
|
IExecuteFunctions,
|
|
ILoadOptionsFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
ICredentialsDecrypted,
|
|
ICredentialTestFunctions,
|
|
IHookFunctions,
|
|
INodeCredentialTestResult,
|
|
INodePropertyOptions,
|
|
JsonObject,
|
|
NodeApiError,
|
|
} from 'n8n-workflow';
|
|
|
|
/**
|
|
* Make an authenticated GraphQL request to Emelia.
|
|
*/
|
|
export async function emeliaGraphqlRequest(
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
body: object = {},
|
|
) {
|
|
const response = await emeliaApiRequest.call(this, 'POST', '/graphql', body);
|
|
|
|
if (response.errors) {
|
|
throw new NodeApiError(this.getNode(), response);
|
|
}
|
|
|
|
return response;
|
|
}
|
|
|
|
/**
|
|
* Make an authenticated REST API request to Emelia, used for trigger node.
|
|
*/
|
|
export async function emeliaApiRequest(
|
|
this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions,
|
|
method: string,
|
|
endpoint: string,
|
|
body: object = {},
|
|
qs: object = {},
|
|
) {
|
|
const { apiKey } = await this.getCredentials('emeliaApi') as { apiKey: string };
|
|
|
|
const options = {
|
|
headers: {
|
|
Authorization: apiKey,
|
|
},
|
|
method,
|
|
body,
|
|
qs,
|
|
uri: `https://graphql.emelia.io${endpoint}`,
|
|
json: true,
|
|
};
|
|
|
|
try {
|
|
return await this.helpers.request!.call(this, options);
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), (error as JsonObject));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Load resources so that the user can select them easily.
|
|
*/
|
|
export async function loadResource(
|
|
this: ILoadOptionsFunctions,
|
|
resource: 'campaign' | 'contactList',
|
|
): Promise<INodePropertyOptions[]> {
|
|
const mapping: { [key in 'campaign' | 'contactList']: { query: string, key: string } } = {
|
|
campaign: {
|
|
query: `
|
|
query GetCampaigns {
|
|
campaigns {
|
|
_id
|
|
name
|
|
}
|
|
}`,
|
|
key: 'campaigns',
|
|
},
|
|
contactList: {
|
|
query: `
|
|
query GetContactLists {
|
|
contact_lists {
|
|
_id
|
|
name
|
|
}
|
|
}`,
|
|
key: 'contact_lists',
|
|
},
|
|
};
|
|
|
|
const responseData = await emeliaGraphqlRequest.call(this, { query: mapping[resource].query });
|
|
|
|
return responseData.data[mapping[resource].key].map((campaign: { name: string, _id: string }) => ({
|
|
name: campaign.name,
|
|
value: campaign._id,
|
|
}));
|
|
}
|
|
|
|
export async function emeliaApiTest(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise<INodeCredentialTestResult> {
|
|
const credentials = credential.data;
|
|
|
|
const body = {
|
|
query: `
|
|
query all_campaigns {
|
|
all_campaigns {
|
|
_id
|
|
name
|
|
status
|
|
createdAt
|
|
stats {
|
|
mailsSent
|
|
}
|
|
}
|
|
}`,
|
|
operationName: 'all_campaigns',
|
|
};
|
|
|
|
const options = {
|
|
headers: {
|
|
Authorization: credentials?.apiKey,
|
|
},
|
|
method: 'POST',
|
|
body,
|
|
uri: `https://graphql.emelia.io/graphql`,
|
|
json: true,
|
|
};
|
|
|
|
try {
|
|
await this.helpers.request!(options);
|
|
} catch (error) {
|
|
return {
|
|
status: 'Error',
|
|
message: `Connection details not valid: ${(error as JsonObject).message}`,
|
|
};
|
|
}
|
|
return {
|
|
status: 'OK',
|
|
message: 'Authentication successful!',
|
|
};
|
|
}
|