UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

72 lines 2.8 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.googleApiRequest = googleApiRequest; exports.googleApiRequestAllItems = googleApiRequestAllItems; exports.hexToRgb = hexToRgb; const n8n_workflow_1 = require("n8n-workflow"); const GenericFunctions_1 = require("../../GenericFunctions"); async function googleApiRequest(method, resource, body = {}, qs = {}, uri, headers = {}) { 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, }; 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, 'sheetV1'); options.headers.Authorization = `Bearer ${access_token}`; return await this.helpers.request(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'; } throw new n8n_workflow_1.NodeApiError(this.getNode(), error); } } async function googleApiRequestAllItems(propertyName, method, endpoint, body = {}, query = {}) { const returnData = []; let responseData; query.maxResults = 100; do { responseData = await googleApiRequest.call(this, method, endpoint, body, query); query.pageToken = responseData.nextPageToken; returnData.push.apply(returnData, responseData[propertyName]); } while (responseData.nextPageToken !== undefined && responseData.nextPageToken !== ''); return returnData; } // Hex to RGB function hexToRgb(hex) { // Expand shorthand form (e.g. "03F") to full form (e.g. "0033FF") const shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i; hex = hex.replace(shorthandRegex, (_, r, g, b) => { return r + r + g + g + b + b; }); const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex); if (result) { return { red: parseInt(result[1], 16), green: parseInt(result[2], 16), blue: parseInt(result[3], 16), }; } return null; } //# sourceMappingURL=GenericFunctions.js.map