2022-08-17 08:50:24 -07:00
|
|
|
import { OptionsWithUri } from 'request';
|
2021-06-27 02:48:24 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
2021-06-27 02:48:24 -07:00
|
|
|
|
2022-11-08 06:28:21 -08:00
|
|
|
import { IDataObject, NodeApiError } from 'n8n-workflow';
|
2021-06-27 02:48:24 -07:00
|
|
|
|
2022-04-08 14:32:08 -07:00
|
|
|
import moment from 'moment-timezone';
|
2021-06-27 02:48:24 -07:00
|
|
|
|
2022-04-08 14:32:08 -07:00
|
|
|
import jwt from 'jsonwebtoken';
|
2021-06-27 02:48:24 -07:00
|
|
|
|
2021-12-24 07:12:18 -08:00
|
|
|
interface IGoogleAuthCredentials {
|
|
|
|
delegatedEmail?: string;
|
|
|
|
email: string;
|
|
|
|
inpersonate: boolean;
|
|
|
|
privateKey: string;
|
|
|
|
}
|
|
|
|
|
2021-06-27 02:48:24 -07:00
|
|
|
export async function googleApiRequest(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
|
|
|
body: IDataObject = {},
|
|
|
|
qs?: IDataObject,
|
|
|
|
uri?: string,
|
|
|
|
) {
|
2022-08-17 08:50:24 -07:00
|
|
|
const authenticationMethod = this.getNodeParameter(
|
|
|
|
'authentication',
|
|
|
|
0,
|
|
|
|
'serviceAccount',
|
|
|
|
) as string;
|
2021-06-27 02:48:24 -07:00
|
|
|
|
|
|
|
const options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
uri: uri || `https://docs.googleapis.com/v1${endpoint}`,
|
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!Object.keys(body).length) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
if (authenticationMethod === 'serviceAccount') {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('googleApi');
|
2021-06-27 02:48:24 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
const { access_token } = await getAccessToken.call(
|
|
|
|
this,
|
|
|
|
credentials as unknown as IGoogleAuthCredentials,
|
|
|
|
);
|
2021-06-27 02:48:24 -07:00
|
|
|
|
|
|
|
options.headers!.Authorization = `Bearer ${access_token}`;
|
|
|
|
return await this.helpers.request!(options);
|
|
|
|
} else {
|
|
|
|
//@ts-ignore
|
|
|
|
return await this.helpers.requestOAuth2.call(this, 'googleDocsOAuth2Api', options);
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
throw new NodeApiError(this.getNode(), error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function googleApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
|
|
|
body: IDataObject = {},
|
|
|
|
qs?: IDataObject,
|
|
|
|
uri?: string,
|
|
|
|
): Promise<any> {
|
2021-06-27 02:48:24 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
const query: IDataObject = { ...qs };
|
|
|
|
query.maxResults = 100;
|
|
|
|
query.pageSize = 100;
|
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await googleApiRequest.call(this, method, endpoint, body, query, uri);
|
2022-12-02 12:54:28 -08:00
|
|
|
query.pageToken = responseData.nextPageToken;
|
2021-06-27 02:48:24 -07:00
|
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
2022-12-02 12:54:28 -08:00
|
|
|
} while (responseData.nextPageToken !== undefined && responseData.nextPageToken !== '');
|
2021-06-27 02:48:24 -07:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
2022-12-02 12:54:28 -08:00
|
|
|
async function getAccessToken(
|
2022-08-17 08:50:24 -07:00
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
credentials: IGoogleAuthCredentials,
|
|
|
|
): Promise<IDataObject> {
|
2021-06-27 02:48:24 -07:00
|
|
|
//https://developers.google.com/identity/protocols/oauth2/service-account#httprest
|
|
|
|
|
|
|
|
const scopes = [
|
|
|
|
'https://www.googleapis.com/auth/documents',
|
|
|
|
'https://www.googleapis.com/auth/drive',
|
|
|
|
'https://www.googleapis.com/auth/drive.file',
|
|
|
|
];
|
|
|
|
|
|
|
|
const now = moment().unix();
|
|
|
|
|
2021-12-24 07:12:18 -08:00
|
|
|
credentials.email = credentials.email.trim();
|
2022-12-02 12:54:28 -08:00
|
|
|
const privateKey = credentials.privateKey.replace(/\\n/g, '\n').trim();
|
2021-12-24 01:48:23 -08:00
|
|
|
|
2021-06-27 02:48:24 -07:00
|
|
|
const signature = jwt.sign(
|
|
|
|
{
|
2022-12-02 12:54:28 -08:00
|
|
|
iss: credentials.email,
|
|
|
|
sub: credentials.delegatedEmail || credentials.email,
|
2022-08-17 08:50:24 -07:00
|
|
|
scope: scopes.join(' '),
|
|
|
|
aud: `https://oauth2.googleapis.com/token`,
|
|
|
|
iat: now,
|
|
|
|
exp: now + 3600,
|
2021-06-27 02:48:24 -07:00
|
|
|
},
|
2022-12-02 12:54:28 -08:00
|
|
|
privateKey,
|
2021-06-27 02:48:24 -07:00
|
|
|
{
|
|
|
|
algorithm: 'RS256',
|
|
|
|
header: {
|
2022-12-02 12:54:28 -08:00
|
|
|
kid: privateKey,
|
2022-08-17 08:50:24 -07:00
|
|
|
typ: 'JWT',
|
|
|
|
alg: 'RS256',
|
2021-06-27 02:48:24 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
export const hasKeys = (obj = {}) => Object.keys(obj).length > 0;
|
|
|
|
export const extractID = (url: string) => {
|
|
|
|
const regex = new RegExp('https://docs.google.com/document/d/([a-zA-Z0-9-_]+)/');
|
|
|
|
const results = regex.exec(url);
|
|
|
|
return results ? results[1] : undefined;
|
|
|
|
};
|
|
|
|
export const upperFirst = (str: string) => {
|
|
|
|
return str[0].toUpperCase() + str.substr(1);
|
|
|
|
};
|