n8n/packages/nodes-base/nodes/Google/Slides/GenericFunctions.ts

112 lines
2.5 KiB
TypeScript
Raw Permalink Normal View History

2020-10-19 04:45:33 -07:00
import {
OptionsWithUri,
} from 'request';
import {
IExecuteFunctions,
ILoadOptionsFunctions,
} from 'n8n-core';
import {
IDataObject,
} from 'n8n-workflow';
import * as moment from 'moment-timezone';
import * as jwt from 'jsonwebtoken';
2021-03-29 01:13:28 -07:00
export async function googleApiRequest(
2021-04-04 13:15:31 -07:00
this: IExecuteFunctions | ILoadOptionsFunctions,
2021-03-29 01:13:28 -07:00
method: string,
resource: string,
body: IDataObject = {},
qs: IDataObject = {},
) {
2020-10-19 04:45:33 -07:00
const authenticationMethod = this.getNodeParameter('authentication', 0, 'serviceAccount') as string;
2021-03-29 01:13:28 -07:00
const options: OptionsWithUri & { headers: IDataObject } = {
2020-10-19 04:45:33 -07:00
headers: {
'Content-Type': 'application/json',
},
method,
body,
qs,
2021-04-04 13:15:31 -07:00
uri: `https://slides.googleapis.com/v1${resource}`,
2021-03-29 01:13:28 -07:00
json: true,
2020-10-19 04:45:33 -07:00
};
2021-03-29 01:13:28 -07:00
if (!Object.keys(body).length) {
delete options.body;
}
if (!Object.keys(qs).length) {
delete options.qs;
}
2020-10-19 04:45:33 -07:00
try {
if (authenticationMethod === 'serviceAccount') {
2021-03-29 01:13:28 -07:00
const credentials = this.getCredentials('googleApi') as { access_token: string, email: string, privateKey: string };
const { access_token } = await getAccessToken.call(this, credentials);
options.headers.Authorization = `Bearer ${access_token}`;
return await this.helpers.request!(options);
2020-10-19 04:45:33 -07:00
} else {
2021-03-29 01:13:28 -07:00
return await this.helpers.requestOAuth2!.call(this, 'googleSlidesOAuth2Api', options);
2020-10-19 04:45:33 -07:00
}
} catch (error) {
2021-03-29 01:13:28 -07:00
if (error?.response?.body?.message) {
2020-10-20 01:13:36 -07:00
throw new Error(`Google Slides error response [${error.statusCode}]: ${error.response.body.message}`);
2020-10-19 04:45:33 -07:00
}
throw error;
2021-03-29 01:13:28 -07:00
}
2020-10-19 04:45:33 -07:00
}
2021-03-29 01:13:28 -07:00
function getAccessToken(
2021-04-04 13:15:31 -07:00
this: IExecuteFunctions | ILoadOptionsFunctions,
2021-03-29 01:13:28 -07:00
{ email, privateKey }: { email: string, privateKey: string },
) {
// https://developers.google.com/identity/protocols/oauth2/service-account#httprest
2020-10-19 04:45:33 -07:00
const scopes = [
'https://www.googleapis.com/auth/drive.file',
'https://www.googleapis.com/auth/presentations',
];
const now = moment().unix();
const signature = jwt.sign(
{
2021-03-29 01:13:28 -07:00
iss: email,
sub: email,
scope: scopes.join(' '),
aud: 'https://oauth2.googleapis.com/token',
iat: now,
exp: now + 3600,
2020-10-19 04:45:33 -07:00
},
2021-03-29 01:13:28 -07:00
privateKey,
2020-10-19 04:45:33 -07:00
{
algorithm: 'RS256',
header: {
2021-03-29 01:13:28 -07:00
kid: privateKey,
typ: 'JWT',
alg: 'RS256',
2020-10-19 04:45:33 -07:00
},
2021-03-29 01:13:28 -07:00
},
2020-10-19 04:45:33 -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',
2021-03-29 01:13:28 -07:00
json: true,
2020-10-19 04:45:33 -07:00
};
2021-03-29 01:13:28 -07:00
return this.helpers.request!(options);
2020-10-19 04:45:33 -07:00
}