2018-04-21 02:59:30 -03:00
|
|
|
/*****************************************************************************\
|
|
|
|
| ( )_ _ |
|
|
|
|
| _ _ _ __ _ _ __ ___ ___ _ _ | ,_)(_) ___ ___ _ |
|
|
|
|
| ( '_`\ ( '__)/'_` ) /'_ `\/' _ ` _ `\ /'_` )| | | |/',__)/' _ `\ /'_`\ |
|
|
|
|
| | (_) )| | ( (_| |( (_) || ( ) ( ) |( (_| || |_ | |\__, \| ( ) |( (_) ) |
|
|
|
|
| | ,__/'(_) `\__,_)`\__ |(_) (_) (_)`\__,_)`\__)(_)(____/(_) (_)`\___/' |
|
|
|
|
| | | ( )_) | |
|
|
|
|
| (_) \___/' |
|
|
|
|
| |
|
|
|
|
| General Bots Copyright (c) Pragmatismo.io. 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.io. |
|
|
|
|
| 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";
|
|
|
|
|
|
|
|
const gBuilder = require("botbuilder");
|
2018-09-04 15:09:52 -03:00
|
|
|
const { TextPrompt } = require("botbuilder-dialogs");
|
2018-04-21 02:59:30 -03:00
|
|
|
const UrlJoin = require("url-join");
|
|
|
|
const Path = require("path");
|
|
|
|
const Fs = require("fs");
|
|
|
|
const Url = require("url");
|
|
|
|
const logger = require("../../../src/logger");
|
|
|
|
const WaitUntil = require("wait-until");
|
|
|
|
const Walk = require("fs-walk");
|
|
|
|
const express = require("express");
|
|
|
|
|
2018-06-04 05:33:37 -03:00
|
|
|
import { BotFrameworkAdapter, BotStateSet, ConversationState, MemoryStorage, UserState } from "botbuilder";
|
|
|
|
import { LanguageTranslator, LocaleConverter } from "botbuilder-ai";
|
|
|
|
|
2018-04-21 02:59:30 -03:00
|
|
|
import { GBCoreService } from "./GBCoreService";
|
|
|
|
import { GBConversationalService } from "./GBConversationalService";
|
|
|
|
import { GBConfigService } from "./GBConfigService";
|
|
|
|
import * as request from "request-promise-native";
|
|
|
|
import { GBMinInstance, IGBCoreService, IGBInstance, IGBPackage, GBError } from "botlib";
|
|
|
|
import { GBServiceCallback } from "botlib";
|
|
|
|
import { GBAnalyticsPackage } from "../../analytics.gblib";
|
|
|
|
import { GBCorePackage } from "../../core.gbapp";
|
|
|
|
import { GBKBPackage } from '../../kb.gbapp';
|
|
|
|
import { GBDeployer } from './GBDeployer';
|
|
|
|
import { GBSecurityPackage } from '../../security.gblib';
|
|
|
|
import { GBAdminPackage } from './../../admin.gbapp/index';
|
|
|
|
import { GBCustomerSatisfactionPackage } from "../../customer-satisfaction.gbapp";
|
2018-05-11 22:18:38 -03:00
|
|
|
import { GBWhatsappPackage } from "../../whatsapp.gblib";
|
2018-04-21 02:59:30 -03:00
|
|
|
|
|
|
|
/** Minimal service layer for a bot. */
|
|
|
|
|
|
|
|
export class GBMinService {
|
|
|
|
|
|
|
|
core: GBCoreService;
|
|
|
|
conversationalService: GBConversationalService;
|
|
|
|
deployer: GBDeployer;
|
|
|
|
|
|
|
|
deployFolder = "deploy";
|
|
|
|
corePackage = "core.gbai";
|
|
|
|
|
2018-06-04 05:33:37 -03:00
|
|
|
|
2018-04-21 02:59:30 -03:00
|
|
|
/**
|
2018-06-04 05:33:37 -03:00
|
|
|
* Static initialization of minimal instance.
|
2018-04-21 02:59:30 -03:00
|
|
|
*
|
|
|
|
* @param core Basic database services to identify instance, for example.
|
|
|
|
* @param cb Returns the loaded instance.
|
|
|
|
*/
|
|
|
|
constructor(
|
|
|
|
core: GBCoreService,
|
|
|
|
conversationalService: GBConversationalService,
|
|
|
|
deployer: GBDeployer
|
|
|
|
) {
|
|
|
|
this.core = core;
|
|
|
|
this.conversationalService = conversationalService;
|
|
|
|
this.deployer = deployer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Constructs a new minimal instance for each bot. */
|
|
|
|
|
|
|
|
buildMin(cb: GBServiceCallback<GBMinInstance>, server: any, appPackages: Array<IGBPackage>) {
|
|
|
|
|
2018-05-12 22:36:12 -03:00
|
|
|
var _this_ = this;
|
2018-04-21 02:59:30 -03:00
|
|
|
|
|
|
|
// Serves default UI on root address '/'.
|
|
|
|
|
|
|
|
let uiPackage = "default.gbui";
|
|
|
|
server.use(
|
|
|
|
"/",
|
|
|
|
express.static(UrlJoin(this.deployFolder, uiPackage, "build"))
|
|
|
|
);
|
|
|
|
|
|
|
|
// Loads all bot instances from storage.
|
|
|
|
|
2018-05-12 22:36:12 -03:00
|
|
|
_this_.core.loadInstances((instances: IGBInstance[], err) => {
|
2018-04-21 02:59:30 -03:00
|
|
|
|
|
|
|
// Gets the authorization key for each instance from Bot Service.
|
|
|
|
|
|
|
|
instances.forEach(instance => {
|
|
|
|
let options = {
|
|
|
|
url:
|
|
|
|
"https://directline.botframework.com/v3/directline/tokens/generate",
|
|
|
|
method: "POST",
|
|
|
|
headers: {
|
|
|
|
Authorization: `Bearer ${instance.webchatKey}`
|
|
|
|
}
|
|
|
|
};
|
2018-05-18 11:39:17 -03:00
|
|
|
request(options).then((response:
|
2018-05-11 23:27:00 -03:00
|
|
|
string) => {
|
2018-04-21 02:59:30 -03:00
|
|
|
|
|
|
|
// Serves the bot information object via http so clients can get
|
|
|
|
// instance information stored on server.
|
|
|
|
|
|
|
|
let responseObject = JSON.parse(response);
|
|
|
|
server.get("/instances/:botId", (req, res) => {
|
|
|
|
|
|
|
|
// Returns the instance object to clients requesting bot info.
|
|
|
|
|
|
|
|
let botId = req.params.botId;
|
2018-05-12 22:36:12 -03:00
|
|
|
_this_.core.loadInstance(
|
2018-04-21 02:59:30 -03:00
|
|
|
botId,
|
|
|
|
(instance: IGBInstance, err) => {
|
|
|
|
if (instance) {
|
2018-06-01 16:11:52 -03:00
|
|
|
|
2018-08-28 17:50:19 -03:00
|
|
|
// TODO: Make dynamic: https://CHANGE.api.cognitive.microsoft.com/sts/v1.0
|
|
|
|
|
2018-06-01 16:11:52 -03:00
|
|
|
let options = {
|
|
|
|
url:
|
2018-08-28 17:50:19 -03:00
|
|
|
"https://westus.api.cognitive.microsoft.com/sts/v1.0/issueToken",
|
2018-06-01 16:11:52 -03:00
|
|
|
method: "POST",
|
|
|
|
headers: {
|
|
|
|
"Ocp-Apim-Subscription-Key": instance.speechKey
|
|
|
|
}
|
|
|
|
};
|
|
|
|
request(options).then((response:
|
|
|
|
string) => {
|
|
|
|
|
|
|
|
res.send(
|
|
|
|
JSON.stringify({
|
|
|
|
instanceId: instance.instanceId,
|
|
|
|
botId: botId,
|
|
|
|
theme: instance.theme,
|
|
|
|
secret: instance.webchatKey, // TODO: Use token.
|
|
|
|
speechToken: response,
|
|
|
|
conversationId: responseObject.conversationId
|
|
|
|
})
|
|
|
|
);
|
2018-08-28 17:50:19 -03:00
|
|
|
}).catch((reason) => {
|
|
|
|
let error = `Error loading Speech Service: ${reason}.`;
|
|
|
|
res.send(error);
|
|
|
|
logger.error(error);
|
2018-06-01 16:11:52 -03:00
|
|
|
});
|
2018-04-21 02:59:30 -03:00
|
|
|
} else {
|
|
|
|
let error = `Instance not found: ${botId}.`;
|
|
|
|
res.send(error);
|
|
|
|
logger.error(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-06-04 05:33:37 -03:00
|
|
|
// Build bot adapter.
|
|
|
|
|
|
|
|
let adapter = new BotFrameworkAdapter({
|
|
|
|
appId: instance.marketplaceId,
|
|
|
|
appPassword: instance.marketplacePassword
|
|
|
|
});
|
|
|
|
const storage = new MemoryStorage();
|
|
|
|
const conversationState = new ConversationState(storage);
|
|
|
|
const userState = new UserState(storage);
|
|
|
|
adapter.use(new BotStateSet(conversationState, userState));
|
|
|
|
|
2018-04-21 02:59:30 -03:00
|
|
|
// The minimal bot is built here.
|
|
|
|
|
|
|
|
let min = new GBMinInstance();
|
|
|
|
min.botId = instance.botId;
|
2018-06-04 05:33:37 -03:00
|
|
|
min.bot = adapter;
|
|
|
|
min.userState = userState;
|
2018-05-12 22:36:12 -03:00
|
|
|
min.core = _this_.core;
|
|
|
|
min.conversationalService = _this_.conversationalService;
|
2018-06-04 05:33:37 -03:00
|
|
|
|
2018-05-12 22:36:12 -03:00
|
|
|
_this_.core.loadInstance(min.botId, (data, err) => {
|
2018-05-11 22:18:38 -03:00
|
|
|
|
2018-04-24 05:36:48 -03:00
|
|
|
min.instance = data;
|
2018-05-11 22:18:38 -03:00
|
|
|
|
2018-06-04 05:33:37 -03:00
|
|
|
// Call the loadBot context.activity for all packages.
|
2018-05-11 22:18:38 -03:00
|
|
|
|
|
|
|
appPackages.forEach(e => {
|
|
|
|
e.sysPackages = new Array<IGBPackage>();
|
|
|
|
[GBAdminPackage, GBAnalyticsPackage, GBCorePackage, GBSecurityPackage,
|
|
|
|
GBKBPackage, GBCustomerSatisfactionPackage, GBWhatsappPackage].forEach(sysPackage => {
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`Loading sys package: ${sysPackage.name}...`);
|
2018-05-11 22:18:38 -03:00
|
|
|
let p = Object.create(sysPackage.prototype) as IGBPackage;
|
2018-05-11 23:27:00 -03:00
|
|
|
p.loadBot(min);
|
2018-05-11 22:18:38 -03:00
|
|
|
e.sysPackages.push(p);
|
2018-05-11 23:27:00 -03:00
|
|
|
|
|
|
|
if (sysPackage.name === "GBWhatsappPackage") {
|
2018-05-12 16:08:24 -03:00
|
|
|
let url = "/instances/:botId/whatsapp";
|
|
|
|
server.post(url, (req, res) => {
|
2018-05-11 23:27:00 -03:00
|
|
|
p["channel"].received(req, res);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2018-05-11 22:18:38 -03:00
|
|
|
e.loadBot(min);
|
|
|
|
});
|
|
|
|
|
2018-04-24 05:36:48 -03:00
|
|
|
});
|
2018-04-21 02:59:30 -03:00
|
|
|
|
|
|
|
|
|
|
|
// Serves individual URL for each bot conversational interface...
|
|
|
|
|
|
|
|
let url = `/api/messages/${instance.botId}`;
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(
|
2018-04-21 02:59:30 -03:00
|
|
|
`GeneralBots(${instance.engineName}) listening on: ${url}.`
|
|
|
|
);
|
2018-09-04 15:09:52 -03:00
|
|
|
|
2018-08-28 19:16:29 -03:00
|
|
|
|
|
|
|
min.dialogs.add('textPrompt', new TextPrompt());
|
2018-08-28 17:50:19 -03:00
|
|
|
|
2018-06-04 20:27:21 -03:00
|
|
|
server.post(`/api/messages/${instance.botId}`, (req, res) => {
|
|
|
|
|
2018-06-04 05:33:37 -03:00
|
|
|
adapter.processActivity(req, res, async (context) => {
|
|
|
|
|
2018-06-04 20:27:21 -03:00
|
|
|
const state = conversationState.get(context);
|
|
|
|
const dc = min.dialogs.createContext(context, state);
|
2018-09-04 15:09:52 -03:00
|
|
|
|
2018-08-28 17:50:19 -03:00
|
|
|
const user = min.userState.get(dc.context);
|
|
|
|
if (!user.loaded) {
|
|
|
|
min.conversationalService.sendEvent(
|
|
|
|
dc,
|
|
|
|
"loadInstance",
|
2018-09-03 13:43:09 -03:00
|
|
|
{
|
|
|
|
instanceId: instance.instanceId,
|
|
|
|
botId: instance.botId,
|
|
|
|
theme: instance.theme,
|
|
|
|
secret: instance.webchatKey, // TODO: Use token.
|
|
|
|
}
|
2018-08-28 17:50:19 -03:00
|
|
|
);
|
|
|
|
|
|
|
|
user.loaded = true;
|
|
|
|
user.subjects = [];
|
|
|
|
}
|
2018-08-28 19:16:29 -03:00
|
|
|
|
2018-09-04 15:09:52 -03:00
|
|
|
logger.info(
|
|
|
|
`[RCV]: ${context.activity.type}, ChannelID: ${context.activity.channelId},
|
|
|
|
ConversationID: ${context.activity.conversation.id},
|
|
|
|
Name: ${context.activity.name}, Text: ${context.activity.text}.`
|
|
|
|
);
|
|
|
|
|
2018-06-04 20:27:21 -03:00
|
|
|
if (context.activity.type === "conversationUpdate" &&
|
|
|
|
context.activity.membersAdded.length > 0) {
|
2018-06-04 05:33:37 -03:00
|
|
|
|
2018-09-04 15:09:52 -03:00
|
|
|
let member = context.activity.membersAdded[0];
|
|
|
|
if (member.name === "GeneralBots") {
|
|
|
|
logger.info(`Bot added to conversation, starting chat...`);
|
|
|
|
appPackages.forEach(e => {
|
|
|
|
e.onNewSession(min, dc);
|
|
|
|
});
|
|
|
|
await dc.begin('/');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
logger.info(`Member added to conversation: ${member.name}`);
|
|
|
|
}
|
2018-06-04 05:33:37 -03:00
|
|
|
|
2018-06-04 20:27:21 -03:00
|
|
|
} else if (context.activity.type === 'message') {
|
|
|
|
|
|
|
|
// Check to see if anyone replied. If not then start echo dialog
|
2018-06-04 05:33:37 -03:00
|
|
|
|
2018-09-04 15:09:52 -03:00
|
|
|
if (context.activity.text === "admin") {
|
2018-09-03 13:43:09 -03:00
|
|
|
dc.begin("/admin");
|
2018-09-04 15:09:52 -03:00
|
|
|
} else {
|
|
|
|
await dc.continue();
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (context.activity.type === 'event') {
|
|
|
|
if (context.activity.name === "whoAmI") {
|
|
|
|
dc.begin("/whoAmI");
|
2018-06-04 05:33:37 -03:00
|
|
|
} else if (context.activity.name === "showSubjects") {
|
|
|
|
dc.begin("/menu");
|
|
|
|
} else if (context.activity.name === "giveFeedback") {
|
|
|
|
dc.begin("/feedback", {
|
|
|
|
fromMenu: true
|
|
|
|
});
|
|
|
|
} else if (context.activity.name === "showFAQ") {
|
|
|
|
dc.begin("/faq");
|
|
|
|
} else if (context.activity.name === "ask") {
|
|
|
|
dc.begin("/answer", {
|
|
|
|
// TODO: query: context.activity.data,
|
|
|
|
fromFaq: true
|
|
|
|
});
|
|
|
|
} else if (context.activity.name === "quality") {
|
|
|
|
dc.begin("/quality", {
|
|
|
|
// TODO: score: context.activity.data
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
await dc.continue();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2018-04-21 02:59:30 -03:00
|
|
|
|
|
|
|
// Serves individual URL for each bot user interface.
|
|
|
|
|
|
|
|
let uiUrl = `/${instance.botId}`;
|
|
|
|
server.use(
|
|
|
|
uiUrl,
|
|
|
|
express.static(UrlJoin(this.deployFolder, uiPackage, "build"))
|
|
|
|
);
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`Bot UI ${uiPackage} acessible at: ${uiUrl}.`);
|
2018-04-21 02:59:30 -03:00
|
|
|
|
|
|
|
// Setups handlers.
|
2018-06-04 05:33:37 -03:00
|
|
|
// send: function (context.activity, next) {
|
2018-09-01 13:51:58 -03:00
|
|
|
// logger.info(
|
2018-06-04 05:33:37 -03:00
|
|
|
// `[SND]: ChannelID: ${context.activity.address.channelId}, ConversationID: ${context.activity.address.conversation},
|
|
|
|
// Type: ${context.activity.type} `);
|
|
|
|
// this.core.createMessage(
|
|
|
|
// this.min.conversation,
|
|
|
|
// this.min.conversation.startedBy,
|
|
|
|
// context.activity.source,
|
|
|
|
// (data, err) => {
|
2018-09-01 13:51:58 -03:00
|
|
|
// logger.info(context.activity.source);
|
2018-06-04 05:33:37 -03:00
|
|
|
// }
|
|
|
|
// );
|
|
|
|
// next();
|
2018-04-21 02:59:30 -03:00
|
|
|
|
|
|
|
// Specialized load for each min instance.
|
|
|
|
|
|
|
|
cb(min, null);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Performs package deployment in all .gbai or default. */
|
2018-05-11 22:18:38 -03:00
|
|
|
public deployPackages(core: IGBCoreService, server: any, appPackages: Array<IGBPackage>) {
|
2018-04-21 02:59:30 -03:00
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
try {
|
2018-05-12 22:36:12 -03:00
|
|
|
var _this_ = this;
|
2018-04-26 22:40:51 -03:00
|
|
|
let totalPackages = 0;
|
2018-04-21 02:59:30 -03:00
|
|
|
let additionalPath = GBConfigService.get("ADDITIONAL_DEPLOY_PATH");
|
|
|
|
let paths = [this.deployFolder];
|
|
|
|
if (additionalPath) {
|
|
|
|
paths = paths.concat(additionalPath.toLowerCase().split(";"));
|
|
|
|
}
|
|
|
|
let botPackages = new Array<string>();
|
2018-05-06 19:25:47 -03:00
|
|
|
let gbappPackages = new Array<string>();
|
2018-04-21 02:59:30 -03:00
|
|
|
let generalPackages = new Array<string>();
|
|
|
|
|
|
|
|
function doIt(path) {
|
|
|
|
const isDirectory = source => Fs.lstatSync(source).isDirectory()
|
|
|
|
const getDirectories = source =>
|
|
|
|
Fs.readdirSync(source).map(name => Path.join(source, name)).filter(isDirectory)
|
|
|
|
|
|
|
|
let dirs = getDirectories(path);
|
|
|
|
dirs.forEach(element => {
|
2018-05-28 06:51:06 -03:00
|
|
|
if (element.startsWith('.')) {
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`Ignoring ${element}...`);
|
2018-05-06 19:25:47 -03:00
|
|
|
}
|
2018-04-21 02:59:30 -03:00
|
|
|
else {
|
2018-05-28 06:51:06 -03:00
|
|
|
if (element.endsWith('.gbot')) {
|
|
|
|
botPackages.push(element);
|
|
|
|
}
|
|
|
|
else if (element.endsWith('.gbapp')) {
|
|
|
|
gbappPackages.push(element);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
generalPackages.push(element);
|
|
|
|
}
|
2018-04-21 02:59:30 -03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`Starting looking for generalPackages...`);
|
2018-04-21 02:59:30 -03:00
|
|
|
paths.forEach(e => {
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`Looking in: ${e}...`);
|
2018-04-26 22:40:51 -03:00
|
|
|
doIt(e);
|
2018-04-21 02:59:30 -03:00
|
|
|
});
|
|
|
|
|
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
/** Deploys all .gbapp files first. */
|
2018-04-21 02:59:30 -03:00
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
let appPackagesProcessed = 0;
|
2018-04-21 02:59:30 -03:00
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
gbappPackages.forEach(e => {
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`Deploying app: ${e}...`);
|
2018-05-06 19:25:47 -03:00
|
|
|
// Skips .gbapp inside deploy folder.
|
|
|
|
if (!e.startsWith('deploy')) {
|
|
|
|
import(e).then(m => {
|
|
|
|
let p = new m.Package();
|
|
|
|
p.loadPackage(core, core.sequelize);
|
|
|
|
appPackages.push(p);
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`App (.gbapp) deployed: ${e}.`);
|
2018-05-06 19:25:47 -03:00
|
|
|
appPackagesProcessed++;
|
|
|
|
}).catch(err => {
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`Error deploying App (.gbapp): ${e}: ${err}`);
|
2018-05-06 19:25:47 -03:00
|
|
|
appPackagesProcessed++;
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
appPackagesProcessed++;
|
|
|
|
}
|
|
|
|
});
|
2018-04-21 02:59:30 -03:00
|
|
|
|
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
WaitUntil()
|
|
|
|
.interval(1000)
|
2018-05-11 22:18:38 -03:00
|
|
|
.times(10)
|
2018-05-06 19:25:47 -03:00
|
|
|
.condition(function (cb) {
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`Waiting for app package deployment...`);
|
2018-05-06 19:25:47 -03:00
|
|
|
cb(appPackagesProcessed == gbappPackages.length);
|
|
|
|
})
|
|
|
|
.done(function (result) {
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`App Package deployment done.`);
|
2018-04-21 02:59:30 -03:00
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
core.syncDatabaseStructure(cb => {
|
2018-04-21 02:59:30 -03:00
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
/** Deploys all .gbot files first. */
|
2018-04-21 02:59:30 -03:00
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
botPackages.forEach(e => {
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`Deploying bot: ${e}...`);
|
2018-05-12 22:36:12 -03:00
|
|
|
_this_.deployer.deployBot(e, (data, err) => {
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`Bot: ${e} deployed...`);
|
2018-05-06 19:25:47 -03:00
|
|
|
});
|
2018-04-21 02:59:30 -03:00
|
|
|
});
|
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
// TODO: Wait here.
|
2018-04-21 02:59:30 -03:00
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
/** Then all remaining generalPackages are loaded. */
|
2018-04-21 02:59:30 -03:00
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
generalPackages.forEach(filename => {
|
2018-04-21 02:59:30 -03:00
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
let filenameOnly = Path.basename(filename);
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`Deploying package: ${filename}...`);
|
2018-04-21 02:59:30 -03:00
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
/** Handles apps for general bots - .gbapp must stay out of deploy folder. */
|
2018-04-21 02:59:30 -03:00
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
if (Path.extname(filename) === ".gbapp" || Path.extname(filename) === ".gblib") {
|
2018-04-21 02:59:30 -03:00
|
|
|
|
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
/** Themes for bots. */
|
2018-04-21 02:59:30 -03:00
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
} else if (Path.extname(filename) === ".gbtheme") {
|
|
|
|
server.use("/themes/" + filenameOnly, express.static(filename));
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`Theme (.gbtheme) assets accessible at: ${"/themes/" + filenameOnly}.`);
|
2018-05-06 19:25:47 -03:00
|
|
|
|
|
|
|
|
|
|
|
/** Knowledge base for bots. */
|
2018-04-21 02:59:30 -03:00
|
|
|
|
2018-05-06 19:25:47 -03:00
|
|
|
} else if (Path.extname(filename) === ".gbkb") {
|
|
|
|
server.use(
|
|
|
|
"/kb/" + filenameOnly + "/subjects",
|
|
|
|
express.static(UrlJoin(filename, "subjects"))
|
|
|
|
);
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`KB (.gbkb) assets acessible at: ${"/kb/" + filenameOnly}.`);
|
2018-05-06 19:25:47 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
else if (Path.extname(filename) === ".gbui" || filename.endsWith(".git")) {
|
|
|
|
// Already Handled
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Unknown package format. */
|
|
|
|
|
|
|
|
else {
|
|
|
|
let err = new Error(`Package type not handled: ${filename}.`);
|
|
|
|
reject(err);
|
|
|
|
}
|
|
|
|
totalPackages++;
|
|
|
|
});
|
|
|
|
|
|
|
|
WaitUntil()
|
|
|
|
.interval(1000)
|
|
|
|
.times(5)
|
|
|
|
.condition(function (cb) {
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`Waiting for package deployment...`);
|
2018-05-06 19:25:47 -03:00
|
|
|
cb(totalPackages == (generalPackages.length));
|
|
|
|
})
|
|
|
|
.done(function (result) {
|
|
|
|
if (botPackages.length === 0) {
|
|
|
|
logger.info(`The bot server is running empty: No bot instances have been found, at least one .gbot file must be deployed.`);
|
|
|
|
}
|
|
|
|
else {
|
2018-09-01 13:51:58 -03:00
|
|
|
logger.info(`Package deployment done.`);
|
2018-05-06 19:25:47 -03:00
|
|
|
}
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2018-04-21 02:59:30 -03:00
|
|
|
} catch (err) {
|
2018-05-27 18:15:33 -03:00
|
|
|
logger.error(err);
|
2018-04-21 02:59:30 -03:00
|
|
|
reject(err)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-05-06 19:25:47 -03:00
|
|
|
}
|