mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
⚡ Add self-hosted support to ERPNext (#1679)
This commit is contained in:
parent
7f0f8deb6d
commit
b6d45e30ef
|
@ -20,13 +20,51 @@ export class ERPNextApi implements ICredentialType {
|
||||||
type: 'string' as NodePropertyTypes,
|
type: 'string' as NodePropertyTypes,
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Environment',
|
||||||
|
name: 'environment',
|
||||||
|
type: 'options' as NodePropertyTypes,
|
||||||
|
default: 'cloudHosted',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'Cloud-hosted',
|
||||||
|
value: 'cloudHosted',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Self-hosted',
|
||||||
|
value: 'selfHosted',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Subdomain',
|
displayName: 'Subdomain',
|
||||||
name: 'subdomain',
|
name: 'subdomain',
|
||||||
type: 'string' as NodePropertyTypes,
|
type: 'string' as NodePropertyTypes,
|
||||||
default: '',
|
default: '',
|
||||||
placeholder: 'n8n',
|
placeholder: 'n8n',
|
||||||
description: 'ERPNext subdomain. For instance, entering n8n will make the url look like: https://n8n.erpnext.com/.',
|
description: 'Subdomain of cloud-hosted ERPNext instance. For example, "n8n" is the subdomain in: <code>https://n8n.erpnext.com</code>',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
environment: [
|
||||||
|
'cloudHosted',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Domain',
|
||||||
|
name: 'domain',
|
||||||
|
type: 'string' as NodePropertyTypes,
|
||||||
|
default: '',
|
||||||
|
placeholder: 'https://www.mydomain.com',
|
||||||
|
description: 'Fully qualified domain name of self-hosted ERPNext instance.',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
environment: [
|
||||||
|
'selfHosted',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,8 +24,8 @@ export async function erpNextApiRequest(
|
||||||
uri?: string,
|
uri?: string,
|
||||||
option: IDataObject = {},
|
option: IDataObject = {},
|
||||||
) {
|
) {
|
||||||
|
const credentials = this.getCredentials('erpNextApi') as ERPNextApiCredentials;
|
||||||
const credentials = this.getCredentials('erpNextApi');
|
const baseUrl = getBaseUrl(credentials);
|
||||||
|
|
||||||
if (credentials === undefined) {
|
if (credentials === undefined) {
|
||||||
throw new NodeOperationError(this.getNode(), 'No credentials got returned!');
|
throw new NodeOperationError(this.getNode(), 'No credentials got returned!');
|
||||||
|
@ -40,7 +40,7 @@ export async function erpNextApiRequest(
|
||||||
method,
|
method,
|
||||||
body,
|
body,
|
||||||
qs: query,
|
qs: query,
|
||||||
uri: uri || `https://${credentials.subdomain}.erpnext.com${resource}`,
|
uri: uri || `${baseUrl}${resource}`,
|
||||||
json: true,
|
json: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -56,13 +56,12 @@ export async function erpNextApiRequest(
|
||||||
try {
|
try {
|
||||||
return await this.helpers.request!(options);
|
return await this.helpers.request!(options);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
|
||||||
if (error.statusCode === 403) {
|
if (error.statusCode === 403) {
|
||||||
throw new NodeApiError(this.getNode(), { message: `DocType unavailable.` });
|
throw new NodeApiError(this.getNode(), { message: 'DocType unavailable.' });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (error.statusCode === 307) {
|
if (error.statusCode === 307) {
|
||||||
throw new NodeApiError(this.getNode(), { message:`Please ensure the subdomain is correct.` });
|
throw new NodeApiError(this.getNode(), { message: 'Please ensure the subdomain is correct.' });
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new NodeApiError(this.getNode(), error);
|
throw new NodeApiError(this.getNode(), error);
|
||||||
|
@ -95,3 +94,19 @@ export async function erpNextApiRequestAllItems(
|
||||||
|
|
||||||
return returnData;
|
return returnData;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the base API URL based on the user's environment.
|
||||||
|
*/
|
||||||
|
const getBaseUrl = ({ environment, domain, subdomain }: ERPNextApiCredentials) =>
|
||||||
|
environment === 'cloudHosted'
|
||||||
|
? `https://${subdomain}.erpnext.com`
|
||||||
|
: domain;
|
||||||
|
|
||||||
|
type ERPNextApiCredentials = {
|
||||||
|
apiKey: string;
|
||||||
|
apiSecret: string;
|
||||||
|
environment: 'cloudHosted' | 'selfHosted';
|
||||||
|
subdomain?: string;
|
||||||
|
domain?: string;
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in a new issue