mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2025-04-05 16:03:44 +03:00
chore: publish 0.7.0 release (#6)
* feat(TelegramActionHandler): add 'action' parameter for handling 'callback_data'
This commit is contained in:
parent
57baf28809
commit
6138ae0918
@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
"trailingComma": "none",
|
"trailingComma": "es5",
|
||||||
"singleQuote": true
|
"singleQuote": true,
|
||||||
|
"semi": false
|
||||||
}
|
}
|
@ -1,4 +1,5 @@
|
|||||||
import { ContextTransformer } from './'
|
import { ContextTransformer } from './'
|
||||||
|
import { HearsTriggers } from 'telegraf'
|
||||||
import { Type } from '@nestjs/common'
|
import { Type } from '@nestjs/common'
|
||||||
|
|
||||||
interface ArgumentTransformation {
|
interface ArgumentTransformation {
|
||||||
@ -10,5 +11,6 @@ export interface HandleParameters {
|
|||||||
onStart?: boolean
|
onStart?: boolean
|
||||||
command?: string
|
command?: string
|
||||||
message?: string | RegExp
|
message?: string | RegExp
|
||||||
|
action?: HearsTriggers
|
||||||
transformations?: ArgumentTransformation[]
|
transformations?: ArgumentTransformation[]
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,7 @@ export class TelegrafService {
|
|||||||
private ref: ModuleRef
|
private ref: ModuleRef
|
||||||
|
|
||||||
public constructor(
|
public constructor(
|
||||||
@Inject(TokenInjectionToken) options: TelegrafOptionsFactory,
|
@Inject(TokenInjectionToken) options: TelegrafOptionsFactory
|
||||||
) {
|
) {
|
||||||
const { token, sitePublicUrl } = options.createTelegrafOptions()
|
const { token, sitePublicUrl } = options.createTelegrafOptions()
|
||||||
this.sitePublicUrl = sitePublicUrl
|
this.sitePublicUrl = sitePublicUrl
|
||||||
@ -36,6 +36,7 @@ export class TelegrafService {
|
|||||||
this.setupOnStart(handlers)
|
this.setupOnStart(handlers)
|
||||||
this.setupOnMessage(handlers)
|
this.setupOnMessage(handlers)
|
||||||
this.setupOnCommand(handlers)
|
this.setupOnCommand(handlers)
|
||||||
|
this.setupActions(handlers)
|
||||||
|
|
||||||
if (devMode) {
|
if (devMode) {
|
||||||
this.startPolling()
|
this.startPolling()
|
||||||
@ -46,7 +47,7 @@ export class TelegrafService {
|
|||||||
if (!this.sitePublicUrl) {
|
if (!this.sitePublicUrl) {
|
||||||
throw new InvalidConfigurationException(
|
throw new InvalidConfigurationException(
|
||||||
'sitePublicUrl',
|
'sitePublicUrl',
|
||||||
'does not exist, but webook used',
|
'does not exist, but webook used'
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -64,7 +65,7 @@ export class TelegrafService {
|
|||||||
() => this.bot.startPolling(),
|
() => this.bot.startPolling(),
|
||||||
() => {
|
() => {
|
||||||
// okay, never mind
|
// okay, never mind
|
||||||
},
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -78,10 +79,10 @@ export class TelegrafService {
|
|||||||
([methodName, methodCondig]) => ({
|
([methodName, methodCondig]) => ({
|
||||||
handle: handlerInstance[methodName].bind(handlerInstance),
|
handle: handlerInstance[methodName].bind(handlerInstance),
|
||||||
config: methodCondig,
|
config: methodCondig,
|
||||||
}),
|
})
|
||||||
)
|
)
|
||||||
},
|
}
|
||||||
),
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -111,6 +112,14 @@ export class TelegrafService {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private setupActions(handlers: Handler[]): void {
|
||||||
|
const commandHandlers = handlers.filter(({ config }) => config.action)
|
||||||
|
|
||||||
|
commandHandlers.forEach(handler => {
|
||||||
|
this.bot.action(handler.config.action, this.adoptHandle(handler))
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
private adoptHandle({ handle, config }: Handler) {
|
private adoptHandle({ handle, config }: Handler) {
|
||||||
const errorHandler = this.createCatch()
|
const errorHandler = this.createCatch()
|
||||||
|
|
||||||
@ -121,8 +130,8 @@ export class TelegrafService {
|
|||||||
.map(({ transform }) =>
|
.map(({ transform }) =>
|
||||||
this.ref
|
this.ref
|
||||||
.get<ContextTransformer>(transform, { strict: false })
|
.get<ContextTransformer>(transform, { strict: false })
|
||||||
.transform(ctx),
|
.transform(ctx)
|
||||||
),
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
return handle(ctx, ...args).catch(errorHandler(ctx))
|
return handle(ctx, ...args).catch(errorHandler(ctx))
|
||||||
@ -131,7 +140,7 @@ export class TelegrafService {
|
|||||||
|
|
||||||
private createCatch() {
|
private createCatch() {
|
||||||
const handlers = Array.from(
|
const handlers = Array.from(
|
||||||
(TelegramCatch.handlers || new Map()).entries(),
|
(TelegramCatch.handlers || new Map()).entries()
|
||||||
).map(([errorType, handlerType]) => {
|
).map(([errorType, handlerType]) => {
|
||||||
const handler = this.ref.get<TelegramErrorHandler>(handlerType, {
|
const handler = this.ref.get<TelegramErrorHandler>(handlerType, {
|
||||||
strict: false,
|
strict: false,
|
||||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "nestjs-telegraf",
|
"name": "nestjs-telegraf",
|
||||||
"version": "0.6.0",
|
"version": "0.7.0",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "nestjs-telegraf",
|
"name": "nestjs-telegraf",
|
||||||
"version": "0.6.0",
|
"version": "0.7.0",
|
||||||
"description": "Telegraf module for Nest framework",
|
"description": "Telegraf module for Nest framework",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"nest",
|
"nest",
|
||||||
|
Loading…
Reference in New Issue
Block a user