2023-01-27 03:22:44 -08:00
|
|
|
import type { OptionsWithUri } from 'request';
|
2020-05-30 12:09:04 -07:00
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
2020-05-30 12:09:04 -07:00
|
|
|
|
2023-02-27 19:39:43 -08:00
|
|
|
import type { ICredentialTestFunctions, IDataObject, JsonObject } from 'n8n-workflow';
|
2023-01-27 03:22:44 -08:00
|
|
|
import { NodeApiError } from 'n8n-workflow';
|
2020-05-30 12:09:04 -07:00
|
|
|
|
2022-04-08 14:32:08 -07:00
|
|
|
import moment from 'moment-timezone';
|
2020-05-30 12:09:04 -07:00
|
|
|
|
2022-04-08 14:32:08 -07:00
|
|
|
import jwt from 'jsonwebtoken';
|
2020-05-30 12:09:04 -07:00
|
|
|
|
2021-12-24 07:12:18 -08:00
|
|
|
export interface IGoogleAuthCredentials {
|
|
|
|
delegatedEmail?: string;
|
|
|
|
email: string;
|
|
|
|
inpersonate: boolean;
|
|
|
|
privateKey: string;
|
|
|
|
}
|
|
|
|
|
2023-01-13 09:11:56 -08:00
|
|
|
export async function getAccessToken(
|
|
|
|
this:
|
|
|
|
| IExecuteFunctions
|
|
|
|
| IExecuteSingleFunctions
|
|
|
|
| ILoadOptionsFunctions
|
|
|
|
| ICredentialTestFunctions,
|
|
|
|
credentials: IGoogleAuthCredentials,
|
|
|
|
): Promise<IDataObject> {
|
|
|
|
//https://developers.google.com/identity/protocols/oauth2/service-account#httprest
|
|
|
|
|
|
|
|
const scopes = [
|
|
|
|
'https://www.googleapis.com/auth/drive',
|
|
|
|
'https://www.googleapis.com/auth/drive.file',
|
|
|
|
'https://www.googleapis.com/auth/spreadsheets',
|
|
|
|
];
|
|
|
|
|
|
|
|
const now = moment().unix();
|
|
|
|
|
|
|
|
credentials.email = credentials.email.trim();
|
|
|
|
const privateKey = credentials.privateKey.replace(/\\n/g, '\n').trim();
|
|
|
|
|
|
|
|
const signature = jwt.sign(
|
|
|
|
{
|
|
|
|
iss: credentials.email,
|
2023-01-19 04:37:19 -08:00
|
|
|
sub: credentials.delegatedEmail || credentials.email,
|
2023-01-13 09:11:56 -08:00
|
|
|
scope: scopes.join(' '),
|
|
|
|
aud: 'https://oauth2.googleapis.com/token',
|
|
|
|
iat: now,
|
|
|
|
exp: now + 3600,
|
|
|
|
},
|
|
|
|
privateKey,
|
|
|
|
{
|
|
|
|
algorithm: 'RS256',
|
|
|
|
header: {
|
|
|
|
kid: privateKey,
|
|
|
|
typ: 'JWT',
|
|
|
|
alg: 'RS256',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
|
|
},
|
|
|
|
method: 'POST',
|
|
|
|
form: {
|
|
|
|
grant_type: 'urn:ietf:params:oauth:grant-type:jwt-bearer',
|
|
|
|
assertion: signature,
|
|
|
|
},
|
|
|
|
uri: 'https://oauth2.googleapis.com/token',
|
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
return this.helpers.request(options);
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function googleApiRequest(
|
|
|
|
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
headers: IDataObject = {},
|
|
|
|
): Promise<any> {
|
|
|
|
const authenticationMethod = this.getNodeParameter(
|
|
|
|
'authentication',
|
|
|
|
0,
|
|
|
|
'serviceAccount',
|
|
|
|
) as string;
|
2020-05-30 12:09:04 -07:00
|
|
|
const options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs,
|
2023-01-19 04:37:19 -08:00
|
|
|
uri: uri || `https://sheets.googleapis.com${resource}`,
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-05-30 12:09:04 -07:00
|
|
|
};
|
|
|
|
try {
|
|
|
|
if (Object.keys(headers).length !== 0) {
|
|
|
|
options.headers = Object.assign({}, options.headers, headers);
|
|
|
|
}
|
2023-02-27 19:39:43 -08:00
|
|
|
if (Object.keys(body as IDataObject).length === 0) {
|
2020-05-30 12:09:04 -07:00
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (authenticationMethod === 'serviceAccount') {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('googleApi');
|
2020-05-30 12:09:04 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
const { access_token } = await getAccessToken.call(
|
|
|
|
this,
|
|
|
|
credentials as unknown as IGoogleAuthCredentials,
|
|
|
|
);
|
2020-05-30 12:09:04 -07:00
|
|
|
|
|
|
|
options.headers!.Authorization = `Bearer ${access_token}`;
|
|
|
|
return await this.helpers.request(options);
|
|
|
|
} else {
|
2020-06-01 17:48:34 -07:00
|
|
|
return await this.helpers.requestOAuth2.call(this, 'googleSheetsOAuth2Api', options);
|
2020-05-30 12:09:04 -07:00
|
|
|
}
|
|
|
|
} catch (error) {
|
2021-06-22 10:59:27 -07:00
|
|
|
if (error.code === 'ERR_OSSL_PEM_NO_START_LINE') {
|
|
|
|
error.statusCode = '401';
|
|
|
|
}
|
|
|
|
|
2023-02-27 19:39:43 -08:00
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
2020-05-30 12:09:04 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function googleApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-05-30 12:09:04 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
query.maxResults = 100;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await googleApiRequest.call(this, method, endpoint, body, query);
|
2022-12-02 12:54:28 -08:00
|
|
|
query.pageToken = responseData.nextPageToken;
|
2023-02-27 19:39:43 -08:00
|
|
|
returnData.push.apply(returnData, responseData[propertyName] as IDataObject[]);
|
2022-12-02 12:54:28 -08:00
|
|
|
} while (responseData.nextPageToken !== undefined && responseData.nextPageToken !== '');
|
2020-05-30 12:09:04 -07:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
2021-04-03 01:04:22 -07:00
|
|
|
// Hex to RGB
|
|
|
|
export function hexToRgb(hex: string) {
|
|
|
|
// Expand shorthand form (e.g. "03F") to full form (e.g. "0033FF")
|
|
|
|
const shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
|
|
|
|
hex = hex.replace(shorthandRegex, (m, r, g, b) => {
|
2023-01-13 09:11:56 -08:00
|
|
|
// eslint-disable-next-line @typescript-eslint/restrict-plus-operands
|
2021-04-03 01:04:22 -07:00
|
|
|
return r + r + g + g + b + b;
|
|
|
|
});
|
|
|
|
|
|
|
|
const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
|
2022-08-17 08:50:24 -07:00
|
|
|
|
|
|
|
if (result) {
|
|
|
|
return {
|
|
|
|
red: parseInt(result[1], 16),
|
|
|
|
green: parseInt(result[2], 16),
|
|
|
|
blue: parseInt(result[3], 16),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
2021-06-22 10:59:27 -07:00
|
|
|
}
|