n8n-nodes-base
Version:
Base nodes of n8n
71 lines • 3.19 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.apiRequest = apiRequest;
exports.apiRequestAllItems = apiRequestAllItems;
const set_1 = __importDefault(require("lodash/set"));
const n8n_workflow_1 = require("n8n-workflow");
const GenericFunctions_1 = require("../../../GenericFunctions");
async function apiRequest(method, resource, body = {}, qs = {}, uri, headers = {}, option = {}) {
const authenticationMethod = this.getNodeParameter('authentication', 0, 'serviceAccount');
const options = {
headers: {
'Content-Type': 'application/json',
},
method,
body,
qs,
uri: uri || `https://sheets.googleapis.com${resource}`,
json: true,
...option,
};
try {
if (Object.keys(headers).length !== 0) {
options.headers = Object.assign({}, options.headers, headers);
}
if (Object.keys(body).length === 0) {
delete options.body;
}
if (authenticationMethod === 'serviceAccount') {
const credentials = await this.getCredentials('googleApi');
const { access_token } = await GenericFunctions_1.getGoogleAccessToken.call(this, credentials, 'sheetV2');
options.headers.Authorization = `Bearer ${access_token}`;
return await this.helpers.request(options);
}
else if (authenticationMethod === 'triggerOAuth2') {
return await this.helpers.requestOAuth2.call(this, 'googleSheetsTriggerOAuth2Api', options);
}
else {
return await this.helpers.requestOAuth2.call(this, 'googleSheetsOAuth2Api', options);
}
}
catch (error) {
if (error.code === 'ERR_OSSL_PEM_NO_START_LINE') {
error.statusCode = '401';
}
if (error instanceof n8n_workflow_1.NodeApiError) {
if (error.message.includes('PERMISSION_DENIED')) {
const details = error.description ? ` Details of the error: ${error.description}.` : '';
const description = `Please check that the account you're using has the right permissions. (If you're trying to modify the sheet, you'll need edit access.)${details}`;
(0, set_1.default)(error, 'description', description);
}
throw error;
}
throw new n8n_workflow_1.NodeApiError(this.getNode(), error);
}
}
async function apiRequestAllItems(propertyName, method, endpoint, body = {}, query = {}, uri) {
const returnData = [];
let responseData;
query.maxResults = 100;
const url = uri ? uri : `https://sheets.googleapis.com${method}`;
do {
responseData = await apiRequest.call(this, method, endpoint, body, query, url);
query.pageToken = responseData.nextPageToken;
returnData.push.apply(returnData, responseData[propertyName]);
} while (responseData.nextPageToken !== undefined && responseData.nextPageToken !== '');
return returnData;
}
//# sourceMappingURL=index.js.map