nestjs-telegraf/lib/telegraf-telegram.service.ts

34 lines
835 B
TypeScript
Raw Normal View History

import { Injectable, Inject } from '@nestjs/common'
2019-05-11 21:10:14 +03:00
const Telegram = require('telegraf/telegram')
2020-01-12 02:41:27 +03:00
import { TokenInjectionToken } from './telegraf.constants'
2020-01-12 01:15:32 +03:00
import { TelegrafOptionsFactory } from './interfaces'
@Injectable()
export class TelegrafTelegramService {
private telegram: any
public constructor(
2020-01-12 02:41:27 +03:00
@Inject(TokenInjectionToken) options: TelegrafOptionsFactory,
) {
2020-01-12 02:41:27 +03:00
const { token } = options.createTelegrafOptions()
this.telegram = new Telegram(token)
}
public async sendMessage(
chatId: string | number,
text: string,
): Promise<void> {
await this.telegram.sendMessage(chatId, text)
}
2019-07-18 14:32:33 +03:00
public async sendMarkdown(
chatId: string | number,
markdown: string,
): Promise<void> {
await this.telegram.sendMessage(chatId, markdown, {
parse_mode: 'Markdown',
})
}
}