NestJS電報ボットでfactsgeneratormoduleのために異なる多言語設定を加えてください
29599 ワード
リンク
https://github.com/EndyKaufman/kaufman-bot - ボットのソースコード
https://telegram.me/DevelopKaufmanBot - 現在のロボット
カスタムインジェクター
作品の説明
事実ジェネレータは、ScraperModuleに基づいて、我々はこのモジュールに別の言語の異なる構成をサポートするロジックを導入しません.
異なる言語のための異なったオプションのために、異なった構成で重複したScraperModule輸入を加えて、言語特有のコマンドハンドラーを作成します.
二つの異なるスクライブモジュールの論理が重複しないようにするためには、CustminMinjectorModule内のインポートをラップします.要点
更新事実発生器
ロシア語の新しいサービスを作成する
LIBS/事実発生器/サーバ/src/lib/事実発生器サービス/ru事実発生器.サービスTS
import {
BotCommandsEnum,
BotCommandsProvider,
BotCommandsProviderActionMsg,
BotCommandsProviderActionResultType,
BotСommandsToolsService,
} from '@kaufman-bot/core/server';
import { ScraperService } from '@kaufman-bot/html-scraper/server';
import { Injectable } from '@nestjs/common';
@Injectable()
export class RuFactsGeneratorService implements BotCommandsProvider {
constructor(
private readonly scraperService: ScraperService,
private readonly botСommandsToolsService: BotСommandsToolsService
) {}
async onHelp<
TMsg extends BotCommandsProviderActionMsg = BotCommandsProviderActionMsg
>(msg: TMsg) {
const locale = msg.from?.language_code;
if (!locale?.includes('ru')) {
return null;
}
return await this.scraperService.onHelp(msg);
}
async onMessage<
TMsg extends BotCommandsProviderActionMsg = BotCommandsProviderActionMsg
>(msg: TMsg): Promise<BotCommandsProviderActionResultType<TMsg>> {
const locale = msg.from?.language_code;
if (!locale?.includes('ru')) {
return null;
}
if (
this.botСommandsToolsService.checkCommands(
msg.text,
[...Object.keys(BotCommandsEnum)],
locale
)
) {
const result = await this.scraperService.onMessage(msg);
try {
if (result?.type === 'text') {
return {
type: 'text',
text: result.text.split('\\"').join('"').split('\n').join(' '),
};
}
return result;
} catch (err) {
console.debug(result);
console.error(err, err.stack);
throw err;
}
}
return null;
}
}
英語の古いサービスを更新
リブス/ファクトジェネレータ/サーバ/src/lib/事実発生器サービス/ファクトジェネレータ.サービスTS
import {
BotCommandsEnum,
BotCommandsProvider,
BotCommandsProviderActionMsg,
BotCommandsProviderActionResultType,
BotСommandsToolsService,
} from '@kaufman-bot/core/server';
import { ScraperService } from '@kaufman-bot/html-scraper/server';
import { Injectable } from '@nestjs/common';
@Injectable()
export class FactsGeneratorService implements BotCommandsProvider {
constructor(
private readonly scraperService: ScraperService,
private readonly botСommandsToolsService: BotСommandsToolsService
) {}
async onHelp<
TMsg extends BotCommandsProviderActionMsg = BotCommandsProviderActionMsg
>(msg: TMsg) {
const locale = msg.from?.language_code;
if (locale?.includes('ru')) {
return null;
}
return await this.scraperService.onHelp(msg);
}
async onMessage<
TMsg extends BotCommandsProviderActionMsg = BotCommandsProviderActionMsg
>(msg: TMsg): Promise<BotCommandsProviderActionResultType<TMsg>> {
const locale = msg.from?.language_code;
if (locale?.includes('ru')) {
return null;
}
if (
this.botСommandsToolsService.checkCommands(
msg.text,
[...Object.keys(BotCommandsEnum)],
locale
)
) {
const result = await this.scraperService.onMessage(msg);
try {
if (result?.type === 'text') {
return {
type: 'text',
text: result.text
.replace('\n\nTweet [http://twitter.com/share]', '')
.split('\\"')
.join('"')
.split('\n')
.join(' '),
};
}
return result;
} catch (err) {
console.debug(result);
console.error(err, err.stack);
throw err;
}
}
return null;
}
}
update FactsGeneratorモジュール
LIBS/ファクトジェネレータ/サーバー/src/lib/事実ジェネレータ.モジュールです.TS
import {
BotCommandsModule,
BOT_COMMANDS_PROVIDER,
} from '@kaufman-bot/core/server';
import { ScraperModule } from '@kaufman-bot/html-scraper/server';
import { DynamicModule, Module } from '@nestjs/common';
import { getText } from 'class-validator-multi-lang';
import { CustomInjectorModule } from 'nestjs-custom-injector';
import { TranslatesModule } from 'nestjs-translates';
import { FactsGeneratorService } from './facts-generator-services/facts-generator.service';
import { RuFactsGeneratorService } from './facts-generator-services/ru-facts-generator.service';
@Module({
imports: [TranslatesModule, BotCommandsModule],
exports: [TranslatesModule, BotCommandsModule],
})
export class FactsGeneratorModule {
static forRoot(): DynamicModule {
return {
module: FactsGeneratorModule,
imports: [
CustomInjectorModule.forFeature({
imports: [
ScraperModule.forRoot({
name: getText('Facts generator'),
descriptions: getText(
'Command to generate text with a random fact'
),
usage: [getText('get facts'), getText('facts help')],
contentSelector: '#z',
spyWords: [getText('facts')],
removeWords: [getText('get'), getText('please')],
uri: 'http://randomfactgenerator.net/',
}),
],
providers: [
{
provide: BOT_COMMANDS_PROVIDER,
useClass: FactsGeneratorService,
},
],
exports: [ScraperModule],
}),
CustomInjectorModule.forFeature({
imports: [
ScraperModule.forRoot({
name: getText('Facts generator'),
descriptions: getText(
'Command to generate text with a random fact'
),
usage: [getText('get facts'), getText('facts help')],
contentSelector: '#fact > table > tbody > tr > td',
spyWords: [getText('facts')],
removeWords: [getText('get'), getText('please')],
uri: 'https://randstuff.ru/fact/',
contentCodepage: 'utf8',
}),
],
providers: [
{
provide: BOT_COMMANDS_PROVIDER,
useClass: RuFactsGeneratorService,
},
],
exports: [ScraperModule],
}),
],
};
}
}
必要に応じてファイルを準備し、翻訳を追加する
npm run generate
何も変更されないので、我々はコードをコミットして、電報からそれをテストするかもしれません
新しいロジックをチェックしてください
共通ヘルプメッセージ
ロシア語の共通のヘルプメッセージ
英語で事実を得る
ロシア語で事実を得る
次のポストでは、英語とロシア語の人々の引用符とジョークを追加します.
Reference
この問題について(NestJS電報ボットでfactsgeneratormoduleのために異なる多言語設定を加えてください), 我々は、より多くの情報をここで見つけました https://dev.to/endykaufman/add-different-multilingual-settings-for-factsgeneratormodule-in-nestjs-telegram-bot-102iテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol