2020-08-15 14:25:15 -07:00
|
|
|
import {
|
|
|
|
OptionsWithUri,
|
2020-08-15 14:26:01 -07:00
|
|
|
} from 'request';
|
2020-08-15 14:25:15 -07:00
|
|
|
|
|
|
|
import {
|
|
|
|
IExecuteFunctions,
|
|
|
|
IExecuteSingleFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
} from 'n8n-core';
|
|
|
|
|
|
|
|
import {
|
|
|
|
IDataObject,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export async function googleApiRequest(this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions, method: string, resource: string, body: any = {}, qs: IDataObject = {}, uri?: string, headers: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
uri: uri || `https://people.googleapis.com/v1${resource}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-08-15 14:25:15 -07:00
|
|
|
};
|
|
|
|
try {
|
|
|
|
if (Object.keys(headers).length !== 0) {
|
|
|
|
options.headers = Object.assign({}, options.headers, headers);
|
|
|
|
}
|
|
|
|
if (Object.keys(body).length === 0) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
|
|
|
|
//@ts-ignore
|
|
|
|
return await this.helpers.requestOAuth2.call(this, 'googleContactsOAuth2Api', options);
|
|
|
|
} catch (error) {
|
|
|
|
if (error.response && error.response.body && error.response.body.error) {
|
|
|
|
|
|
|
|
let errors;
|
|
|
|
|
|
|
|
if (error.response.body.error.errors) {
|
|
|
|
|
|
|
|
errors = error.response.body.error.errors;
|
|
|
|
|
|
|
|
errors = errors.map((e: IDataObject) => e.message).join('|');
|
|
|
|
|
|
|
|
} else {
|
|
|
|
errors = error.response.body.error.message;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try to return the error prettier
|
|
|
|
throw new Error(
|
|
|
|
`Google Contacts error response [${error.statusCode}]: ${errors}`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-15 14:26:01 -07:00
|
|
|
export async function googleApiRequestAllItems(this: IExecuteFunctions | ILoadOptionsFunctions, propertyName: string, method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
2020-08-15 14:25:15 -07:00
|
|
|
|
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
query.pageSize = 100;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await googleApiRequest.call(this, method, endpoint, body, query);
|
|
|
|
query.pageToken = responseData['nextPageToken'];
|
|
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
|
|
|
} while (
|
|
|
|
responseData['nextPageToken'] !== undefined &&
|
|
|
|
responseData['nextPageToken'] !== ''
|
|
|
|
);
|
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
2020-08-15 14:26:01 -07:00
|
|
|
export const allFields = [
|
2020-08-15 14:25:15 -07:00
|
|
|
'addresses',
|
|
|
|
'biographies',
|
|
|
|
'birthdays',
|
|
|
|
'coverPhotos',
|
|
|
|
'emailAddresses',
|
|
|
|
'events',
|
|
|
|
'genders',
|
|
|
|
'imClients',
|
|
|
|
'interests',
|
|
|
|
'locales',
|
|
|
|
'memberships',
|
|
|
|
'metadata',
|
|
|
|
'names',
|
|
|
|
'nicknames',
|
|
|
|
'occupations',
|
|
|
|
'organizations',
|
|
|
|
'phoneNumbers',
|
|
|
|
'photos',
|
|
|
|
'relations',
|
|
|
|
'residences',
|
|
|
|
'sipAddresses',
|
|
|
|
'skills',
|
|
|
|
'urls',
|
|
|
|
'userDefined',
|
|
|
|
];
|
|
|
|
|
2020-08-15 14:26:01 -07:00
|
|
|
export function cleanData(responseData: any) { // tslint:disable-line:no-any
|
2020-08-15 14:25:15 -07:00
|
|
|
const fields = ['emailAddresses', 'phoneNumbers', 'relations', 'events', 'addresses'];
|
|
|
|
const newResponseData = [];
|
|
|
|
if (!Array.isArray(responseData)) {
|
|
|
|
responseData = [responseData];
|
|
|
|
}
|
2020-08-15 14:26:01 -07:00
|
|
|
for (let y = 0; y < responseData.length; y++) {
|
|
|
|
const object: { [key: string]: any } = {}; // tslint:disable-line:no-any
|
2020-08-15 14:25:15 -07:00
|
|
|
for (const key of Object.keys(responseData[y])) {
|
|
|
|
if (key === 'metadata') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (key === 'photos') {
|
|
|
|
responseData[y][key] = responseData[y][key].map(((photo: IDataObject) => photo.url));
|
|
|
|
}
|
|
|
|
if (key === 'names') {
|
|
|
|
delete responseData[y][key][0].metadata;
|
|
|
|
responseData[y][key] = responseData[y][key][0];
|
|
|
|
}
|
|
|
|
if (key === 'memberships') {
|
|
|
|
for (let i = 0; i < responseData[y][key].length; i++) {
|
|
|
|
responseData[y][key][i] = responseData[y][key][i].metadata.source.id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (key === 'birthdays') {
|
|
|
|
for (let i = 0; i < responseData[y][key].length; i++) {
|
|
|
|
const { year, month, day } = responseData[y][key][i].date;
|
|
|
|
responseData[y][key][i] = `${month}/${day}/${year}`;
|
|
|
|
}
|
|
|
|
responseData[y][key] = responseData[y][key][0];
|
|
|
|
}
|
|
|
|
if (key === 'userDefined' || key === 'organizations' || key === 'biographies') {
|
|
|
|
for (let i = 0; i < responseData[y][key].length; i++) {
|
|
|
|
delete responseData[y][key][i].metadata;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (fields.includes(key)) {
|
2020-08-15 14:26:01 -07:00
|
|
|
const value: { [key: string]: any } = {}; // tslint:disable-line:no-any
|
2020-08-15 14:25:15 -07:00
|
|
|
for (const data of responseData[y][key]) {
|
|
|
|
let result;
|
|
|
|
if (value[data.type] === undefined) {
|
|
|
|
value[data.type] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (key === 'relations') {
|
|
|
|
result = data.person;
|
|
|
|
} else if (key === 'events') {
|
|
|
|
const { year, month, day } = data.date;
|
|
|
|
result = `${month}/${day}/${year}`;
|
|
|
|
} else if (key === 'addresses') {
|
|
|
|
delete data.metadata;
|
|
|
|
result = data;
|
|
|
|
} else {
|
|
|
|
result = data.value;
|
|
|
|
}
|
|
|
|
value[data.type].push(result);
|
|
|
|
delete data.type;
|
|
|
|
}
|
|
|
|
if (Object.keys(value).length > 0) {
|
|
|
|
object[key] = value;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
object[key] = responseData[y][key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
newResponseData.push(object);
|
|
|
|
}
|
|
|
|
return newResponseData;
|
|
|
|
}
|