2023-02-12 14:31:21 -03:00
|
|
|
/*****************************************************************************\
|
2024-08-17 20:30:00 -03:00
|
|
|
| █████ █████ ██ █ █████ █████ ████ ██ ████ █████ █████ ███ ® |
|
|
|
|
| ██ █ ███ █ █ ██ ██ ██ ██ ██ ██ █ ██ ██ █ █ |
|
|
|
|
| ██ ███ ████ █ ██ █ ████ █████ ██████ ██ ████ █ █ █ ██ |
|
|
|
|
| ██ ██ █ █ ██ █ █ ██ ██ ██ ██ ██ ██ █ ██ ██ █ █ |
|
|
|
|
| █████ █████ █ ███ █████ ██ ██ ██ ██ █████ ████ █████ █ ███ |
|
2023-02-12 14:31:21 -03:00
|
|
|
| |
|
2024-08-17 20:30:00 -03:00
|
|
|
| General Bots Copyright (c) pragmatismo.cloud. All rights reserved. |
|
2023-02-12 14:31:21 -03:00
|
|
|
| Licensed under the AGPL-3.0. |
|
|
|
|
| |
|
|
|
|
| According to our dual licensing model, this program can be used either |
|
|
|
|
| under the terms of the GNU Affero General Public License, version 3, |
|
|
|
|
| or under a proprietary license. |
|
|
|
|
| |
|
|
|
|
| The texts of the GNU Affero General Public License with an additional |
|
|
|
|
| permission and of our proprietary license can be found at and |
|
|
|
|
| in the LICENSE file you have received along with this program. |
|
|
|
|
| |
|
|
|
|
| This program is distributed in the hope that it will be useful, |
|
|
|
|
| but WITHOUT ANY WARRANTY, without even the implied warranty of |
|
|
|
|
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
|
|
|
| GNU Affero General Public License for more details. |
|
|
|
|
| |
|
2024-08-17 20:30:00 -03:00
|
|
|
| "General Bots" is a registered trademark of pragmatismo.cloud. |
|
2023-02-12 14:31:21 -03:00
|
|
|
| The licensing of the program under the AGPLv3 does not imply a |
|
|
|
|
| trademark license. Therefore any rights, title and interest in |
|
|
|
|
| our trademarks remain entirely with us. |
|
|
|
|
| |
|
|
|
|
\*****************************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @fileoverview General Bots server core.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2023-02-20 10:29:04 -03:00
|
|
|
import { GBLog, IGBInstance } from 'botlib';
|
|
|
|
import { GuaribasLog } from '../models/GBModel.js';
|
2024-04-27 17:04:54 -03:00
|
|
|
import { GBServer } from '../../../src/app.js';
|
2024-08-24 11:35:22 -03:00
|
|
|
import { GBConfigService } from './GBConfigService.js';
|
2023-02-12 14:31:21 -03:00
|
|
|
|
|
|
|
export class GBLogEx {
|
2024-09-12 15:05:32 -03:00
|
|
|
private static async logWithLevel(
|
|
|
|
level: 'error' | 'debug' | 'info' | 'verbose',
|
|
|
|
minOrInstanceId: any,
|
|
|
|
message: string
|
|
|
|
) {
|
|
|
|
const instanceId = this.normalizeInstanceId(minOrInstanceId);
|
|
|
|
GBLog[level](`${instanceId}: ${message}`);
|
|
|
|
await this.log(instanceId, level.charAt(0), message);
|
|
|
|
}
|
|
|
|
|
|
|
|
private static normalizeInstanceId(minOrInstanceId: any): string | number {
|
2023-02-12 14:31:21 -03:00
|
|
|
if (typeof minOrInstanceId === 'object') {
|
2024-09-12 15:05:32 -03:00
|
|
|
return minOrInstanceId.instance ? minOrInstanceId.instance.botId : minOrInstanceId.botId;
|
2023-02-12 14:31:21 -03:00
|
|
|
}
|
2024-09-12 15:05:32 -03:00
|
|
|
return minOrInstanceId === 0 ? 'default' : minOrInstanceId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static async error(minOrInstanceId: any, message: string) {
|
|
|
|
await this.logWithLevel('error', minOrInstanceId, message);
|
2023-02-12 14:31:21 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
public static async debug(minOrInstanceId: any, message: string) {
|
2024-09-12 15:05:32 -03:00
|
|
|
await this.logWithLevel('debug', minOrInstanceId, message);
|
2023-02-12 14:31:21 -03:00
|
|
|
}
|
|
|
|
|
2023-02-20 10:29:04 -03:00
|
|
|
public static async info(minOrInstanceId: any, message: string) {
|
2024-09-12 15:05:32 -03:00
|
|
|
await this.logWithLevel('info', minOrInstanceId, message);
|
2023-02-12 14:31:21 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
public static async verbose(minOrInstanceId: any, message: string) {
|
2024-09-12 15:05:32 -03:00
|
|
|
await this.logWithLevel('verbose', minOrInstanceId, message);
|
2023-02-12 14:31:21 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finds and update user agent information to a next available person.
|
|
|
|
*/
|
2024-09-12 15:05:32 -03:00
|
|
|
public static async log(instance, kind: string, message: string): Promise<GuaribasLog> {
|
2024-08-24 11:35:22 -03:00
|
|
|
if (GBConfigService.get('LOG_ON_STORAGE')) {
|
2023-10-05 10:06:03 -03:00
|
|
|
message = message ? message.substring(0, 1023) : null;
|
|
|
|
|
|
|
|
return await GuaribasLog.create(<GuaribasLog>{
|
2024-09-12 15:05:32 -03:00
|
|
|
instanceId: instance ? instance : 0,
|
2023-10-05 10:06:03 -03:00
|
|
|
message: message,
|
|
|
|
kind: kind
|
|
|
|
});
|
|
|
|
}
|
2023-02-12 14:31:21 -03:00
|
|
|
}
|
|
|
|
}
|