mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ Add Onfleet Node & Trigger (#2845)
* feat: added Onfleet nodes Added Onfleet nodes for working with different endpoints like: organizations, administrators, workers, hubs, teams, destinations, recipients, containers and webhooks. * style: fixed typos, arrays uniformity, unnecesary files * refactor: changed add to create in comments and labels * feat: added name field to onfleet trigger node * feat: added team endpoints to onfleet node Added team auto-dispatch and driver time estimate endpoints to Onfleet node * style: remove dots in descriptions and fixed some typos * feat: added fixes according to comments made on the n8n PR added new fixed collections, refactored the code according to comments made on the n8n pr * fix: fixed recipient and destination cretion * docs: added docstrings for format some functions added docstrings for new functions addded for formatting the destination and recipient objects * style: formatting the code according to n8n nodelinter * fix: typos and better descriptions * [INT-510] n8n: Address additional problems from n8n code review (#5) * Fixed some error creating a worker, moving some fields under additional fields collection * Fixed returned values for delete operations, making some changes for style code * Added operational error since required property is not working for dateTime fields * ⚡ Improvements to #2593 * ⚡ Improvements * 🐛 Fix issue with wrong interface * ⚡ Improvements * ⚡ Improvements * ⚡ Minor improvement Co-authored-by: Santiago Botero Ruiz <santiago.botero@devsavant.ai> Co-authored-by: ilsemaj <james.li.upenn@gmail.com> Co-authored-by: Santiago Botero Ruiz <39206812+YokySantiago@users.noreply.github.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
123
packages/nodes-base/nodes/Onfleet/GenericFunctions.ts
Normal file
123
packages/nodes-base/nodes/Onfleet/GenericFunctions.ts
Normal file
@@ -0,0 +1,123 @@
|
||||
import {
|
||||
ICredentialDataDecryptedObject,
|
||||
IDataObject,
|
||||
IExecuteFunctions,
|
||||
IHookFunctions,
|
||||
ILoadOptionsFunctions,
|
||||
INodePropertyOptions,
|
||||
IWebhookFunctions,
|
||||
JsonObject,
|
||||
NodeApiError
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import {
|
||||
OptionsWithUri,
|
||||
} from 'request';
|
||||
|
||||
import * as moment from 'moment-timezone';
|
||||
|
||||
export async function onfleetApiRequest(
|
||||
this: IWebhookFunctions | IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
||||
method: string,
|
||||
resource: string,
|
||||
body: any = {}, // tslint:disable-line:no-any
|
||||
qs?: any, // tslint:disable-line:no-any
|
||||
uri?: string): Promise<any> { // tslint:disable-line:no-any
|
||||
|
||||
const credentials = await this.getCredentials('onfleetApi') as ICredentialDataDecryptedObject;
|
||||
|
||||
const options: OptionsWithUri = {
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'User-Agent': 'n8n-onfleet',
|
||||
},
|
||||
auth: {
|
||||
user: credentials.apiKey as string,
|
||||
pass: '',
|
||||
},
|
||||
method,
|
||||
body,
|
||||
qs,
|
||||
uri: uri || `https://onfleet.com/api/v2/${resource}`,
|
||||
json: true,
|
||||
};
|
||||
try {
|
||||
//@ts-ignore
|
||||
return await this.helpers.request(options);
|
||||
} catch (error) {
|
||||
throw new NodeApiError(this.getNode(), error as JsonObject);
|
||||
}
|
||||
}
|
||||
|
||||
export async function onfleetApiRequestAllItems(
|
||||
this: IWebhookFunctions | IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
|
||||
propertyName: string,
|
||||
method: string,
|
||||
endpoint: string,
|
||||
// tslint:disable-next-line: no-any
|
||||
body: any = {},
|
||||
query: IDataObject = {},
|
||||
): Promise<any> { // tslint:disable-line:no-any
|
||||
|
||||
const returnData: IDataObject[] = [];
|
||||
|
||||
let responseData;
|
||||
|
||||
do {
|
||||
responseData = await onfleetApiRequest.call(this, method, endpoint, body, query);
|
||||
query.lastId = responseData['lastId'];
|
||||
returnData.push.apply(returnData, responseData[propertyName]);
|
||||
} while (
|
||||
responseData['lastId'] !== undefined
|
||||
);
|
||||
|
||||
return returnData;
|
||||
}
|
||||
export const resourceLoaders = {
|
||||
async getTeams(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
try {
|
||||
const teams = await onfleetApiRequest.call(this, 'GET', 'teams') as IDataObject[];
|
||||
return teams.map(({ name = '', id: value = '' }) => ({ name, value })) as INodePropertyOptions[];
|
||||
} catch (error) {
|
||||
return [];
|
||||
}
|
||||
},
|
||||
|
||||
async getWorkers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
try {
|
||||
const workers = await onfleetApiRequest.call(this, 'GET', 'workers') as IDataObject[];
|
||||
return workers.map(({ name = '', id: value = '' }) => ({ name, value })) as INodePropertyOptions[];
|
||||
} catch (error) {
|
||||
return [];
|
||||
}
|
||||
},
|
||||
|
||||
async getAdmins(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
try {
|
||||
const admins = await onfleetApiRequest.call(this, 'GET', 'admins') as IDataObject[];
|
||||
return admins.map(({ name = '', id: value = '' }) => ({ name, value })) as INodePropertyOptions[];
|
||||
} catch (error) {
|
||||
return [];
|
||||
}
|
||||
},
|
||||
|
||||
async getHubs(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
try {
|
||||
const hubs = await onfleetApiRequest.call(this, 'GET', 'hubs') as IDataObject[];
|
||||
return hubs.map(({ name = '', id: value = '' }) => ({ name, value })) as INodePropertyOptions[];
|
||||
} catch (error) {
|
||||
return [];
|
||||
}
|
||||
},
|
||||
|
||||
async getTimezones(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||
const returnData = [] as INodePropertyOptions[];
|
||||
for (const timezone of moment.tz.names()) {
|
||||
returnData.push({
|
||||
name: timezone,
|
||||
value: timezone,
|
||||
});
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user