botserver/packages/saas.gbapp/index.ts
2024-10-12 16:59:23 -03:00

147 lines
5.8 KiB
TypeScript
Executable file

/*****************************************************************************\
| █████ █████ ██ █ █████ █████ ████ ██ ████ █████ █████ ███ ® |
| ██ █ ███ █ █ ██ ██ ██ ██ ██ ██ █ ██ ██ █ █ |
| ██ ███ ████ █ ██ █ ████ █████ ██████ ██ ████ █ █ █ ██ |
| ██ ██ █ █ ██ █ █ ██ ██ ██ ██ ██ ██ █ ██ ██ █ █ |
| █████ █████ █ ███ █████ ██ ██ ██ ██ █████ ████ █████ █ ███ |
| |
| General Bots Copyright (c) pragmatismo.cloud. All rights reserved. |
| 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. |
| |
| "General Bots" is a registered trademark of pragmatismo.cloud. |
| 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. |
| |
\*****************************************************************************/
"use strict"
import { IGBPackage, GBMinInstance, IGBCoreService, GBLog, IGBAdminService, GBDialogStep } from 'botlib'
import { Sequelize } from 'sequelize-typescript'
import { GBOnlineSubscription } from './model/MainModel.js'
import { MSSubscriptionService } from './service/MSSubscription.js'
import { CollectionUtil } from 'pragmatismo-io-framework';
import { NewUserDialog } from './dialog/NewUserDialog.js'
export class SaaSPackage implements IGBPackage {
sysPackages: IGBPackage[]
adminService: IGBAdminService;
public static welcomes = {};
instanceId: any
public getDialogs(min: GBMinInstance) {
return [NewUserDialog.getDialog(min),
NewUserDialog.getBotNameDialog(min),
NewUserDialog.getVoucherDialog(min),
NewUserDialog.getBotTemplateDialog(min),
NewUserDialog.getReturnFromPayment(min),
NewUserDialog.getReturnFromCC(min),
NewUserDialog.getReturnFromDocument(min),
NewUserDialog.getDialogBatch(min)
];
}
async loadPackage(core: IGBCoreService, sequelize: Sequelize): Promise<void> {
sequelize.addModels([GBOnlineSubscription]);
core.setEntryPointDialog('/welcome_saas');
// Installs webhook for Microsoft intercommunication.
core.installWebHook(true, '/mslanding', async (req, res) => {
const service = new MSSubscriptionService();
await service.handleMSLanding(req, res);
});
core.installWebHook(true, '/mshook', async (req, res) => {
const service = new MSSubscriptionService();
await service.handleMSHook(req, res);
});
core.installWebHook(true, '/signup', async (req, res) => {
const service = new MSSubscriptionService();
await service.handleMSSignUp(req, res);
});
}
/**
* Setups schedule to trigger notifications as pro-active messages.
*/
private setupScheduler(min, sendToDevice) {
const schedule = '30 09 * * 1-5';
const options = {
scheduled: true,
timezone: 'America/Sao_Paulo'
};
this.adminService = min.adminService;
this.instanceId = min.instanceId;
}
/**
* Called by scheduler to send notification message to phones.
* @param sendToDevice The function used to notify.
*/
private async notifyJob(sendToDevice) {
}
async unloadPackage(core: IGBCoreService): Promise<void> {
}
async loadBot(min: GBMinInstance): Promise<void> {
let gboService = min.gbappServices['gboService'];
// Gets the sendToDevice method of whatsapp.gblib and setups scheduler.
if (min.whatsAppDirectLine !== undefined) {
const sendToDevice = min.whatsAppDirectLine.sendToDevice.bind(min.whatsAppDirectLine);
this.setupScheduler(min, sendToDevice);
this.notifyJob(sendToDevice);
}
}
async unloadBot(min: GBMinInstance): Promise<void> {
}
async onNewSession(min: GBMinInstance, step: GBDialogStep): Promise<void> {
}
public async onExchangeData(min: GBMinInstance, kind: string, data: any) {
switch (kind) {
case "whatsappMessage":
const from = data.from;
const fromName = data.fromName;
SaaSPackage.welcomes[from] = fromName;
break;
default:
GBLog.verbose('saas.gbapp onExchangeData called');
break;
}
}
}