2020-12-25 23:11:16 +03:00
|
|
|
import { Injectable } from '@nestjs/common';
|
2020-03-19 16:21:35 +03:00
|
|
|
import { Reflector } from '@nestjs/core';
|
2020-03-19 18:20:07 +03:00
|
|
|
import {
|
2020-12-29 22:41:06 +03:00
|
|
|
SCENE_METADATA,
|
2021-01-05 12:37:04 +03:00
|
|
|
LISTENER_METADATA,
|
2020-12-26 16:11:09 +03:00
|
|
|
UPDATE_METADATA,
|
2021-01-02 21:40:13 +03:00
|
|
|
} from '../telegraf.constants';
|
|
|
|
import { ListenerMetadata } from '../interfaces';
|
2020-03-19 16:21:35 +03:00
|
|
|
|
|
|
|
@Injectable()
|
2021-01-02 01:27:01 +03:00
|
|
|
export class MetadataAccessorService {
|
2020-03-19 16:21:35 +03:00
|
|
|
constructor(private readonly reflector: Reflector) {}
|
|
|
|
|
2020-12-26 14:54:10 +03:00
|
|
|
isUpdate(target: Function): boolean {
|
2021-01-06 19:38:58 +03:00
|
|
|
if (!target) return false;
|
2020-12-26 23:19:30 +03:00
|
|
|
return !!this.reflector.get(UPDATE_METADATA, target);
|
2020-12-26 14:54:10 +03:00
|
|
|
}
|
|
|
|
|
2020-12-29 22:41:06 +03:00
|
|
|
isScene(target: Function): boolean {
|
2021-01-06 19:38:58 +03:00
|
|
|
if (!target) return false;
|
2020-12-29 22:41:06 +03:00
|
|
|
return !!this.reflector.get(SCENE_METADATA, target);
|
|
|
|
}
|
|
|
|
|
2020-12-27 21:35:01 +03:00
|
|
|
getListenerMetadata(target: Function): ListenerMetadata | undefined {
|
2021-01-05 12:37:04 +03:00
|
|
|
return this.reflector.get(LISTENER_METADATA, target);
|
2020-03-19 17:28:56 +03:00
|
|
|
}
|
2020-12-29 22:41:06 +03:00
|
|
|
|
|
|
|
getSceneMetadata(target: Function): string | undefined {
|
|
|
|
return this.reflector.get(SCENE_METADATA, target);
|
|
|
|
}
|
2020-03-19 16:21:35 +03:00
|
|
|
}
|