2022-08-17 08:50:24 -07:00
|
|
|
import { OptionsWithUri } from 'request';
|
2020-03-22 12:43:35 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { IExecuteFunctions, IExecuteSingleFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
2020-03-22 12:43:35 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
import { IDataObject, NodeApiError } from 'n8n-workflow';
|
2020-03-22 12:43:35 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function microsoftApiRequest(
|
|
|
|
this: IExecuteFunctions | IExecuteSingleFunctions | ILoadOptionsFunctions,
|
|
|
|
method: string,
|
|
|
|
resource: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
qs: IDataObject = {},
|
|
|
|
uri?: string,
|
|
|
|
headers: IDataObject = {},
|
|
|
|
option: IDataObject = { json: true },
|
|
|
|
): Promise<any> {
|
2020-03-22 12:43:35 -07:00
|
|
|
const options: OptionsWithUri = {
|
|
|
|
headers: {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
},
|
|
|
|
method,
|
|
|
|
body,
|
|
|
|
qs,
|
2023-01-19 04:37:19 -08:00
|
|
|
uri: uri || `https://graph.microsoft.com/v1.0/me${resource}`,
|
2020-03-22 12:43:35 -07:00
|
|
|
};
|
|
|
|
try {
|
|
|
|
Object.assign(options, option);
|
|
|
|
if (Object.keys(headers).length !== 0) {
|
|
|
|
options.headers = Object.assign({}, options.headers, headers);
|
|
|
|
}
|
|
|
|
if (Object.keys(qs).length === 0) {
|
|
|
|
delete options.qs;
|
|
|
|
}
|
|
|
|
if (Object.keys(body).length === 0) {
|
|
|
|
delete options.body;
|
|
|
|
}
|
|
|
|
//@ts-ignore
|
2020-06-01 17:42:38 -07:00
|
|
|
return await this.helpers.requestOAuth2.call(this, 'microsoftOneDriveOAuth2Api', options);
|
2020-03-22 12:43:35 -07:00
|
|
|
} catch (error) {
|
2021-04-16 09:33:36 -07:00
|
|
|
throw new NodeApiError(this.getNode(), error);
|
2020-03-22 12:43:35 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function microsoftApiRequestAllItems(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-03-22 12:43:35 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
|
|
|
let uri: string | undefined;
|
2022-12-02 12:54:28 -08:00
|
|
|
query.$top = 100;
|
2020-03-22 12:43:35 -07:00
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await microsoftApiRequest.call(this, method, endpoint, body, query, uri);
|
|
|
|
uri = responseData['@odata.nextLink'];
|
2022-12-02 12:54:28 -08:00
|
|
|
if (uri?.includes('$top')) {
|
|
|
|
delete query.$top;
|
2022-01-21 01:46:33 -08:00
|
|
|
}
|
2020-03-22 12:43:35 -07:00
|
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
2022-08-17 08:50:24 -07:00
|
|
|
} while (responseData['@odata.nextLink'] !== undefined);
|
2020-03-22 12:43:35 -07:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
export async function microsoftApiRequestAllItemsSkip(
|
|
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
|
|
propertyName: string,
|
|
|
|
method: string,
|
|
|
|
endpoint: string,
|
2022-12-02 06:25:21 -08:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
body: any = {},
|
|
|
|
query: IDataObject = {},
|
|
|
|
): Promise<any> {
|
2020-03-22 12:43:35 -07:00
|
|
|
const returnData: IDataObject[] = [];
|
|
|
|
|
|
|
|
let responseData;
|
2022-12-02 12:54:28 -08:00
|
|
|
query.$top = 100;
|
|
|
|
query.$skip = 0;
|
2020-03-22 12:43:35 -07:00
|
|
|
|
|
|
|
do {
|
|
|
|
responseData = await microsoftApiRequest.call(this, method, endpoint, body, query);
|
2022-12-02 12:54:28 -08:00
|
|
|
query.$skip += query.$top;
|
2020-03-22 12:43:35 -07:00
|
|
|
returnData.push.apply(returnData, responseData[propertyName]);
|
2022-12-02 12:54:28 -08:00
|
|
|
} while (responseData.value.length !== 0);
|
2020-03-22 12:43:35 -07:00
|
|
|
|
|
|
|
return returnData;
|
|
|
|
}
|