2024-09-10 09:50:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2024 Hexastack. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
|
|
|
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
|
|
|
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
|
|
|
|
*/
|
|
|
|
|
|
|
|
import path from 'path';
|
|
|
|
|
2024-10-21 14:09:59 +00:00
|
|
|
// eslint-disable-next-line import/order
|
|
|
|
import { MailerModule } from '@nestjs-modules/mailer';
|
|
|
|
// eslint-disable-next-line import/order
|
|
|
|
import { MjmlAdapter } from '@nestjs-modules/mailer/dist/adapters/mjml.adapter';
|
2024-09-10 09:50:11 +00:00
|
|
|
import { CacheModule } from '@nestjs/cache-manager';
|
2024-10-13 20:11:34 +00:00
|
|
|
import { Module } from '@nestjs/common';
|
2024-09-10 09:50:11 +00:00
|
|
|
import { APP_GUARD } from '@nestjs/core';
|
|
|
|
import { EventEmitterModule } from '@nestjs/event-emitter';
|
|
|
|
import { MongooseModule } from '@nestjs/mongoose';
|
|
|
|
import { CsrfGuard, CsrfModule } from '@tekuconcept/nestjs-csrf';
|
|
|
|
import {
|
|
|
|
AcceptLanguageResolver,
|
|
|
|
I18nOptions,
|
|
|
|
QueryResolver,
|
|
|
|
} from 'nestjs-i18n';
|
|
|
|
import SMTPTransport from 'nodemailer/lib/smtp-transport';
|
|
|
|
|
|
|
|
import { AnalyticsModule } from './analytics/analytics.module';
|
|
|
|
import { AppController } from './app.controller';
|
|
|
|
import { AppService } from './app.service';
|
|
|
|
import { AttachmentModule } from './attachment/attachment.module';
|
|
|
|
import { ChannelModule } from './channel/channel.module';
|
|
|
|
import { ChatModule } from './chat/chat.module';
|
|
|
|
import { CmsModule } from './cms/cms.module';
|
|
|
|
import { config } from './config';
|
2024-10-21 14:09:59 +00:00
|
|
|
import { HelperModule } from './helper/helper.module';
|
2024-09-22 07:55:15 +00:00
|
|
|
import { I18nModule } from './i18n/i18n.module';
|
2024-09-10 09:50:11 +00:00
|
|
|
import { LoggerModule } from './logger/logger.module';
|
|
|
|
import { NlpModule } from './nlp/nlp.module';
|
|
|
|
import { PluginsModule } from './plugins/plugins.module';
|
|
|
|
import { SettingModule } from './setting/setting.module';
|
|
|
|
import { Ability } from './user/guards/ability.guard';
|
|
|
|
import { UserModule } from './user/user.module';
|
|
|
|
import idPlugin from './utils/schema-plugin/id.plugin';
|
|
|
|
import { WebsocketModule } from './websocket/websocket.module';
|
|
|
|
|
|
|
|
const i18nOptions: I18nOptions = {
|
2024-09-24 10:23:40 +00:00
|
|
|
fallbackLanguage: 'en',
|
2024-09-10 09:50:11 +00:00
|
|
|
loaderOptions: {
|
|
|
|
path: path.join(__dirname, '/config/i18n/'),
|
|
|
|
watch: true,
|
|
|
|
},
|
|
|
|
resolvers: [
|
|
|
|
{ use: QueryResolver, options: ['lang'] },
|
|
|
|
AcceptLanguageResolver,
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
|
|
|
@Module({
|
|
|
|
imports: [
|
2024-09-18 16:33:12 +00:00
|
|
|
...(config.emails.isEnabled
|
|
|
|
? [
|
|
|
|
MailerModule.forRoot({
|
|
|
|
transport: new SMTPTransport({
|
|
|
|
...config.emails.smtp,
|
|
|
|
logger: true,
|
|
|
|
debug: false,
|
|
|
|
}),
|
|
|
|
template: {
|
|
|
|
adapter: new MjmlAdapter('ejs', { inlineCssEnabled: false }),
|
|
|
|
dir: './src/templates',
|
|
|
|
options: {
|
|
|
|
context: {
|
|
|
|
appName: config.parameters.appName,
|
|
|
|
appUrl: config.parameters.appUrl,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
defaults: { from: config.emails.from },
|
|
|
|
}),
|
|
|
|
]
|
|
|
|
: []),
|
2024-09-10 09:50:11 +00:00
|
|
|
MongooseModule.forRoot(config.mongo.uri, {
|
|
|
|
dbName: config.mongo.dbName,
|
|
|
|
connectionFactory: (connection) => {
|
|
|
|
connection.plugin(idPlugin);
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
|
|
connection.plugin(require('mongoose-lean-virtuals'));
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
|
|
connection.plugin(require('mongoose-lean-getters'));
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
|
|
connection.plugin(require('mongoose-lean-defaults').default);
|
|
|
|
return connection;
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
NlpModule,
|
|
|
|
CmsModule,
|
|
|
|
UserModule,
|
|
|
|
SettingModule,
|
|
|
|
AttachmentModule,
|
|
|
|
AnalyticsModule,
|
|
|
|
ChatModule,
|
|
|
|
ChannelModule,
|
|
|
|
PluginsModule,
|
2024-10-21 14:09:59 +00:00
|
|
|
HelperModule,
|
2024-09-10 09:50:11 +00:00
|
|
|
LoggerModule,
|
|
|
|
WebsocketModule,
|
|
|
|
EventEmitterModule.forRoot({
|
|
|
|
// set this to `true` to use wildcards
|
|
|
|
wildcard: true,
|
|
|
|
// the delimiter used to segment namespaces
|
|
|
|
delimiter: ':',
|
|
|
|
// set this to `true` if you want to emit the newListener event
|
|
|
|
newListener: false,
|
|
|
|
// set this to `true` if you want to emit the removeListener event
|
|
|
|
removeListener: false,
|
|
|
|
// the maximum amount of listeners that can be assigned to an event
|
|
|
|
maxListeners: 10,
|
|
|
|
// show event name in memory leak message when more than maximum amount of listeners is assigned
|
|
|
|
verboseMemoryLeak: false,
|
|
|
|
// disable throwing uncaughtException if an error event is emitted and it has no listeners
|
|
|
|
ignoreErrors: false,
|
|
|
|
}),
|
|
|
|
CsrfModule,
|
2024-09-22 07:55:15 +00:00
|
|
|
I18nModule.forRoot(i18nOptions),
|
2024-09-10 09:50:11 +00:00
|
|
|
CacheModule.register({
|
|
|
|
isGlobal: true,
|
|
|
|
ttl: config.cache.ttl,
|
|
|
|
max: config.cache.max,
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
controllers: [AppController],
|
|
|
|
providers: [
|
|
|
|
{ provide: APP_GUARD, useClass: Ability },
|
|
|
|
{ provide: APP_GUARD, useClass: CsrfGuard },
|
|
|
|
AppService,
|
|
|
|
],
|
|
|
|
})
|
2024-10-26 09:36:47 +00:00
|
|
|
export class HexabotModule {}
|