/*****************************************************************************\ | █████ █████ ██ █ █████ █████ ████ ██ ████ █████ █████ ███ ® | | ██ █ ███ █ █ ██ ██ ██ ██ ██ ██ █ ██ ██ █ █ | | ██ ███ ████ █ ██ █ ████ █████ ██████ ██ ████ █ █ █ ██ | | ██ ██ █ █ ██ █ █ ██ ██ ██ ██ ██ ██ █ ██ ██ █ █ | | █████ █████ █ ███ █████ ██ ██ ██ ██ █████ ████ █████ █ ███ | | | | 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. | | | \*****************************************************************************/ /** * @fileoverview General Bots server core. */ 'use strict'; import { GuaribasConversation } from '../../analytics.gblib/models/index.js'; import { AutoIncrement, BelongsTo, Column, DataType, ForeignKey, Length, Model, PrimaryKey, Table } from 'sequelize-typescript'; import { GuaribasInstance } from '../../core.gbapp/models/GBModel.js'; /** * A user and its metadata. */ @Table export class GuaribasUser extends Model { @PrimaryKey @AutoIncrement @Column(DataType.INTEGER) declare userId: number; @Column(DataType.STRING(255)) declare displayName: string; @Column(DataType.STRING(255)) declare userSystemId: string; @Column(DataType.STRING(255)) declare userName: string; @Column(DataType.STRING(255)) declare defaultChannel: string; @Column(DataType.STRING(255)) declare email: string; @Column(DataType.STRING(5)) declare locale: string; @ForeignKey(() => GuaribasInstance) @Column(DataType.INTEGER) declare instanceId: number; @BelongsTo(() => GuaribasInstance) declare instance: GuaribasInstance; @Column(DataType.INTEGER) declare agentSystemId: string; @Column(DataType.DATE) declare agentContacted: Date; @Column(DataType.STRING(16)) declare agentMode: string; @Column(DataType.TEXT) declare conversationReference: string; @Column(DataType.INTEGER) declare conversationId: number; @Column(DataType.STRING(64)) declare hearOnDialog: string; @Column(DataType.STRING(4000)) declare params: string; } /** * A group of users. */ @Table export class GuaribasGroup extends Model { @PrimaryKey @AutoIncrement @Column(DataType.INTEGER) declare groupId: number; @Length({ min: 0, max: 512 }) @Column(DataType.STRING(512)) declare displayName: string; @ForeignKey(() => GuaribasInstance) @Column(DataType.INTEGER) declare instanceId: number; @BelongsTo(() => GuaribasInstance) declare instance: GuaribasInstance; } /** * Relation of groups and users. */ @Table export class GuaribasUserGroup extends Model { @ForeignKey(() => GuaribasUser) @Column(DataType.INTEGER) declare userId: number; @ForeignKey(() => GuaribasGroup) @Column(DataType.INTEGER) declare groupId: number; @ForeignKey(() => GuaribasInstance) @Column(DataType.INTEGER) declare instanceId: number; @BelongsTo(() => GuaribasInstance) declare instance: GuaribasInstance; @BelongsTo(() => GuaribasGroup) declare group: GuaribasGroup; @BelongsTo(() => GuaribasUser) declare user: GuaribasUser; }