2022-08-17 08:50:24 -07:00
|
|
|
import { OptionsWithUri } from 'request';
|
|
|
|
|
|
|
|
import { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
|
|
|
|
|
|
|
import { IDataObject, IPollFunctions, NodeApiError, NodeOperationError } from 'n8n-workflow';
|
2020-06-06 11:57:42 -07:00
|
|
|
|
2022-04-08 14:32:08 -07:00
|
|
|
import moment from 'moment-timezone';
|
2020-06-06 11:57:42 -07:00
|
|
|
|
2022-04-08 14:32:08 -07:00
|
|
|
import jwt from 'jsonwebtoken';
|
2020-06-06 11:57:42 -07:00
|
|
|
|
2021-12-24 07:12:18 -08:00
|
|
|
interface IGoogleAuthCredentials {
|
|
|
|
delegatedEmail?: string;
|
|
|
|
email: string;
|
|
|
|
inpersonate: boolean;
|
|
|
|
privateKey: string;
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function googleApiRequest(
|
|
|
|
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions | IPollFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
option: IDataObject = {},
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
): Promise<any> {
|
|
|
|
const authenticationMethod = this.getNodeParameter(
|
|
|
|
'authentication',
|
|
|
|
0,
|
|
|
|
'serviceAccount',
|
|
|
|
) as string;
|
2020-06-06 11:57:42 -07:00
|
|
|
|
|
|
|
let options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
uri: uri || `https://www.googleapis.com${resource}`,
|
|
|
|
json: true,
|
|
|
|
};
|
2021-12-24 01:48:23 -08:00
|
|
|
|
2020-06-06 11:57:42 -07:00
|
|
|
options = Object.assign({}, options, option);
|
2021-10-21 11:20:24 -07:00
|
|
|
|
2020-06-06 11:57:42 -07:00
|
|
|
try {
|
|
|
|
if (Object.keys(body).length === 0) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (authenticationMethod === 'serviceAccount') {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('googleApi');
|
2020-06-06 11:57:42 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
const { access_token } = await getAccessToken.call(
|
|
|
|
this,
|
|
|
|
credentials as unknown as IGoogleAuthCredentials,
|
|
|
|
);
|
2020-06-06 11:57:42 -07:00
|
|
|
|
|
|
|
options.headers!.Authorization = `Bearer ${access_token}`;
|
2021-02-15 00:02:47 -08:00
|
|
|
return await this.helpers.request!(options);
|
2020-06-06 11:57:42 -07:00
|
|
|
} else {
|
|
|
|
//@ts-ignore
|
|
|
|
return await this.helpers.requestOAuth2.call(this, 'googleDriveOAuth2Api', options);
|
|
|
|
}
|
|
|
|
} catch (error) {
|
2021-06-22 10:59:27 -07:00
|
|
|
if (error.code === 'ERR_OSSL_PEM_NO_START_LINE') {
|
|
|
|
error.statusCode = '401';
|
|
|
|
}
|
|
|
|
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-06-06 11:57:42 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function googleApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions | IPollFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
// tslint:disable-next-line:no-any
|
|
|
|
): Promise<any> {
|
2020-06-06 11:57:42 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
2021-10-21 11:20:24 -07:00
|
|
|
query.maxResults = query.maxResults || 100;
|
|
|
|
query.pageSize = query.pageSize || 100;
|
2020-06-06 11:57:42 -07:00
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await googleApiRequest.call(this, method, endpoint, body, query);
|
|
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
2022-08-17 08:50:24 -07:00
|
|
|
} while (responseData['nextPageToken'] !== undefined && responseData['nextPageToken'] !== '');
|
2020-06-06 11:57:42 -07:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
function getAccessToken(
|
|
|
|
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions | IPollFunctions,
|
|
|
|
credentials: IGoogleAuthCredentials,
|
|
|
|
): Promise<IDataObject> {
|
2020-06-06 11:57:42 -07:00
|
|
|
//https://developers.google.com/identity/protocols/oauth2/service-account#httprest
|
|
|
|
|
|
|
|
const scopes = [
|
|
|
|
'https://www.googleapis.com/auth/drive',
|
|
|
|
'https://www.googleapis.com/auth/drive.appdata',
|
|
|
|
'https://www.googleapis.com/auth/drive.photos.readonly',
|
|
|
|
];
|
|
|
|
|
|
|
|
const now = moment().unix();
|
|
|
|
|
2021-12-24 07:12:18 -08:00
|
|
|
credentials.email = credentials.email.trim();
|
|
|
|
const privateKey = (credentials.privateKey as string).replace(/\\n/g, '\n').trim();
|
2021-12-24 01:48:23 -08:00
|
|
|
|
2020-06-06 11:57:42 -07:00
|
|
|
const signature = jwt.sign(
|
|
|
|
{
|
2022-08-17 08:50:24 -07:00
|
|
|
iss: credentials.email as string,
|
|
|
|
sub: credentials.delegatedEmail || (credentials.email as string),
|
|
|
|
scope: scopes.join(' '),
|
|
|
|
aud: `https://oauth2.googleapis.com/token`,
|
|
|
|
iat: now,
|
|
|
|
exp: now + 3600,
|
2020-06-06 11:57:42 -07:00
|
|
|
},
|
2021-12-24 01:48:23 -08:00
|
|
|
privateKey as string,
|
2020-06-06 11:57:42 -07:00
|
|
|
{
|
2020-06-13 04:47:49 -07:00
|
|
|
algorithm: 'RS256',
|
|
|
|
header: {
|
2022-08-17 08:50:24 -07:00
|
|
|
kid: privateKey as string,
|
|
|
|
typ: 'JWT',
|
|
|
|
alg: 'RS256',
|
2020-06-13 04:47:49 -07:00
|
|
|
},
|
2020-10-22 09:00:28 -07:00
|
|
|
},
|
2020-06-13 04:47:49 -07:00
|
|
|
);
|
2020-06-06 11:57:42 -07:00
|
|
|
|
2020-06-13 04:47:49 -07:00
|
|
|
const options: OptionsWithUri = {
|
2020-06-06 11:57:42 -07:00
|
|
|
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',
|
2020-10-22 06:46:03 -07:00
|
|
|
json: true,
|
2020-06-06 11:57:42 -07:00
|
|
|
};
|
|
|
|
|
2021-02-15 00:02:47 -08:00
|
|
|
return this.helpers.request!(options);
|
2020-06-06 11:57:42 -07:00
|
|
|
}
|
2021-10-21 11:20:24 -07:00
|
|
|
|
|
|
|
export function extractId(url: string): string {
|
|
|
|
if (url.includes('/d/')) {
|
|
|
|
//https://docs.google.com/document/d/1TUJGUf5HUv9e6MJBzcOsPruxXDeGMnGYTBWfkMagcg4/edit
|
|
|
|
const data = url.match(/[-\w]{25,}/);
|
|
|
|
if (Array.isArray(data)) {
|
|
|
|
return data[0];
|
|
|
|
}
|
|
|
|
} else if (url.includes('/folders/')) {
|
|
|
|
//https://drive.google.com/drive/u/0/folders/19MqnruIXju5sAWYD3J71im1d2CBJkZzy
|
|
|
|
return url.split('/folders/')[1];
|
|
|
|
}
|
|
|
|
return url;
|
|
|
|
}
|