2023-01-27 03:22:44 -08:00
|
|
|
import type { OptionsWithUri } from 'request';
|
2021-06-27 02:48:24 -07:00
|
|
|
|
2023-03-09 09:13:15 -08:00
|
|
|
import type {
|
|
|
|
IExecuteFunctions,
|
|
|
|
ILoadOptionsFunctions,
|
|
|
|
IDataObject,
|
|
|
|
JsonObject,
|
|
|
|
} from 'n8n-workflow';
|
2023-01-27 03:22:44 -08:00
|
|
|
import { NodeApiError } from 'n8n-workflow';
|
2021-06-27 02:48:24 -07:00
|
|
|
|
2023-06-06 09:19:24 -07:00
|
|
|
import { getGoogleAccessToken } from '../GenericFunctions';
|
2023-01-13 09:11:56 -08:00
|
|
|
|
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,
|
2023-01-19 04:37:19 -08:00
|
|
|
uri: uri || `https://docs.googleapis.com/v1${endpoint}`,
|
2021-06-27 02:48:24 -07:00
|
|
|
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
|
|
|
|
2023-06-06 09:19:24 -07:00
|
|
|
const { access_token } = await getGoogleAccessToken.call(this, credentials, 'docs');
|
2021-06-27 02:48:24 -07:00
|
|
|
|
|
|
|
options.headers!.Authorization = `Bearer ${access_token}`;
|
2022-12-23 10:09:52 -08:00
|
|
|
return await this.helpers.request(options);
|
2021-06-27 02:48:24 -07:00
|
|
|
} else {
|
|
|
|
return await this.helpers.requestOAuth2.call(this, 'googleDocsOAuth2Api', options);
|
|
|
|
}
|
|
|
|
} catch (error) {
|
2023-02-27 19:39:43 -08:00
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
2021-06-27 02:48:24 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
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 !== '');
|
2021-06-27 02:48:24 -07:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
};
|