fix(basic.gblib): executionid and changed to pid and security context for HEAR.

This commit is contained in:
Alan Perdomo 2023-01-19 10:39:37 -03:00
parent ff8ba02d67
commit 1063739cbe
5 changed files with 58 additions and 54 deletions

View file

@ -720,9 +720,9 @@ export class DialogKeywords {
public async getHear({ pid, kind, arg }) { public async getHear({ pid, kind, arg }) {
const process = GBServer.globals.processes[pid]; const process = GBServer.globals.processes[pid];
let {
const min = GBServer.globals.minInstances.filter(p => min, user
p.instance.instanceId == process.instanceId)[0]; } = await this.getProcessInfo(pid);
// Handles first arg as an array of args. // Handles first arg as an array of args.
@ -732,18 +732,20 @@ export class DialogKeywords {
} }
try { try {
let user;
const isIntentYes = (locale, utterance) => { const isIntentYes = (locale, utterance) => {
return utterance.toLowerCase().match(Messages[locale].affirmative_sentences); return utterance.toLowerCase().match(Messages[locale].affirmative_sentences);
}; };
const sec = new SecService(); const sec = new SecService();
// If SET HEAR ON is defined an impersonated context is created
// containing the specified user other than the actual user
// TODO: Store hrOn in processInfo.
if (this.hrOn) { if (this.hrOn) {
user = await sec.getUserFromAgentSystemId(this.hrOn); user = await sec.getUserFromAgentSystemId(this.hrOn);
} else {
user = await sec.getUserFromId(process.instanceId, process.userId);
} }
const userId = user.userId; const userId = user.userId;
let result; let result;
@ -801,6 +803,7 @@ export class DialogKeywords {
const text = this.min.cbMap[userId].promise; const text = this.min.cbMap[userId].promise;
if (kind === 'file') { if (kind === 'file') {
// TODO: https://github.com/GeneralBots/BotServer/issues/227
// await prompt('attachmentPrompt',{}); // await prompt('attachmentPrompt',{});
// // Prepare Promises to download each attachment and then execute each Promise. // // Prepare Promises to download each attachment and then execute each Promise.
// const promises = step.context.activity.attachments.map( // const promises = step.context.activity.attachments.map(
@ -923,7 +926,7 @@ export class DialogKeywords {
phoneNumber = phone(text, { country: 'BRA' })[0]; phoneNumber = phone(text, { country: 'BRA' })[0];
phoneNumber = phoneUtil.parse(phoneNumber); phoneNumber = phoneUtil.parse(phoneNumber);
} catch (error) { } catch (error) {
await this.talk(Messages[locale].validation_enter_valid_mobile); await this.talk({pid, text: Messages[locale].validation_enter_valid_mobile});
return await this.getHear({ pid, kind, arg }); return await this.getHear({ pid, kind, arg });
} }
@ -1044,7 +1047,7 @@ export class DialogKeywords {
const user = await sec.getUserFromId(min.instance.instanceId, proc.userId); const user = await sec.getUserFromId(min.instance.instanceId, proc.userId);
return { return {
min, user min, user
} };
} }

View file

@ -1029,6 +1029,7 @@ export class GBVMService extends GBService {
const pid = GBAdminService.getNumberIdentifier(); const pid = GBAdminService.getNumberIdentifier();
GBServer.globals.processes[pid] = { GBServer.globals.processes[pid] = {
pid: pid,
userId: user.systemUser.userId, userId: user.systemUser.userId,
instanceId: min.instance.instanceId instanceId: min.instance.instanceId
}; };

View file

@ -86,7 +86,7 @@ export class SystemKeywords {
this.dk = dk; this.dk = dk;
} }
public async callVM ({ executionId, text }) { public async callVM ({ pid, text }) {
const min = null; const min = null;
const step = null; const step = null;
@ -95,7 +95,7 @@ export class SystemKeywords {
return await GBVMService.callVM(text, min, step, deployer, false); return await GBVMService.callVM(text, min, step, deployer, false);
} }
public async append ({ executionId, args }) { public async append ({ pid, args }) {
let array = [].concat(...args); let array = [].concat(...args);
return array.filter(function (item, pos) { return array.filter(function (item, pos) {
return item; return item;
@ -107,7 +107,7 @@ export class SystemKeywords {
* @example SEE CAPTION OF url AS variable * @example SEE CAPTION OF url AS variable
* *
*/ */
public async seeCaption ({ executionId, url }) { public async seeCaption ({ pid, url }) {
const computerVisionClient = new ComputerVisionClient.ComputerVisionClient( const computerVisionClient = new ComputerVisionClient.ComputerVisionClient(
new ApiKeyCredentials.ApiKeyCredentials({ inHeader: { 'Ocp-Apim-Subscription-Key': process.env.VISION_KEY } }), new ApiKeyCredentials.ApiKeyCredentials({ inHeader: { 'Ocp-Apim-Subscription-Key': process.env.VISION_KEY } }),
process.env.VISION_ENDPOINT process.env.VISION_ENDPOINT
@ -130,7 +130,7 @@ export class SystemKeywords {
* @example SEE TEXT OF url AS variable * @example SEE TEXT OF url AS variable
* *
*/ */
public async seeText ({ executionId, url }) { public async seeText ({ pid, url }) {
const computerVisionClient = new ComputerVisionClient.ComputerVisionClient( const computerVisionClient = new ComputerVisionClient.ComputerVisionClient(
new ApiKeyCredentials.ApiKeyCredentials({ inHeader: { 'Ocp-Apim-Subscription-Key': process.env.VISION_KEY } }), new ApiKeyCredentials.ApiKeyCredentials({ inHeader: { 'Ocp-Apim-Subscription-Key': process.env.VISION_KEY } }),
process.env.VISION_ENDPOINT process.env.VISION_ENDPOINT
@ -156,7 +156,7 @@ export class SystemKeywords {
return final; return final;
} }
public async sortBy ({ executionId, array, memberName }) { public async sortBy ({ pid, array, memberName }) {
memberName = memberName.trim(); memberName = memberName.trim();
const contentLocale = this.min.core.getParam<string>( const contentLocale = this.min.core.getParam<string>(
this.min.instance, this.min.instance,
@ -167,7 +167,7 @@ export class SystemKeywords {
// Detects data type from the first element of array. // Detects data type from the first element of array.
let dt = array[0] ? array[0][memberName] : null; let dt = array[0] ? array[0][memberName] : null;
let date = SystemKeywords.getDateFromLocaleString(executionId, dt, contentLocale); let date = SystemKeywords.getDateFromLocaleString(pid, dt, contentLocale);
if (date) { if (date) {
return array return array
? array.sort((a, b) => { ? array.sort((a, b) => {
@ -328,17 +328,17 @@ export class SystemKeywords {
return [url, localName]; return [url, localName];
} }
public async asPDF ({ executionId, data, filename }) { public async asPDF ({ pid, data, filename }) {
let file = await this.renderTable(data, true, false); let file = await this.renderTable(data, true, false);
return file[0]; return file[0];
} }
public async asImage ({ executionId, data, filename }) { public async asImage ({ pid, data, filename }) {
let file = await this.renderTable(data, false, true); let file = await this.renderTable(data, false, true);
return file[0]; return file[0];
} }
public async executeSQL ({ executionId, data, sql, tableName }) { public async executeSQL ({ pid, data, sql, tableName }) {
let objectMode = false; let objectMode = false;
if (Object.keys(data[0])) { if (Object.keys(data[0])) {
objectMode = true; objectMode = true;
@ -358,7 +358,7 @@ export class SystemKeywords {
/** /**
* Retrives the content of a given URL. * Retrives the content of a given URL.
*/ */
public async getFileContents ({ executionId, url, headers }) { public async getFileContents ({ pid, url, headers }) {
const options = { const options = {
method: 'GET', method: 'GET',
encoding: 'binary', encoding: 'binary',
@ -382,7 +382,7 @@ export class SystemKeywords {
/** /**
* Retrives stock inforation for a given symbol. * Retrives stock inforation for a given symbol.
*/ */
public async getStock ({ executionId, symbol }) { public async getStock ({ pid, symbol }) {
const url = `http://live-nse.herokuapp.com/?symbol=${symbol}`; const url = `http://live-nse.herokuapp.com/?symbol=${symbol}`;
let data = await fetch(url); let data = await fetch(url);
return data; return data;
@ -394,7 +394,7 @@ export class SystemKeywords {
* @example WAIT 5 ' This will wait five seconds. * @example WAIT 5 ' This will wait five seconds.
* *
*/ */
public async wait ({ executionId, seconds }) { public async wait ({ pid, seconds }) {
// tslint:disable-next-line no-string-based-set-timeout // tslint:disable-next-line no-string-based-set-timeout
GBLog.info(`BASIC: WAIT for ${seconds} second(s).`); GBLog.info(`BASIC: WAIT for ${seconds} second(s).`);
const timeout = async (ms: number) => new Promise(resolve => setTimeout(resolve, ms)); const timeout = async (ms: number) => new Promise(resolve => setTimeout(resolve, ms));
@ -407,7 +407,7 @@ export class SystemKeywords {
* @example TALK TO "+199988887777", "Message text here" * @example TALK TO "+199988887777", "Message text here"
* *
*/ */
public async talkTo ({ executionId, mobile, message }) { public async talkTo ({ pid, mobile, message }) {
GBLog.info(`BASIC: Talking '${message}' to a specific user (${mobile}) (TALK TO). `); GBLog.info(`BASIC: Talking '${message}' to a specific user (${mobile}) (TALK TO). `);
await this.min.conversationalService.sendMarkdownToMobile(this.min, null, mobile, message); await this.min.conversationalService.sendMarkdownToMobile(this.min, null, mobile, message);
} }
@ -418,7 +418,7 @@ export class SystemKeywords {
* @example SEND SMS TO "+199988887777", "Message text here" * @example SEND SMS TO "+199988887777", "Message text here"
* *
*/ */
public async sendSmsTo ({ executionId, mobile, message }) { public async sendSmsTo ({ pid, mobile, message }) {
GBLog.info(`BASIC: SEND SMS TO '${mobile}', message '${message}'.`); GBLog.info(`BASIC: SEND SMS TO '${mobile}', message '${message}'.`);
await this.min.conversationalService.sendSms(this.min, mobile, message); await this.min.conversationalService.sendSms(this.min, mobile, message);
} }
@ -432,7 +432,7 @@ export class SystemKeywords {
* @example SET page, "elementHTMLSelector", "text" * @example SET page, "elementHTMLSelector", "text"
* *
*/ */
public async set ({ executionId, file, address, value }): Promise<any> { public async set ({ pid, file, address, value }): Promise<any> {
// Handles calls for HTML stuff // Handles calls for HTML stuff
if (file._javascriptEnabled) { if (file._javascriptEnabled) {
@ -493,7 +493,7 @@ export class SystemKeywords {
* @exaple SAVE variable as "my.txt" * @exaple SAVE variable as "my.txt"
* *
*/ */
public async saveFile ({ executionId, file, data }): Promise<any> { public async saveFile ({ pid, file, data }): Promise<any> {
GBLog.info(`BASIC: Saving '${file}' (SAVE file).`); GBLog.info(`BASIC: Saving '${file}' (SAVE file).`);
let { baseUrl, client } = await GBDeployer.internalGetDriveClient(this.min); let { baseUrl, client } = await GBDeployer.internalGetDriveClient(this.min);
const botId = this.min.instance.botId; const botId = this.min.instance.botId;
@ -523,7 +523,7 @@ export class SystemKeywords {
* @exaple SAVE "customers.xlsx", name, email, phone, address, city, state, country * @exaple SAVE "customers.xlsx", name, email, phone, address, city, state, country
* *
*/ */
public async save ({ executionId, args }): Promise<any> { public async save ({ pid, args }): Promise<any> {
const file = args[0]; const file = args[0];
args.shift(); args.shift();
GBLog.info(`BASIC: Saving '${file}' (SAVE). Args: ${args.join(',')}.`); GBLog.info(`BASIC: Saving '${file}' (SAVE). Args: ${args.join(',')}.`);
@ -572,10 +572,10 @@ export class SystemKeywords {
* @example value = GET "file.xlsx", "A2" * @example value = GET "file.xlsx", "A2"
* *
*/ */
public async get ({ executionId, file, addressOrHeaders, httpUsername, httpPs, qs, streaming }): Promise<any> { public async get ({ pid, file, addressOrHeaders, httpUsername, httpPs, qs, streaming }): Promise<any> {
if (file.startsWith('http')) { if (file.startsWith('http')) {
return await this.getByHttp({ return await this.getByHttp({
executionId, pid,
url: file, url: file,
headers: addressOrHeaders, headers: addressOrHeaders,
username: httpUsername, username: httpUsername,
@ -608,14 +608,14 @@ export class SystemKeywords {
} }
} }
public isValidDate ({ executionId, dt }) { public isValidDate ({ pid, dt }) {
const contentLocale = this.min.core.getParam<string>( const contentLocale = this.min.core.getParam<string>(
this.min.instance, this.min.instance,
'Default Content Language', 'Default Content Language',
GBConfigService.get('DEFAULT_CONTENT_LANGUAGE') GBConfigService.get('DEFAULT_CONTENT_LANGUAGE')
); );
let date = SystemKeywords.getDateFromLocaleString(executionId, dt, contentLocale); let date = SystemKeywords.getDateFromLocaleString(pid, dt, contentLocale);
if (!date) { if (!date) {
return false; return false;
} }
@ -627,14 +627,14 @@ export class SystemKeywords {
return !isNaN(date.valueOf()); return !isNaN(date.valueOf());
} }
public isValidNumber ({ executionId, number }) { public isValidNumber ({ pid, number }) {
if (number === '') { if (number === '') {
return false; return false;
} }
return !isNaN(number); return !isNaN(number);
} }
public isValidHour ({ executionId, value }) { public isValidHour ({ pid, value }) {
return /^([01]?[0-9]|2[0-3]):[0-5][0-9]$/.test(value); return /^([01]?[0-9]|2[0-3]):[0-5][0-9]$/.test(value);
} }
@ -652,7 +652,7 @@ export class SystemKeywords {
* @see NPM package data-forge * @see NPM package data-forge
* *
*/ */
public async find ({ executionId, args }): Promise<any> { public async find ({ pid, args }): Promise<any> {
const file = args[0]; const file = args[0];
args.shift(); args.shift();
@ -818,7 +818,7 @@ export class SystemKeywords {
if (this.isValidHour(filter.value)) { if (this.isValidHour(filter.value)) {
filter.dataType = 'hourInterval'; filter.dataType = 'hourInterval';
} else if (this.isValidDate(filter.value)) { } else if (this.isValidDate(filter.value)) {
filter.value = SystemKeywords.getDateFromLocaleString(executionId, filter.value, contentLocale); filter.value = SystemKeywords.getDateFromLocaleString(pid, filter.value, contentLocale);
filter.dataType = 'date'; filter.dataType = 'date';
} else if (this.isValidNumber(filter.value)) { } else if (this.isValidNumber(filter.value)) {
filter.value = Number.parseInt(filter.value); filter.value = Number.parseInt(filter.value);
@ -942,7 +942,7 @@ export class SystemKeywords {
if (result.charAt(0) === "'") { if (result.charAt(0) === "'") {
result = result.substr(1); result = result.substr(1);
} }
const resultDate = SystemKeywords.getDateFromLocaleString(executionId, result, contentLocale); const resultDate = SystemKeywords.getDateFromLocaleString(pid, result, contentLocale);
if (filter.value['dateOnly']) { if (filter.value['dateOnly']) {
resultDate.setHours(0, 0, 0, 0); resultDate.setHours(0, 0, 0, 0);
} }
@ -1001,7 +1001,7 @@ export class SystemKeywords {
} }
} }
public static getDateFromLocaleString (executionId, date: any, contentLocale: any) { public static getDateFromLocaleString (pid, date: any, contentLocale: any) {
let ret = null; let ret = null;
let parts = /^([0-3]?[0-9]).([0-3]?[0-9]).((?:[0-9]{2})?[0-9]{2})\s*(10|11|12|0?[1-9]):([0-5][0-9])/gi.exec(date); let parts = /^([0-3]?[0-9]).([0-3]?[0-9]).((?:[0-9]{2})?[0-9]{2})\s*(10|11|12|0?[1-9]):([0-5][0-9])/gi.exec(date);
if (parts && parts[5]) { if (parts && parts[5]) {
@ -1071,7 +1071,7 @@ export class SystemKeywords {
* @example folder = CREATE FOLDER "notes\01" * @example folder = CREATE FOLDER "notes\01"
* *
*/ */
public async createFolder ({ executionId, name }) { public async createFolder ({ pid, name }) {
let { baseUrl, client } = await GBDeployer.internalGetDriveClient(this.min); let { baseUrl, client } = await GBDeployer.internalGetDriveClient(this.min);
const botId = this.min.instance.botId; const botId = this.min.instance.botId;
let path = `/${botId}.gbai/${botId}.gbdrive`; let path = `/${botId}.gbai/${botId}.gbdrive`;
@ -1120,7 +1120,7 @@ export class SystemKeywords {
* SHARE FOLDER folder, "nome@domain.com", "E-mail message" * SHARE FOLDER folder, "nome@domain.com", "E-mail message"
* *
*/ */
public async shareFolder ({ executionId, folder, email, message }) { public async shareFolder ({ pid, folder, email, message }) {
let { baseUrl, client } = await GBDeployer.internalGetDriveClient(this.min); let { baseUrl, client } = await GBDeployer.internalGetDriveClient(this.min);
const root = urlJoin(`/${this.min.botId}.gbai/${this.min.botId}.gbdrive`, folder); const root = urlJoin(`/${this.min.botId}.gbai/${this.min.botId}.gbdrive`, folder);
@ -1147,7 +1147,7 @@ export class SystemKeywords {
* COPY "template.xlsx", "reports\" + customerName + "\final.xlsx" * COPY "template.xlsx", "reports\" + customerName + "\final.xlsx"
* *
*/ */
public async copyFile ({ executionId, src, dest }) { public async copyFile ({ pid, src, dest }) {
GBLog.info(`BASIC: BEGINING COPY '${src}' to '${dest}'`); GBLog.info(`BASIC: BEGINING COPY '${src}' to '${dest}'`);
let { baseUrl, client } = await GBDeployer.internalGetDriveClient(this.min); let { baseUrl, client } = await GBDeployer.internalGetDriveClient(this.min);
const botId = this.min.instance.botId; const botId = this.min.instance.botId;
@ -1169,7 +1169,7 @@ export class SystemKeywords {
let folder; let folder;
if (dest.indexOf('/') !== -1) { if (dest.indexOf('/') !== -1) {
const pathOnly = Path.dirname(dest); const pathOnly = Path.dirname(dest);
folder = await this.createFolder({executionId, name: pathOnly }); folder = await this.createFolder({pid, name: pathOnly });
} else { } else {
folder = await client.api(`${baseUrl}/drive/root:/${root}`).get(); folder = await client.api(`${baseUrl}/drive/root:/${root}`).get();
} }
@ -1207,7 +1207,7 @@ export class SystemKeywords {
* CONVERT "customers.xlsx" TO "reports\" + today + ".pdf" * CONVERT "customers.xlsx" TO "reports\" + today + ".pdf"
* *
*/ */
public async convert ({ executionId, src, dest }) { public async convert ({ pid, src, dest }) {
GBLog.info(`BASIC: CONVERT '${src}' to '${dest}'`); GBLog.info(`BASIC: CONVERT '${src}' to '${dest}'`);
let { baseUrl, client } = await GBDeployer.internalGetDriveClient(this.min); let { baseUrl, client } = await GBDeployer.internalGetDriveClient(this.min);
const botId = this.min.instance.botId; const botId = this.min.instance.botId;
@ -1229,7 +1229,7 @@ export class SystemKeywords {
let folder; let folder;
if (dest.indexOf('/') !== -1) { if (dest.indexOf('/') !== -1) {
const pathOnly = Path.dirname(dest); const pathOnly = Path.dirname(dest);
folder = await this.createFolder({ executionId, name: pathOnly }); folder = await this.createFolder({ pid, name: pathOnly });
} else { } else {
folder = await client.api(`${baseUrl}/drive/root:/${root}`).get(); folder = await client.api(`${baseUrl}/drive/root:/${root}`).get();
} }
@ -1268,7 +1268,7 @@ export class SystemKeywords {
* @example pass = PASSWORD * @example pass = PASSWORD
* *
*/ */
public generatePassword ( executionId ) { public generatePassword ( pid ) {
return GBAdminService.getRndPassword(); return GBAdminService.getRndPassword();
} }
@ -1278,7 +1278,7 @@ export class SystemKeywords {
* @example user = get "http://server/users/1" * @example user = get "http://server/users/1"
* *
*/ */
public async getByHttp ({ executionId, url, headers, username, ps, qs}) { public async getByHttp ({ pid, url, headers, username, ps, qs}) {
let options = { }; let options = { };
if (headers) { if (headers) {
options['headers'] = headers; options['headers'] = headers;
@ -1313,7 +1313,7 @@ export class SystemKeywords {
* talk "The updated user area is" + user.area * talk "The updated user area is" + user.area
* *
*/ */
public async putByHttp ({ executionId, url, data, headers }) { public async putByHttp ({ pid, url, data, headers }) {
const options = { const options = {
json: data, json: data,
headers: headers headers: headers
@ -1333,7 +1333,7 @@ export class SystemKeywords {
* talk "The updated user area is" + user.area * talk "The updated user area is" + user.area
* *
*/ */
public async postByHttp ({ executionId, url, data, headers }) { public async postByHttp ({ pid, url, data, headers }) {
const options = { const options = {
json: data, json: data,
headers: headers headers: headers
@ -1345,7 +1345,7 @@ export class SystemKeywords {
return result ? (typeof result === 'object' ? result : JSON.parse(result)) : true; return result ? (typeof result === 'object' ? result : JSON.parse(result)) : true;
} }
public async numberOnly ({executionId, text}) { public async numberOnly ({pid, text}) {
return text.replace(/\D/gi, ''); return text.replace(/\D/gi, '');
} }
@ -1356,7 +1356,7 @@ export class SystemKeywords {
* doc = FILL "templates/template.docx", data * doc = FILL "templates/template.docx", data
* *
*/ */
public async fill ({ executionId, templateName, data }) { public async fill ({ pid, templateName, data }) {
const botId = this.min.instance.botId; const botId = this.min.instance.botId;
const gbaiName = `${botId}.gbai`; const gbaiName = `${botId}.gbai`;
const path = `/${botId}.gbai/${botId}.gbdata`; const path = `/${botId}.gbai/${botId}.gbdata`;
@ -1390,7 +1390,7 @@ export class SystemKeywords {
return buf; return buf;
} }
public screenCapture (executionId) { public screenCapture (pid) {
// scrcpy Disabled // scrcpy Disabled
// function captureImage({ x, y, w, h }) { // function captureImage({ x, y, w, h }) {
// const pic = robot.screen.capture(x, y, w, h) // const pic = robot.screen.capture(x, y, w, h)
@ -1442,7 +1442,7 @@ export class SystemKeywords {
* MERGE "second.xlsx" WITH data BY customer_id * MERGE "second.xlsx" WITH data BY customer_id
* *
*/ */
public async merge ({ executionId, file, data, key1, key2 }): Promise<any> { public async merge ({ pid, file, data, key1, key2 }): Promise<any> {
GBLog.info(`BASIC: MERGE running on ${file} and key1: ${key1}, key2: ${key2}...`); GBLog.info(`BASIC: MERGE running on ${file} and key1: ${key1}, key2: ${key2}...`);
const botId = this.min.instance.botId; const botId = this.min.instance.botId;
@ -1544,7 +1544,7 @@ export class SystemKeywords {
const address = `${cell}:${cell}`; const address = `${cell}:${cell}`;
if (value !== found[columnName]) { if (value !== found[columnName]) {
await this.set({ executionId, file, address, value }); await this.set({ pid, file, address, value });
merges++; merges++;
} }
} }
@ -1555,7 +1555,7 @@ export class SystemKeywords {
args.push(row[keys[j]]); args.push(row[keys[j]]);
} }
await this.save({ executionId, args }); await this.save({ pid, args });
adds++; adds++;
} }
} }
@ -1569,7 +1569,7 @@ export class SystemKeywords {
} }
} }
public async tweet ({ executionId, text }) { public async tweet ({ pid, text }) {
const consumer_key = this.min.core.getParam(this.min.instance, 'Twitter Consumer Key', null); const consumer_key = this.min.core.getParam(this.min.instance, 'Twitter Consumer Key', null);
const consumer_secret = this.min.core.getParam(this.min.instance, 'Twitter Consumer Key Secret', null); const consumer_secret = this.min.core.getParam(this.min.instance, 'Twitter Consumer Key Secret', null);
const access_token_key = this.min.core.getParam(this.min.instance, 'Twitter Access Token', null); const access_token_key = this.min.core.getParam(this.min.instance, 'Twitter Access Token', null);

View file

@ -904,7 +904,7 @@ export class GBMinService {
const headers = { Authorization: `Bearer ${botToken}` }; const headers = { Authorization: `Bearer ${botToken}` };
const t = new SystemKeywords(null, null, null, null); const t = new SystemKeywords(null, null, null, null);
const data = await t.getByHttp({ const data = await t.getByHttp({
executionId: 0, pid: 0,
url: file.contentUrl, url: file.contentUrl,
headers, headers,
username: null, username: null,