botserver/packages/kb.gbapp/services/KBService.ts

590 lines
20 KiB
TypeScript
Raw Normal View History

2018-04-21 02:59:30 -03:00
/*****************************************************************************\
| ( )_ _ |
| _ _ _ __ _ _ __ ___ ___ _ _ | ,_)(_) ___ ___ _ |
| ( '_`\ ( '__)/'_` ) /'_ `\/' _ ` _ `\ /'_` )| | | |/',__)/' _ `\ /'_`\ |
| | (_) )| | ( (_| |( (_) || ( ) ( ) |( (_| || |_ | |\__, \| (˅) |( (_) ) |
2018-04-21 02:59:30 -03:00
| | ,__/'(_) `\__,_)`\__ |(_) (_) (_)`\__,_)`\__)(_)(____/(_) (_)`\___/' |
| | | ( )_) | |
| (_) \___/' |
| |
| General Bots Copyright (c) Pragmatismo.io. All rights reserved. |
| Licensed under the AGPL-3.0. |
2018-11-11 19:09:18 -02:00
| |
2018-04-21 02:59:30 -03:00
| 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, |
2018-09-11 19:40:53 -03:00
| but WITHOUT ANY WARRANTY, without even the implied warranty of |
2018-04-21 02:59:30 -03:00
| 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. |
| |
\*****************************************************************************/
2018-11-27 22:56:11 -02:00
/**
* @fileoverview Knowledge base services and logic.
*/
var Excel = require('exceljs');
const Path = require('path');
const Fs = require('fs');
import urlJoin = require('url-join');
const marked = require('marked');
const path = require('path');
const asyncPromise = require('async-promises');
const walkPromise = require('walk-promise');
// tslint:disable-next-line:newline-per-chained-call
const parse = require('bluebird').promisify(require('csv-parse'));
const { SearchService } = require('azure-search-client');
import { GBDialogStep, GBLog, IGBConversationalService, IGBCoreService, IGBInstance, GBMinInstance } from 'botlib';
import { Sequelize } from 'sequelize-typescript';
import { AzureDeployerService } from '../../azuredeployer.gbapp/services/AzureDeployerService';
import { GuaribasPackage } from '../../core.gbapp/models/GBModel';
import { GBDeployer } from '../../core.gbapp/services/GBDeployer';
import { GuaribasAnswer, GuaribasQuestion, GuaribasSubject } from '../models';
import { Messages } from '../strings';
import { GBConfigService } from './../../core.gbapp/services/GBConfigService';
import { GBServer } from '../../../src/app';
2018-04-21 02:59:30 -03:00
/**
* Result for quey on KB data.
*/
2018-08-28 19:16:29 -03:00
export class KBServiceSearchResults {
public answer: GuaribasAnswer;
public questionId: number;
2018-08-28 19:16:29 -03:00
}
/**
* All services related to knowledge base management.
*/
2018-04-21 02:59:30 -03:00
export class KBService {
public sequelize: Sequelize;
2018-09-10 16:24:32 -03:00
constructor(sequelize: Sequelize) {
this.sequelize = sequelize;
2018-09-10 16:24:32 -03:00
}
public static getFormattedSubjectItems(subjects: GuaribasSubject[]) {
if (subjects === null) {
return '';
}
const out = [];
subjects.forEach(subject => {
out.push(subject.title);
});
2018-11-27 22:56:11 -02:00
return out.join(', ');
}
public static getSubjectItemsSeparatedBySpaces(subjects: GuaribasSubject[]) {
const out = [];
if (subjects === undefined) { return ''; }
subjects.forEach(subject => {
out.push(subject.internalId);
});
2018-11-27 22:56:11 -02:00
return out.join(' ');
}
public async getQuestionById(instanceId: number, questionId: number): Promise<GuaribasQuestion> {
return GuaribasQuestion.findOne({
where: {
instanceId: instanceId,
questionId: questionId
}
});
}
public async getAnswerById(instanceId: number, answerId: number): Promise<GuaribasAnswer> {
return GuaribasAnswer.findOne({
where: {
instanceId: instanceId,
answerId: answerId
}
});
2018-04-21 02:59:30 -03:00
}
public async getAnswerByText(instanceId: number, text: string): Promise<any> {
const Op = Sequelize.Op;
2018-09-10 16:24:32 -03:00
const question = await GuaribasQuestion.findOne({
2018-09-10 16:24:32 -03:00
where: {
instanceId: instanceId,
content: { [Op.like]: `%${text.trim()}%` }
}
});
2018-09-10 16:24:32 -03:00
if (question !== null) {
const answer = await GuaribasAnswer.findOne({
2018-09-10 16:24:32 -03:00
where: {
instanceId: instanceId,
answerId: question.answerId
}
});
2018-11-27 22:56:11 -02:00
return Promise.resolve({ question: question, answer: answer });
2018-09-10 16:24:32 -03:00
}
2018-11-27 22:56:11 -02:00
return Promise.resolve(undefined);
2018-04-21 02:59:30 -03:00
}
public async addAnswer(obj: GuaribasAnswer): Promise<GuaribasAnswer> {
return new Promise<GuaribasAnswer>((resolve, reject) => {
GuaribasAnswer.create(obj)
.then(item => {
resolve(item);
})
.error(reason => {
reject(reason);
});
});
2018-04-21 02:59:30 -03:00
}
public async ask(
2018-04-21 02:59:30 -03:00
instance: IGBInstance,
2018-09-10 16:24:32 -03:00
query: string,
2018-04-21 02:59:30 -03:00
searchScore: number,
2018-08-28 19:16:29 -03:00
subjects: GuaribasSubject[]
): Promise<KBServiceSearchResults> {
2018-09-09 14:39:37 -03:00
// Builds search query.
2018-08-28 19:16:29 -03:00
query = query.toLowerCase();
query = query.replace('?', ' ');
query = query.replace('!', ' ');
query = query.replace('.', ' ');
query = query.replace('/', ' ');
query = query.replace('\\', ' ');
2018-08-28 19:16:29 -03:00
if (subjects !== null) {
const text = KBService.getSubjectItemsSeparatedBySpaces(subjects);
if (text !== null) {
query = `${query} ${text}`;
}
2018-09-09 14:39:37 -03:00
}
// tslint:disable:no-unsafe-any
if (instance.searchKey !== null && GBConfigService.get('STORAGE_DIALECT') === 'mssql') {
const client = new SearchService(instance.searchHost.split('.')[0], instance.searchKey);
const results = await client.indexes.use(instance.searchIndex)
.buildQuery()
.filter((f) => f.eq('instanceId', instance.instanceId))
.search(query)
.top(1)
.executeQuery();
const values = results.result.value;
if (values && values.length > 0 && values[0]['@search.score'] >= searchScore) {
const value = await this.getAnswerById(instance.instanceId, values[0].answerId);
if (value !== null) {
return Promise.resolve({ answer: value, questionId: values[0].questionId });
} else {
return Promise.resolve({ answer: undefined, questionId: 0 });
}
2018-08-28 19:16:29 -03:00
}
} else {
const data = await this.getAnswerByText(instance.instanceId, query);
if (data) {
return Promise.resolve({ answer: data.answer, questionId: data.question.questionId });
} else {
return Promise.resolve({ answer: undefined, questionId: 0 });
}
2018-09-09 14:39:37 -03:00
}
2018-04-21 02:59:30 -03:00
}
public async getSubjectItems(instanceId: number, parentId: number): Promise<GuaribasSubject[]> {
const where = { parentSubjectId: parentId, instanceId: instanceId };
2018-11-27 22:56:11 -02:00
return GuaribasSubject.findAll({
where: where
});
2018-04-21 02:59:30 -03:00
}
public async getFaqBySubjectArray(from: string, subjects: any): Promise<GuaribasQuestion[]> {
if (subjects) {
const where = {
from: from,
// tslint:disable-next-line: no-null-keyword
subject1: null,
// tslint:disable-next-line: no-null-keyword
subject2: null,
// tslint:disable-next-line: no-null-keyword
subject3: null,
// tslint:disable-next-line: no-null-keyword
subject4: null
};
if (subjects[0] && subjects[0].internalId) {
where.subject1 = subjects[0].internalId;
}
2018-04-21 02:59:30 -03:00
if (subjects[1] && subjects[1].internalId) {
where.subject2 = subjects[1].internalId;
}
2018-04-21 02:59:30 -03:00
if (subjects[2] && subjects[2].internalId) {
where.subject3 = subjects[2].internalId;
}
2018-09-09 14:39:37 -03:00
if (subjects[3] && subjects[3].internalId) {
where.subject4 = subjects[3].internalId;
}
2018-11-27 22:56:11 -02:00
return await GuaribasQuestion.findAll({
where: where
});
} else {
return await GuaribasQuestion.findAll({
where: { from: from }
});
}
2018-04-21 02:59:30 -03:00
}
public async importKbTabularFile(
2018-09-09 14:39:37 -03:00
filePath: string,
2018-04-21 02:59:30 -03:00
instanceId: number,
2018-09-09 14:39:37 -03:00
packageId: number
): Promise<GuaribasQuestion[]> {
var workbook = new Excel.Workbook();
let data = await workbook.xlsx.readFile(filePath);
let lastQuestionId: number;
let lastAnswer: GuaribasAnswer;
let rows = data._worksheets[1]._rows;
return asyncPromise.eachSeries(rows, async line => {
// Extracts values from columns in the current line.
const subjectsText = line._cells[0].value;
const from = line._cells[1].value;
const to = line._cells[2].value;
const question = line._cells[3].value;
let answer = line._cells[4].value;
// Skips the first line.
2018-11-27 22:56:11 -02:00
if (!(subjectsText === 'subjects' && from === 'from')) {
let format = '.txt';
// Extracts answer from external media if any.
if (answer.indexOf('.md') > -1) {
const mediaFilename = urlJoin(path.dirname(filePath), '..', 'articles', answer);
if (Fs.existsSync(mediaFilename)) {
answer = Fs.readFileSync(mediaFilename, 'utf8');
format = '.md';
} else {
GBLog.info(`[GBImporter] File not found: ${mediaFilename}.`);
answer = '';
}
2018-09-09 18:11:41 -03:00
}
2018-09-09 14:39:37 -03:00
// Processes subjects hierarchy splitting by dots.
const subjectArray = subjectsText.split('.');
2018-11-27 22:56:11 -02:00
let subject1: string;
let subject2: string;
let subject3: string;
let subject4: string;
let indexer = 0;
subjectArray.forEach(element => {
if (indexer === 0) {
subject1 = subjectArray[indexer].substring(0, 63);
} else if (indexer === 1) {
subject2 = subjectArray[indexer].substring(0, 63);
} else if (indexer === 2) {
subject3 = subjectArray[indexer].substring(0, 63);
} else if (indexer === 3) {
subject4 = subjectArray[indexer].substring(0, 63);
}
indexer++;
});
2018-09-09 18:11:41 -03:00
// Now with all the data ready, creates entities in the store.
const answer1 = await GuaribasAnswer.create({
instanceId: instanceId,
content: answer,
format: format,
packageId: packageId,
prevId: lastQuestionId !== null ? lastQuestionId : 0
});
const question1 = await GuaribasQuestion.create({
from: from,
to: to,
subject1: subject1,
subject2: subject2,
subject3: subject3,
subject4: subject4,
content: question,
instanceId: instanceId,
answerId: answer1.answerId,
packageId: packageId
});
2018-09-10 12:09:48 -03:00
if (lastAnswer !== undefined && lastQuestionId !== 0) {
await lastAnswer.update({ nextId: lastQuestionId });
}
lastAnswer = answer1;
lastQuestionId = question1.questionId;
return Promise.resolve(question1.questionId);
} else {
// Skips the header.
return Promise.resolve(undefined);
}
});
2018-04-21 02:59:30 -03:00
}
public async sendAnswer(min: GBMinInstance, channel: string, step: GBDialogStep, answer: GuaribasAnswer) {
2018-04-21 02:59:30 -03:00
if (answer.content.endsWith('.mp4')) {
await this.playVideo(min.conversationalService, step, answer);
}
else if (answer.format === '.md') {
await this.playMarkdown(min, answer, channel, step, min.conversationalService);
} else if (answer.content.endsWith('.ogg')) {
await this.playAudio(min, answer, channel, step, min.conversationalService);
} else {
await step.context.sendActivity(answer.content);
await min.conversationalService.sendEvent(step, 'stop', undefined);
}
}
private async playAudio(min: GBMinInstance, answer: GuaribasAnswer, channel: string, step: GBDialogStep, conversationalService: IGBConversationalService) {
conversationalService.sendAudio(min, step, answer.content);
}
private async playMarkdown(min: GBMinInstance, answer: GuaribasAnswer, channel: string, step: GBDialogStep, conversationalService: IGBConversationalService) {
let html = answer.content;
marked.setOptions({
renderer: new marked.Renderer(),
gfm: true,
tables: true,
breaks: false,
pedantic: false,
sanitize: false,
smartLists: true,
smartypants: false,
xhtml: false
});
html = marked(answer.content);
if (channel === 'webchat' &&
GBConfigService.get('DISABLE_WEB') !== 'true') {
await this.sendMarkdownToWeb(step, conversationalService, html, answer);
}
else if (channel === 'whatsapp') {
await this.sendMarkdownToMobile(step, answer, conversationalService, min);
2018-04-21 02:59:30 -03:00
}
}
private async sendMarkdownToWeb(step: GBDialogStep, conversationalService: IGBConversationalService, html: string, answer: GuaribasAnswer) {
const locale = step.context.activity.locale;
await step.context.sendActivity(Messages[locale].will_answer_projector);
html = html.replace(/src\=\"kb\//g, `src=\"../kb/`);
await conversationalService.sendEvent(step, 'play', {
playerType: 'markdown',
data: {
content: html,
answer: answer,
prevId: answer.prevId,
nextId: answer.nextId
}
});
}
private async sendMarkdownToMobile(step: GBDialogStep, answer: GuaribasAnswer, conversationalService: IGBConversationalService, min: GBMinInstance) {
let text = answer.content;
let sleep = (ms) => {
return new Promise(resolve => {
setTimeout(resolve, ms)
})
}
enum State {
InText,
InImage,
InImageBegin,
InImageCaption,
InImageAddressBegin,
InImageAddressBody
};
let state = State.InText;
let currentImage = '';
let currentText = '';
//![General Bots](/instance/images/gb.png)
for (var i = 0; i < text.length; i++) {
const c = text.charAt(i);
switch (state) {
case State.InText:
if (c === '!') {
state = State.InImageBegin;
}
else {
currentText = currentText.concat(c);
}
break;
case State.InImageBegin:
if (c === '[') {
if (currentText !== '') {
await step.context.sendActivity(currentText);
await sleep(3000);
}
currentText = '';
state = State.InImageCaption;
}
else {
state = State.InText;
currentText = currentText.concat('!').concat(c);
}
break;
case State.InImageCaption:
if (c === ']') {
state = State.InImageAddressBegin;
}
break;
case State.InImageAddressBegin:
if (c === '(') {
state = State.InImageAddressBody;
}
break;
case State.InImageAddressBody:
if (c === ')') {
state = State.InText;
let url = urlJoin(GBServer.globals.publicAddress, currentImage);
await conversationalService.sendFile(min, step, url);
await sleep(5000);
currentImage = '';
}
else {
currentImage = currentImage.concat(c);
}
break;
}
}
if (currentText !== '') {
await step.context.sendActivity(currentText);
}
}
private async playVideo(conversationalService: IGBConversationalService, step: GBDialogStep, answer: GuaribasAnswer) {
await conversationalService.sendEvent(step, 'play', {
playerType: 'video',
data: answer.content
});
}
2018-09-09 14:39:37 -03:00
public async importKbPackage(
localPath: string,
packageStorage: GuaribasPackage,
instance: IGBInstance
): Promise<any> {
// Imports subjects tree into database and return it.
2018-09-09 14:39:37 -03:00
await this.importSubjectFile(packageStorage.packageId, urlJoin(localPath, 'subjects.json'), instance);
2018-09-09 14:39:37 -03:00
// Import all .tsv files in the tabular directory.
2018-04-21 02:59:30 -03:00
return this.importKbTabularDirectory(localPath, instance, packageStorage.packageId);
}
2018-09-09 18:11:41 -03:00
public async importKbTabularDirectory(localPath: string, instance: IGBInstance, packageId: number): Promise<any> {
const files = await walkPromise(urlJoin(localPath, 'tabular'));
2018-04-21 02:59:30 -03:00
return Promise.all(
files.map(async file => {
if (file.name.endsWith('.xlsx')) {
return this.importKbTabularFile(urlJoin(file.root, file.name), instance.instanceId, packageId);
}
})
);
}
public async importSubjectFile(packageId: number, filename: string, instance: IGBInstance): Promise<any> {
const subjectsLoaded = JSON.parse(Fs.readFileSync(filename, 'utf8'));
const doIt = async (subjects: GuaribasSubject[], parentSubjectId: number) => {
return asyncPromise.eachSeries(subjects, async item => {
const value = await GuaribasSubject.create({
internalId: item.id,
parentSubjectId: parentSubjectId,
instanceId: instance.instanceId,
from: item.from,
to: item.to,
title: item.title,
description: item.description,
packageId: packageId
});
if (item.children) {
return Promise.resolve(doIt(item.children, value.subjectId));
} else {
return Promise.resolve(item);
}
});
};
2018-09-10 16:24:32 -03:00
return doIt(subjectsLoaded.children, undefined);
}
public async undeployKbFromStorage(instance: IGBInstance, deployer: GBDeployer, packageId: number) {
await GuaribasQuestion.destroy({
where: { instanceId: instance.instanceId, packageId: packageId }
});
await GuaribasAnswer.destroy({
where: { instanceId: instance.instanceId, packageId: packageId }
});
await GuaribasSubject.destroy({
where: { instanceId: instance.instanceId, packageId: packageId }
});
await GuaribasPackage.destroy({
where: { instanceId: instance.instanceId, packageId: packageId }
});
await deployer.rebuildIndex(instance, new AzureDeployerService(deployer).getKBSearchSchema(instance.searchIndex));
}
2018-04-21 02:59:30 -03:00
/**
* Deploys a knowledge base to the storage using the .gbkb format.
*
* @param localPath Path to the .gbkb folder.
*/
public async deployKb(core: IGBCoreService, deployer: GBDeployer, localPath: string) {
const packageType = Path.extname(localPath);
const packageName = Path.basename(localPath);
GBLog.info(`[GBDeployer] Opening package: ${localPath}`);
const packageObject = JSON.parse(Fs.readFileSync(urlJoin(localPath, 'package.json'), 'utf8'));
const instance = await core.loadInstance(packageObject.botId);
GBLog.info(`[GBDeployer] Importing: ${localPath}`);
const p = await deployer.deployPackageToStorage(instance.instanceId, packageName);
await this.importKbPackage(localPath, p, instance);
deployer.rebuildIndex(instance, new AzureDeployerService(deployer).getKBSearchSchema(instance.searchIndex));
GBLog.info(`[GBDeployer] Finished import of ${localPath}`);
}
2018-04-21 02:59:30 -03:00
}