2020-03-19 16:21:35 +03:00
|
|
|
import { Injectable, OnModuleInit } from '@nestjs/common';
|
|
|
|
import { DiscoveryService, ModuleRef } from '@nestjs/core';
|
|
|
|
import { InstanceWrapper } from '@nestjs/core/injector/instance-wrapper';
|
|
|
|
import { MetadataScanner } from '@nestjs/core/metadata-scanner';
|
|
|
|
import Telegraf from 'telegraf';
|
|
|
|
import { TelegrafMetadataAccessor } from './telegraf-metadata.accessor';
|
|
|
|
import { TelegrafProvider } from './telegraf.provider';
|
|
|
|
import { TELEGRAF_PROVIDER } from './telegraf.constants';
|
|
|
|
import { ContextMessageUpdate } from 'telegraf';
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class TelegrafExplorer implements OnModuleInit {
|
|
|
|
constructor(
|
|
|
|
private readonly moduleRef: ModuleRef,
|
|
|
|
private readonly discoveryService: DiscoveryService,
|
|
|
|
private readonly metadataAccessor: TelegrafMetadataAccessor,
|
|
|
|
private readonly metadataScanner: MetadataScanner,
|
|
|
|
) {}
|
|
|
|
|
|
|
|
onModuleInit() {
|
|
|
|
this.explore();
|
|
|
|
}
|
|
|
|
|
|
|
|
explore() {
|
|
|
|
const providers: InstanceWrapper[] = this.discoveryService.getProviders();
|
|
|
|
providers.forEach((wrapper: InstanceWrapper) => {
|
|
|
|
const { instance } = wrapper;
|
|
|
|
|
|
|
|
if (!instance) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const telegraf = this.moduleRef.get<TelegrafProvider<any>>(
|
|
|
|
TELEGRAF_PROVIDER,
|
|
|
|
{ strict: false },
|
|
|
|
);
|
|
|
|
|
|
|
|
this.metadataScanner.scanFromPrototype(
|
|
|
|
instance,
|
|
|
|
Object.getPrototypeOf(instance),
|
|
|
|
(key: string) => {
|
2020-03-19 16:34:44 +03:00
|
|
|
if (this.metadataAccessor.isTelegrafUse(instance[key])) {
|
|
|
|
this.handleTelegrafUse(instance, key, telegraf);
|
2020-03-19 16:21:35 +03:00
|
|
|
} else if (this.metadataAccessor.isTelegrafOn(instance[key])) {
|
|
|
|
const metadata = this.metadataAccessor.getTelegrafOnMetadata(
|
|
|
|
instance[key],
|
|
|
|
);
|
|
|
|
this.handleTelegrafOn(instance, key, telegraf, metadata);
|
|
|
|
} else if (this.metadataAccessor.isTelegrafHears(instance[key])) {
|
|
|
|
const metadata = this.metadataAccessor.getTelegrafHearsMetadata(
|
|
|
|
instance[key],
|
|
|
|
);
|
|
|
|
this.handleTelegrafHears(instance, key, telegraf, metadata);
|
2020-03-19 16:39:47 +03:00
|
|
|
} else if (this.metadataAccessor.isTelegrafCommand(instance[key])) {
|
|
|
|
const metadata = this.metadataAccessor.getTelegrafCommandMetadata(
|
|
|
|
instance[key],
|
|
|
|
);
|
|
|
|
this.handleTelegrafCommand(instance, key, telegraf, metadata);
|
2020-03-19 16:44:05 +03:00
|
|
|
} else if (this.metadataAccessor.isTelegrafStart(instance[key])) {
|
|
|
|
this.handleTelegrafStart(instance, key, telegraf);
|
|
|
|
} else if (this.metadataAccessor.isTelegrafHelp(instance[key])) {
|
|
|
|
this.handleTelegrafHelp(instance, key, telegraf);
|
2020-03-19 16:46:31 +03:00
|
|
|
} else if (this.metadataAccessor.isTelegrafSettings(instance[key])) {
|
|
|
|
this.handleTelegrafSettings(instance, key, telegraf);
|
2020-03-19 16:54:34 +03:00
|
|
|
} else if (this.metadataAccessor.isTelegrafEntity(instance[key])) {
|
|
|
|
const metadata = this.metadataAccessor.getTelegrafEntityMetadata(
|
|
|
|
instance[key],
|
|
|
|
);
|
|
|
|
this.handleTelegrafEntity(instance, key, telegraf, metadata);
|
2020-03-19 16:58:27 +03:00
|
|
|
} else if (this.metadataAccessor.isTelegrafMention(instance[key])) {
|
|
|
|
const metadata = this.metadataAccessor.getTelegrafMentionMetadata(
|
|
|
|
instance[key],
|
|
|
|
);
|
|
|
|
this.handleTelegrafMention(instance, key, telegraf, metadata);
|
2020-03-19 16:21:35 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-03-19 16:34:44 +03:00
|
|
|
handleTelegrafUse(
|
|
|
|
instance: object,
|
|
|
|
key: string,
|
|
|
|
telegraf: Telegraf<ContextMessageUpdate>,
|
|
|
|
) {
|
|
|
|
telegraf.use(instance[key].bind(instance));
|
|
|
|
}
|
|
|
|
|
2020-03-19 16:21:35 +03:00
|
|
|
handleTelegrafOn(
|
|
|
|
instance: object,
|
|
|
|
key: string,
|
|
|
|
telegraf: Telegraf<ContextMessageUpdate>,
|
|
|
|
metadata: any,
|
|
|
|
) {
|
|
|
|
telegraf.on(metadata.updateTypes, instance[key].bind(instance));
|
|
|
|
}
|
|
|
|
|
2020-03-19 16:44:05 +03:00
|
|
|
handleTelegrafHears(
|
2020-03-19 16:21:35 +03:00
|
|
|
instance: object,
|
|
|
|
key: string,
|
|
|
|
telegraf: Telegraf<ContextMessageUpdate>,
|
2020-03-19 16:44:05 +03:00
|
|
|
metadata: any,
|
2020-03-19 16:21:35 +03:00
|
|
|
) {
|
2020-03-19 16:44:05 +03:00
|
|
|
telegraf.hears(metadata.triggers, instance[key].bind(instance));
|
2020-03-19 16:21:35 +03:00
|
|
|
}
|
|
|
|
|
2020-03-19 16:44:05 +03:00
|
|
|
handleTelegrafCommand(
|
2020-03-19 16:21:35 +03:00
|
|
|
instance: object,
|
|
|
|
key: string,
|
|
|
|
telegraf: Telegraf<ContextMessageUpdate>,
|
|
|
|
metadata: any,
|
|
|
|
) {
|
2020-03-19 16:44:05 +03:00
|
|
|
telegraf.command(metadata.commands, instance[key].bind(instance));
|
2020-03-19 16:21:35 +03:00
|
|
|
}
|
2020-03-19 16:39:47 +03:00
|
|
|
|
2020-03-19 16:44:05 +03:00
|
|
|
handleTelegrafStart(
|
2020-03-19 16:39:47 +03:00
|
|
|
instance: object,
|
|
|
|
key: string,
|
|
|
|
telegraf: Telegraf<ContextMessageUpdate>,
|
|
|
|
) {
|
2020-03-19 16:44:05 +03:00
|
|
|
telegraf.start(instance[key].bind(instance));
|
|
|
|
}
|
|
|
|
|
|
|
|
handleTelegrafHelp(
|
|
|
|
instance: object,
|
|
|
|
key: string,
|
|
|
|
telegraf: Telegraf<ContextMessageUpdate>,
|
|
|
|
) {
|
|
|
|
telegraf.help(instance[key].bind(instance));
|
2020-03-19 16:39:47 +03:00
|
|
|
}
|
2020-03-19 16:46:31 +03:00
|
|
|
|
|
|
|
handleTelegrafSettings(
|
|
|
|
instance: object,
|
|
|
|
key: string,
|
|
|
|
telegraf: Telegraf<ContextMessageUpdate>,
|
|
|
|
) {
|
|
|
|
// @ts-ignore
|
|
|
|
telegraf.settings(instance[key].bind(instance));
|
|
|
|
}
|
2020-03-19 16:54:34 +03:00
|
|
|
|
|
|
|
handleTelegrafEntity(
|
|
|
|
instance: object,
|
|
|
|
key: string,
|
|
|
|
telegraf: Telegraf<ContextMessageUpdate>,
|
|
|
|
metadata: any,
|
|
|
|
) {
|
|
|
|
// @ts-ignore
|
|
|
|
telegraf.entity(metadata.entity, instance[key].bind(instance));
|
|
|
|
}
|
2020-03-19 16:58:27 +03:00
|
|
|
|
|
|
|
handleTelegrafMention(
|
|
|
|
instance: object,
|
|
|
|
key: string,
|
|
|
|
telegraf: Telegraf<ContextMessageUpdate>,
|
|
|
|
metadata: any,
|
|
|
|
) {
|
|
|
|
// @ts-ignore
|
|
|
|
telegraf.mention(metadata.username, instance[key].bind(instance));
|
|
|
|
}
|
2020-03-19 16:21:35 +03:00
|
|
|
}
|