2022-08-17 08:50:24 -07:00
|
|
|
import { OptionsWithUri } from 'request';
|
2021-04-05 03:29:26 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
2021-04-05 03:29:26 -07:00
|
|
|
|
2022-11-08 06:28:21 -08:00
|
|
|
import { IDataObject, NodeApiError } from 'n8n-workflow';
|
2021-04-05 03:29:26 -07:00
|
|
|
|
2022-04-08 14:32:08 -07:00
|
|
|
import moment from 'moment-timezone';
|
2021-04-05 03:29:26 -07:00
|
|
|
|
2022-04-08 14:32:08 -07:00
|
|
|
import jwt from 'jsonwebtoken';
|
2021-04-05 03:29:26 -07:00
|
|
|
|
2021-12-24 07:12:18 -08:00
|
|
|
interface IGoogleAuthCredentials {
|
|
|
|
delegatedEmail?: string;
|
|
|
|
email: string;
|
|
|
|
inpersonate: boolean;
|
|
|
|
privateKey: string;
|
|
|
|
}
|
|
|
|
|
2023-01-13 09:11:56 -08:00
|
|
|
async function getAccessToken(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
credentials: IGoogleAuthCredentials,
|
|
|
|
) {
|
|
|
|
// https://developers.google.com/identity/protocols/oauth2/service-account#httprest
|
|
|
|
|
|
|
|
const scopes = [
|
|
|
|
'https://www.googleapis.com/auth/drive.file',
|
|
|
|
'https://www.googleapis.com/auth/presentations',
|
|
|
|
];
|
|
|
|
|
|
|
|
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,
|
|
|
|
sub: credentials.email,
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2021-04-05 03:29:26 -07:00
|
|
|
export async function googleApiRequest(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
|
|
|
body: IDataObject = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
) {
|
2022-08-17 08:50:24 -07:00
|
|
|
const authenticationMethod = this.getNodeParameter(
|
|
|
|
'authentication',
|
|
|
|
0,
|
|
|
|
'serviceAccount',
|
|
|
|
) as string;
|
2021-04-05 03:29:26 -07:00
|
|
|
const options: OptionsWithUri & { headers: IDataObject } = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
uri: `https://slides.googleapis.com/v1${resource}`,
|
|
|
|
json: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!Object.keys(body).length) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Object.keys(qs).length) {
|
|
|
|
delete options.qs;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (authenticationMethod === 'serviceAccount') {
|
2021-12-24 07:12:18 -08:00
|
|
|
const credentials = await this.getCredentials('googleApi');
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
const { access_token } = await getAccessToken.call(
|
|
|
|
this,
|
|
|
|
credentials as unknown as IGoogleAuthCredentials,
|
|
|
|
);
|
2021-04-05 03:29:26 -07:00
|
|
|
options.headers.Authorization = `Bearer ${access_token}`;
|
2022-12-23 10:09:52 -08:00
|
|
|
return await this.helpers.request(options);
|
2021-04-05 03:29:26 -07:00
|
|
|
} else {
|
2022-12-23 10:09:52 -08:00
|
|
|
return await this.helpers.requestOAuth2.call(this, 'googleSlidesOAuth2Api', options);
|
2021-04-05 03:29:26 -07:00
|
|
|
}
|
|
|
|
} 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);
|
2021-04-05 03:29:26 -07:00
|
|
|
}
|
|
|
|
}
|