mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-29 14:46:38 +08:00
23 lines
414 B
Go
23 lines
414 B
Go
package middleware
|
|
|
|
import (
|
|
"one-api/common/telegram"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
func Telegram() func(c *gin.Context) {
|
|
return func(c *gin.Context) {
|
|
token := c.Param("token")
|
|
|
|
if !telegram.TGEnabled || telegram.TGWebHookSecret == "" || token == "" || token != viper.GetString("tg.bot_api_key") {
|
|
c.String(404, "Page not found")
|
|
c.Abort()
|
|
return
|
|
}
|
|
|
|
c.Next()
|
|
}
|
|
}
|