oa_based/src/modules/netdisk/netdisk.module.ts

90 lines
2.8 KiB
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import { Module } from '@nestjs/common';
2024-03-21 15:03:07 +08:00
import { ConfigService } from '@nestjs/config';
2024-02-28 17:02:46 +08:00
import { RouterModule } from '@nestjs/core';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { UserModule } from '../user/user.module';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { NetDiskManageController } from './manager/manage.controller';
import { NetDiskOverviewController } from './overview/overview.controller';
import { NetDiskOverviewService } from './overview/overview.service';
2024-03-08 16:24:29 +08:00
import { MinioService } from './minio/minio.service';
import { NetDiskManageService } from './manager/manage.service';
2024-03-21 15:03:07 +08:00
import { NestMinioModule } from 'nestjs-minio';
// const getMinioConfig = () => {
// const configService = new ConfigService();
// const endPoint = configService.get<string>('MINIO_ENDPOINT', 'localhost');
// const accessKey = configService.get<string>('MINIO_ACCESSKEY', 'accessKey');
// const secretKey = configService.get<string>('MINIO_SECRET_KEY', 'secretKey');
// return NestMinioModule.register({
// isGlobal: true,
// endPoint,
// port: 9000,
// accessKey,
// secretKey,
// useSSL: false
// });
// };
2024-02-28 08:32:35 +08:00
@Module({
2024-02-28 17:02:46 +08:00
imports: [
UserModule,
RouterModule.register([
{
path: 'netdisk',
2024-02-29 09:29:03 +08:00
module: NetdiskModule
}
2024-03-21 15:03:07 +08:00
]),
// getMinioConfig()
NestMinioModule.registerAsync({
inject: [ConfigService],
isGlobal: true,
useFactory: async (configService: ConfigService) => {
const ossConfig = configService.get('oss');
return {
endPoint: ossConfig.domain,
port: ossConfig.port,
useSSL: ossConfig.useSSL,
accessKey: ossConfig.accessKey,
secretKey: ossConfig.secretKey
};
}
// endPoint: 'play.min.io',
// port: 9000,
// useSSL: true,
// accessKey: 'Q3AM3UQ867SPQQA43P2F',
// secretKey: 'zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG'
})
2024-02-28 17:02:46 +08:00
],
2024-02-28 08:32:35 +08:00
controllers: [NetDiskManageController, NetDiskOverviewController],
2024-03-08 16:24:29 +08:00
providers: [NetDiskManageService, NetDiskOverviewService, MinioService]
2024-02-28 08:32:35 +08:00
})
export class NetdiskModule {}
2024-03-21 15:03:07 +08:00
// TypeOrmModule.forRootAsync({
// inject: [ConfigService],
// useFactory: (configService: ConfigService<ConfigKeyPaths>) => {
// let loggerOptions: LoggerOptions = env('DB_LOGGING') as 'all';
// try {
// // 解析成 js 数组 ['error']
// loggerOptions = JSON.parse(loggerOptions);
// } catch {
// // ignore
// }
// return {
// ...configService.get<IDatabaseConfig>('database'),
// autoLoadEntities: true,
// logging: loggerOptions,
// logger: new TypeORMLogger(loggerOptions)
// };
// },
// // dataSource receives the configured DataSourceOptions
// // and returns a Promise<DataSource>.
// dataSourceFactory: async options => {
// const dataSource = await new DataSource(options).initialize();
// return dataSource;
// }
// })
// ],