2022-08-17 08:50:24 -07:00
|
|
|
import { OptionsWithUrl } from 'request';
|
2020-11-18 22:47:26 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
2020-11-18 22:47:26 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { IDataObject, JsonObject, NodeApiError } from 'n8n-workflow';
|
2020-11-18 22:47:26 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function googleApiRequest(
|
|
|
|
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
|
|
projectId: string,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
headers: IDataObject = {},
|
|
|
|
uri: string | null = null,
|
|
|
|
): Promise<any> {
|
|
|
|
const { region } = (await this.getCredentials(
|
|
|
|
'googleFirebaseRealtimeDatabaseOAuth2Api',
|
|
|
|
)) as IDataObject;
|
2022-04-14 00:19:45 -07:00
|
|
|
|
2020-11-18 22:47:26 -08:00
|
|
|
const options: OptionsWithUrl = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs,
|
2023-01-19 04:37:19 -08:00
|
|
|
url: uri || `https://${projectId}.${region}/${resource}.json`,
|
2020-11-18 22:47:26 -08:00
|
|
|
json: true,
|
|
|
|
};
|
2022-04-14 00:19:45 -07:00
|
|
|
|
2020-11-18 22:47:26 -08:00
|
|
|
try {
|
|
|
|
if (Object.keys(headers).length !== 0) {
|
|
|
|
options.headers = Object.assign({}, options.headers, headers);
|
|
|
|
}
|
|
|
|
if (Object.keys(body).length === 0) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
|
2022-12-23 10:09:52 -08:00
|
|
|
return await this.helpers.requestOAuth2.call(
|
2022-08-17 08:50:24 -07:00
|
|
|
this,
|
|
|
|
'googleFirebaseRealtimeDatabaseOAuth2Api',
|
|
|
|
options,
|
|
|
|
);
|
2020-11-18 22:47:26 -08:00
|
|
|
} catch (error) {
|
2022-04-14 00:19:45 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
2020-11-18 22:47:26 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function googleApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
|
|
projectId: string,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
2022-11-08 06:28:21 -08:00
|
|
|
_headers: IDataObject = {},
|
2022-08-17 08:50:24 -07:00
|
|
|
uri: string | null = null,
|
|
|
|
): Promise<any> {
|
2020-11-18 22:47:26 -08:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
qs.pageSize = 100;
|
|
|
|
|
|
|
|
do {
|
2022-08-17 08:50:24 -07:00
|
|
|
responseData = await googleApiRequest.call(
|
|
|
|
this,
|
|
|
|
projectId,
|
|
|
|
method,
|
|
|
|
resource,
|
|
|
|
body,
|
|
|
|
qs,
|
|
|
|
{},
|
|
|
|
uri,
|
|
|
|
);
|
2022-12-02 12:54:28 -08:00
|
|
|
qs.pageToken = responseData.nextPageToken;
|
2020-11-18 22:47:26 -08:00
|
|
|
returnData.push.apply(returnData, responseData[resource]);
|
2022-12-02 12:54:28 -08:00
|
|
|
} while (responseData.nextPageToken !== undefined && responseData.nextPageToken !== '');
|
2020-11-18 22:47:26 -08:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|