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).
|
|
|
|
*/
|
|
|
|
|
2024-10-02 05:24:49 +00:00
|
|
|
import { HttpModule } from '@nestjs/axios';
|
2024-10-22 10:01:44 +00:00
|
|
|
import {
|
|
|
|
Global,
|
|
|
|
MiddlewareConsumer,
|
|
|
|
Module,
|
|
|
|
RequestMethod,
|
|
|
|
} from '@nestjs/common';
|
2024-09-10 09:50:11 +00:00
|
|
|
import { InjectDynamicProviders } from 'nestjs-dynamic-providers';
|
|
|
|
|
|
|
|
import { AttachmentModule } from '@/attachment/attachment.module';
|
|
|
|
import { ChatModule } from '@/chat/chat.module';
|
|
|
|
import { CmsModule } from '@/cms/cms.module';
|
|
|
|
|
|
|
|
import { ChannelController } from './channel.controller';
|
|
|
|
import { ChannelMiddleware } from './channel.middleware';
|
|
|
|
import { ChannelService } from './channel.service';
|
|
|
|
import { WebhookController } from './webhook.controller';
|
|
|
|
|
|
|
|
export interface ChannelModuleOptions {
|
|
|
|
folder: string;
|
|
|
|
}
|
|
|
|
|
2024-10-22 10:01:44 +00:00
|
|
|
@Global()
|
2024-10-22 10:08:43 +00:00
|
|
|
@InjectDynamicProviders(
|
|
|
|
// Core & under dev channels
|
|
|
|
'dist/extensions/**/*.channel.js',
|
2024-10-27 11:23:32 +00:00
|
|
|
// Community extensions installed via npm
|
|
|
|
'dist/.hexabot/contrib/extensions/channels/**/*.channel.js',
|
|
|
|
// Custom extensions under dev
|
|
|
|
'dist/.hexabot/custom/extensions/channels/**/*.channel.js',
|
2024-10-22 10:08:43 +00:00
|
|
|
)
|
2024-09-10 09:50:11 +00:00
|
|
|
@Module({
|
|
|
|
controllers: [WebhookController, ChannelController],
|
|
|
|
providers: [ChannelService],
|
|
|
|
exports: [ChannelService],
|
2024-10-21 14:09:59 +00:00
|
|
|
imports: [ChatModule, AttachmentModule, CmsModule, HttpModule],
|
2024-09-10 09:50:11 +00:00
|
|
|
})
|
|
|
|
export class ChannelModule {
|
|
|
|
configure(consumer: MiddlewareConsumer) {
|
|
|
|
consumer
|
|
|
|
.apply(ChannelMiddleware)
|
|
|
|
.forRoutes({ path: 'webhook/*', method: RequestMethod.ALL });
|
|
|
|
}
|
|
|
|
}
|