tgbot.go 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851
  1. package service
  2. import (
  3. "embed"
  4. "errors"
  5. "fmt"
  6. "net"
  7. "net/url"
  8. "os"
  9. "strconv"
  10. "strings"
  11. "time"
  12. "x-ui/config"
  13. "x-ui/database"
  14. "x-ui/database/model"
  15. "x-ui/logger"
  16. "x-ui/util/common"
  17. "x-ui/web/global"
  18. "x-ui/web/locale"
  19. "x-ui/xray"
  20. "slices"
  21. "github.com/mymmrac/telego"
  22. th "github.com/mymmrac/telego/telegohandler"
  23. tu "github.com/mymmrac/telego/telegoutil"
  24. "github.com/valyala/fasthttp"
  25. "github.com/valyala/fasthttp/fasthttpproxy"
  26. )
  27. var (
  28. bot *telego.Bot
  29. botHandler *th.BotHandler
  30. adminIds []int64
  31. isRunning bool
  32. hostname string
  33. hashStorage *global.HashStorage
  34. )
  35. type LoginStatus byte
  36. const (
  37. LoginSuccess LoginStatus = 1
  38. LoginFail LoginStatus = 0
  39. EmptyTelegramUserID = int64(0)
  40. )
  41. type Tgbot struct {
  42. inboundService InboundService
  43. settingService SettingService
  44. serverService ServerService
  45. xrayService XrayService
  46. lastStatus *Status
  47. }
  48. func (t *Tgbot) NewTgbot() *Tgbot {
  49. return new(Tgbot)
  50. }
  51. func (t *Tgbot) I18nBot(name string, params ...string) string {
  52. return locale.I18n(locale.Bot, name, params...)
  53. }
  54. func (t *Tgbot) GetHashStorage() *global.HashStorage {
  55. return hashStorage
  56. }
  57. func (t *Tgbot) Start(i18nFS embed.FS) error {
  58. // Initialize localizer
  59. err := locale.InitLocalizer(i18nFS, &t.settingService)
  60. if err != nil {
  61. return err
  62. }
  63. // Initialize hash storage to store callback queries
  64. hashStorage = global.NewHashStorage(20 * time.Minute)
  65. t.SetHostname()
  66. // Get Telegram bot token
  67. tgBotToken, err := t.settingService.GetTgBotToken()
  68. if err != nil || tgBotToken == "" {
  69. logger.Warning("Failed to get Telegram bot token:", err)
  70. return err
  71. }
  72. // Get Telegram bot chat ID(s)
  73. tgBotID, err := t.settingService.GetTgBotChatId()
  74. if err != nil {
  75. logger.Warning("Failed to get Telegram bot chat ID:", err)
  76. return err
  77. }
  78. // Parse admin IDs from comma-separated string
  79. if tgBotID != "" {
  80. for _, adminID := range strings.Split(tgBotID, ",") {
  81. id, err := strconv.Atoi(adminID)
  82. if err != nil {
  83. logger.Warning("Failed to parse admin ID from Telegram bot chat ID:", err)
  84. return err
  85. }
  86. adminIds = append(adminIds, int64(id))
  87. }
  88. }
  89. // Get Telegram bot proxy URL
  90. tgBotProxy, err := t.settingService.GetTgBotProxy()
  91. if err != nil {
  92. logger.Warning("Failed to get Telegram bot proxy URL:", err)
  93. }
  94. // Get Telegram bot API server URL
  95. tgBotAPIServer, err := t.settingService.GetTgBotAPIServer()
  96. if err != nil {
  97. logger.Warning("Failed to get Telegram bot API server URL:", err)
  98. }
  99. // Create new Telegram bot instance
  100. bot, err = t.NewBot(tgBotToken, tgBotProxy, tgBotAPIServer)
  101. if err != nil {
  102. logger.Error("Failed to initialize Telegram bot API:", err)
  103. return err
  104. }
  105. // Start receiving Telegram bot messages
  106. if !isRunning {
  107. logger.Info("Telegram bot receiver started")
  108. go t.OnReceive()
  109. isRunning = true
  110. }
  111. return nil
  112. }
  113. func (t *Tgbot) NewBot(token string, proxyUrl string, apiServerUrl string) (*telego.Bot, error) {
  114. if proxyUrl == "" && apiServerUrl == "" {
  115. return telego.NewBot(token)
  116. }
  117. if proxyUrl != "" {
  118. if !strings.HasPrefix(proxyUrl, "socks5://") {
  119. logger.Warning("Invalid socks5 URL, using default")
  120. return telego.NewBot(token)
  121. }
  122. _, err := url.Parse(proxyUrl)
  123. if err != nil {
  124. logger.Warningf("Can't parse proxy URL, using default instance for tgbot: %v", err)
  125. return telego.NewBot(token)
  126. }
  127. return telego.NewBot(token, telego.WithFastHTTPClient(&fasthttp.Client{
  128. Dial: fasthttpproxy.FasthttpSocksDialer(proxyUrl),
  129. }))
  130. }
  131. if !strings.HasPrefix(apiServerUrl, "http") {
  132. logger.Warning("Invalid http(s) URL, using default")
  133. return telego.NewBot(token)
  134. }
  135. _, err := url.Parse(apiServerUrl)
  136. if err != nil {
  137. logger.Warningf("Can't parse API server URL, using default instance for tgbot: %v", err)
  138. return telego.NewBot(token)
  139. }
  140. return telego.NewBot(token, telego.WithAPIServer(apiServerUrl))
  141. }
  142. func (t *Tgbot) IsRunning() bool {
  143. return isRunning
  144. }
  145. func (t *Tgbot) SetHostname() {
  146. host, err := os.Hostname()
  147. if err != nil {
  148. logger.Error("get hostname error:", err)
  149. hostname = ""
  150. return
  151. }
  152. hostname = host
  153. }
  154. func (t *Tgbot) Stop() {
  155. botHandler.Stop()
  156. bot.StopLongPolling()
  157. logger.Info("Stop Telegram receiver ...")
  158. isRunning = false
  159. adminIds = nil
  160. }
  161. func (t *Tgbot) encodeQuery(query string) string {
  162. // NOTE: we only need to hash for more than 64 chars
  163. if len(query) <= 64 {
  164. return query
  165. }
  166. return hashStorage.SaveHash(query)
  167. }
  168. func (t *Tgbot) decodeQuery(query string) (string, error) {
  169. if !hashStorage.IsMD5(query) {
  170. return query, nil
  171. }
  172. decoded, exists := hashStorage.GetValue(query)
  173. if !exists {
  174. return "", common.NewError("hash not found in storage!")
  175. }
  176. return decoded, nil
  177. }
  178. func (t *Tgbot) OnReceive() {
  179. params := telego.GetUpdatesParams{
  180. Timeout: 10,
  181. }
  182. updates, _ := bot.UpdatesViaLongPolling(&params)
  183. botHandler, _ = th.NewBotHandler(bot, updates)
  184. botHandler.HandleMessage(func(_ *telego.Bot, message telego.Message) {
  185. t.SendMsgToTgbot(message.Chat.ID, t.I18nBot("tgbot.keyboardClosed"), tu.ReplyKeyboardRemove())
  186. }, th.TextEqual(t.I18nBot("tgbot.buttons.closeKeyboard")))
  187. botHandler.HandleMessage(func(_ *telego.Bot, message telego.Message) {
  188. t.answerCommand(&message, message.Chat.ID, checkAdmin(message.From.ID))
  189. }, th.AnyCommand())
  190. botHandler.HandleCallbackQuery(func(_ *telego.Bot, query telego.CallbackQuery) {
  191. t.answerCallback(&query, checkAdmin(query.From.ID))
  192. }, th.AnyCallbackQueryWithMessage())
  193. botHandler.HandleMessage(func(_ *telego.Bot, message telego.Message) {
  194. if message.UsersShared != nil {
  195. if checkAdmin(message.From.ID) {
  196. for _, sharedUser := range message.UsersShared.Users {
  197. userID := sharedUser.UserID
  198. needRestart, err := t.inboundService.SetClientTelegramUserID(message.UsersShared.RequestID, userID)
  199. if needRestart {
  200. t.xrayService.SetToNeedRestart()
  201. }
  202. output := ""
  203. if err != nil {
  204. output += t.I18nBot("tgbot.messages.selectUserFailed")
  205. } else {
  206. output += t.I18nBot("tgbot.messages.userSaved")
  207. }
  208. t.SendMsgToTgbot(message.Chat.ID, output, tu.ReplyKeyboardRemove())
  209. }
  210. } else {
  211. t.SendMsgToTgbot(message.Chat.ID, t.I18nBot("tgbot.noResult"), tu.ReplyKeyboardRemove())
  212. }
  213. }
  214. }, th.AnyMessage())
  215. botHandler.Start()
  216. }
  217. func (t *Tgbot) answerCommand(message *telego.Message, chatId int64, isAdmin bool) {
  218. msg, onlyMessage := "", false
  219. command, _, commandArgs := tu.ParseCommand(message.Text)
  220. // Helper function to handle unknown commands.
  221. handleUnknownCommand := func() {
  222. msg += t.I18nBot("tgbot.commands.unknown")
  223. }
  224. // Handle the command.
  225. switch command {
  226. case "help":
  227. msg += t.I18nBot("tgbot.commands.help")
  228. msg += t.I18nBot("tgbot.commands.pleaseChoose")
  229. case "start":
  230. msg += t.I18nBot("tgbot.commands.start", "Firstname=="+message.From.FirstName)
  231. if isAdmin {
  232. msg += t.I18nBot("tgbot.commands.welcome", "Hostname=="+hostname)
  233. }
  234. msg += "\n\n" + t.I18nBot("tgbot.commands.pleaseChoose")
  235. case "status":
  236. onlyMessage = true
  237. msg += t.I18nBot("tgbot.commands.status")
  238. case "id":
  239. onlyMessage = true
  240. msg += t.I18nBot("tgbot.commands.getID", "ID=="+strconv.FormatInt(message.From.ID, 10))
  241. case "usage":
  242. onlyMessage = true
  243. if len(commandArgs) > 0 {
  244. if isAdmin {
  245. t.searchClient(chatId, commandArgs[0])
  246. } else {
  247. t.getClientUsage(chatId, int64(message.From.ID), commandArgs[0])
  248. }
  249. } else {
  250. msg += t.I18nBot("tgbot.commands.usage")
  251. }
  252. case "inbound":
  253. onlyMessage = true
  254. if isAdmin && len(commandArgs) > 0 {
  255. t.searchInbound(chatId, commandArgs[0])
  256. } else {
  257. handleUnknownCommand()
  258. }
  259. case "restart":
  260. onlyMessage = true
  261. if isAdmin {
  262. if len(commandArgs) == 0 {
  263. if t.xrayService.IsXrayRunning() {
  264. err := t.xrayService.RestartXray(true)
  265. if err != nil {
  266. msg += t.I18nBot("tgbot.commands.restartFailed", "Error=="+err.Error())
  267. } else {
  268. msg += t.I18nBot("tgbot.commands.restartSuccess")
  269. }
  270. } else {
  271. msg += t.I18nBot("tgbot.commands.xrayNotRunning")
  272. }
  273. } else {
  274. handleUnknownCommand()
  275. msg += t.I18nBot("tgbot.commands.restartUsage")
  276. }
  277. } else {
  278. handleUnknownCommand()
  279. }
  280. default:
  281. handleUnknownCommand()
  282. }
  283. if msg != "" {
  284. t.sendResponse(chatId, msg, onlyMessage, isAdmin)
  285. }
  286. }
  287. // Helper function to send the message based on onlyMessage flag.
  288. func (t *Tgbot) sendResponse(chatId int64, msg string, onlyMessage, isAdmin bool) {
  289. if onlyMessage {
  290. t.SendMsgToTgbot(chatId, msg)
  291. } else {
  292. t.SendAnswer(chatId, msg, isAdmin)
  293. }
  294. }
  295. func (t *Tgbot) answerCallback(callbackQuery *telego.CallbackQuery, isAdmin bool) {
  296. chatId := callbackQuery.Message.GetChat().ID
  297. if isAdmin {
  298. // get query from hash storage
  299. decodedQuery, err := t.decodeQuery(callbackQuery.Data)
  300. if err != nil {
  301. t.SendMsgToTgbot(chatId, t.I18nBot("tgbot.noQuery"))
  302. return
  303. }
  304. dataArray := strings.Split(decodedQuery, " ")
  305. if len(dataArray) >= 2 && len(dataArray[1]) > 0 {
  306. email := dataArray[1]
  307. switch dataArray[0] {
  308. case "client_get_usage":
  309. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.messages.email", "Email=="+email))
  310. t.searchClient(chatId, email)
  311. case "client_refresh":
  312. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.clientRefreshSuccess", "Email=="+email))
  313. t.searchClient(chatId, email, callbackQuery.Message.GetMessageID())
  314. case "client_cancel":
  315. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.canceled", "Email=="+email))
  316. t.searchClient(chatId, email, callbackQuery.Message.GetMessageID())
  317. case "ips_refresh":
  318. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.IpRefreshSuccess", "Email=="+email))
  319. t.searchClientIps(chatId, email, callbackQuery.Message.GetMessageID())
  320. case "ips_cancel":
  321. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.canceled", "Email=="+email))
  322. t.searchClientIps(chatId, email, callbackQuery.Message.GetMessageID())
  323. case "tgid_refresh":
  324. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.TGIdRefreshSuccess", "Email=="+email))
  325. t.clientTelegramUserInfo(chatId, email, callbackQuery.Message.GetMessageID())
  326. case "tgid_cancel":
  327. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.canceled", "Email=="+email))
  328. t.clientTelegramUserInfo(chatId, email, callbackQuery.Message.GetMessageID())
  329. case "reset_traffic":
  330. inlineKeyboard := tu.InlineKeyboard(
  331. tu.InlineKeyboardRow(
  332. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.cancelReset")).WithCallbackData(t.encodeQuery("client_cancel "+email)),
  333. ),
  334. tu.InlineKeyboardRow(
  335. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.confirmResetTraffic")).WithCallbackData(t.encodeQuery("reset_traffic_c "+email)),
  336. ),
  337. )
  338. t.editMessageCallbackTgBot(chatId, callbackQuery.Message.GetMessageID(), inlineKeyboard)
  339. case "reset_traffic_c":
  340. err := t.inboundService.ResetClientTrafficByEmail(email)
  341. if err == nil {
  342. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.resetTrafficSuccess", "Email=="+email))
  343. t.searchClient(chatId, email, callbackQuery.Message.GetMessageID())
  344. } else {
  345. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.errorOperation"))
  346. }
  347. case "limit_traffic":
  348. inlineKeyboard := tu.InlineKeyboard(
  349. tu.InlineKeyboardRow(
  350. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.cancel")).WithCallbackData(t.encodeQuery("client_cancel "+email)),
  351. ),
  352. tu.InlineKeyboardRow(
  353. tu.InlineKeyboardButton(t.I18nBot("tgbot.unlimited")).WithCallbackData(t.encodeQuery("limit_traffic_c "+email+" 0")),
  354. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.custom")).WithCallbackData(t.encodeQuery("limit_traffic_in "+email+" 0")),
  355. ),
  356. tu.InlineKeyboardRow(
  357. tu.InlineKeyboardButton("1 GB").WithCallbackData(t.encodeQuery("limit_traffic_c "+email+" 1")),
  358. tu.InlineKeyboardButton("5 GB").WithCallbackData(t.encodeQuery("limit_traffic_c "+email+" 5")),
  359. tu.InlineKeyboardButton("10 GB").WithCallbackData(t.encodeQuery("limit_traffic_c "+email+" 10")),
  360. ),
  361. tu.InlineKeyboardRow(
  362. tu.InlineKeyboardButton("20 GB").WithCallbackData(t.encodeQuery("limit_traffic_c "+email+" 20")),
  363. tu.InlineKeyboardButton("30 GB").WithCallbackData(t.encodeQuery("limit_traffic_c "+email+" 30")),
  364. tu.InlineKeyboardButton("40 GB").WithCallbackData(t.encodeQuery("limit_traffic_c "+email+" 40")),
  365. ),
  366. tu.InlineKeyboardRow(
  367. tu.InlineKeyboardButton("50 GB").WithCallbackData(t.encodeQuery("limit_traffic_c "+email+" 50")),
  368. tu.InlineKeyboardButton("60 GB").WithCallbackData(t.encodeQuery("limit_traffic_c "+email+" 60")),
  369. tu.InlineKeyboardButton("80 GB").WithCallbackData(t.encodeQuery("limit_traffic_c "+email+" 80")),
  370. ),
  371. tu.InlineKeyboardRow(
  372. tu.InlineKeyboardButton("100 GB").WithCallbackData(t.encodeQuery("limit_traffic_c "+email+" 100")),
  373. tu.InlineKeyboardButton("150 GB").WithCallbackData(t.encodeQuery("limit_traffic_c "+email+" 150")),
  374. tu.InlineKeyboardButton("200 GB").WithCallbackData(t.encodeQuery("limit_traffic_c "+email+" 200")),
  375. ),
  376. )
  377. t.editMessageCallbackTgBot(chatId, callbackQuery.Message.GetMessageID(), inlineKeyboard)
  378. case "limit_traffic_c":
  379. if len(dataArray) == 3 {
  380. limitTraffic, err := strconv.Atoi(dataArray[2])
  381. if err == nil {
  382. needRestart, err := t.inboundService.ResetClientTrafficLimitByEmail(email, limitTraffic)
  383. if needRestart {
  384. t.xrayService.SetToNeedRestart()
  385. }
  386. if err == nil {
  387. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.setTrafficLimitSuccess", "Email=="+email))
  388. t.searchClient(chatId, email, callbackQuery.Message.GetMessageID())
  389. return
  390. }
  391. }
  392. }
  393. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.errorOperation"))
  394. t.searchClient(chatId, email, callbackQuery.Message.GetMessageID())
  395. case "limit_traffic_in":
  396. if len(dataArray) >= 3 {
  397. oldInputNumber, err := strconv.Atoi(dataArray[2])
  398. inputNumber := oldInputNumber
  399. if err == nil {
  400. if len(dataArray) == 4 {
  401. num, err := strconv.Atoi(dataArray[3])
  402. if err == nil {
  403. if num == -2 {
  404. inputNumber = 0
  405. } else if num == -1 {
  406. if inputNumber > 0 {
  407. inputNumber = (inputNumber / 10)
  408. }
  409. } else {
  410. inputNumber = (inputNumber * 10) + num
  411. }
  412. }
  413. if inputNumber == oldInputNumber {
  414. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.successfulOperation"))
  415. return
  416. }
  417. if inputNumber >= 999999 {
  418. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.errorOperation"))
  419. return
  420. }
  421. }
  422. inlineKeyboard := tu.InlineKeyboard(
  423. tu.InlineKeyboardRow(
  424. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.cancel")).WithCallbackData(t.encodeQuery("client_cancel "+email)),
  425. ),
  426. tu.InlineKeyboardRow(
  427. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.confirmNumberAdd", "Num=="+strconv.Itoa(inputNumber))).WithCallbackData(t.encodeQuery("limit_traffic_c "+email+" "+strconv.Itoa(inputNumber))),
  428. ),
  429. tu.InlineKeyboardRow(
  430. tu.InlineKeyboardButton("1").WithCallbackData(t.encodeQuery("limit_traffic_in "+email+" "+strconv.Itoa(inputNumber)+" 1")),
  431. tu.InlineKeyboardButton("2").WithCallbackData(t.encodeQuery("limit_traffic_in "+email+" "+strconv.Itoa(inputNumber)+" 2")),
  432. tu.InlineKeyboardButton("3").WithCallbackData(t.encodeQuery("limit_traffic_in "+email+" "+strconv.Itoa(inputNumber)+" 3")),
  433. ),
  434. tu.InlineKeyboardRow(
  435. tu.InlineKeyboardButton("4").WithCallbackData(t.encodeQuery("limit_traffic_in "+email+" "+strconv.Itoa(inputNumber)+" 4")),
  436. tu.InlineKeyboardButton("5").WithCallbackData(t.encodeQuery("limit_traffic_in "+email+" "+strconv.Itoa(inputNumber)+" 5")),
  437. tu.InlineKeyboardButton("6").WithCallbackData(t.encodeQuery("limit_traffic_in "+email+" "+strconv.Itoa(inputNumber)+" 6")),
  438. ),
  439. tu.InlineKeyboardRow(
  440. tu.InlineKeyboardButton("7").WithCallbackData(t.encodeQuery("limit_traffic_in "+email+" "+strconv.Itoa(inputNumber)+" 7")),
  441. tu.InlineKeyboardButton("8").WithCallbackData(t.encodeQuery("limit_traffic_in "+email+" "+strconv.Itoa(inputNumber)+" 8")),
  442. tu.InlineKeyboardButton("9").WithCallbackData(t.encodeQuery("limit_traffic_in "+email+" "+strconv.Itoa(inputNumber)+" 9")),
  443. ),
  444. tu.InlineKeyboardRow(
  445. tu.InlineKeyboardButton("🔄").WithCallbackData(t.encodeQuery("limit_traffic_in "+email+" "+strconv.Itoa(inputNumber)+" -2")),
  446. tu.InlineKeyboardButton("0").WithCallbackData(t.encodeQuery("limit_traffic_in "+email+" "+strconv.Itoa(inputNumber)+" 0")),
  447. tu.InlineKeyboardButton("⬅️").WithCallbackData(t.encodeQuery("limit_traffic_in "+email+" "+strconv.Itoa(inputNumber)+" -1")),
  448. ),
  449. )
  450. t.editMessageCallbackTgBot(chatId, callbackQuery.Message.GetMessageID(), inlineKeyboard)
  451. return
  452. }
  453. }
  454. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.errorOperation"))
  455. t.searchClient(chatId, email, callbackQuery.Message.GetMessageID())
  456. case "reset_exp":
  457. inlineKeyboard := tu.InlineKeyboard(
  458. tu.InlineKeyboardRow(
  459. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.cancelReset")).WithCallbackData(t.encodeQuery("client_cancel "+email)),
  460. ),
  461. tu.InlineKeyboardRow(
  462. tu.InlineKeyboardButton(t.I18nBot("tgbot.unlimited")).WithCallbackData(t.encodeQuery("reset_exp_c "+email+" 0")),
  463. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.custom")).WithCallbackData(t.encodeQuery("reset_exp_in "+email+" 0")),
  464. ),
  465. tu.InlineKeyboardRow(
  466. tu.InlineKeyboardButton(t.I18nBot("tgbot.add")+" 7 "+t.I18nBot("tgbot.days")).WithCallbackData(t.encodeQuery("reset_exp_c "+email+" 7")),
  467. tu.InlineKeyboardButton(t.I18nBot("tgbot.add")+" 10 "+t.I18nBot("tgbot.days")).WithCallbackData(t.encodeQuery("reset_exp_c "+email+" 10")),
  468. ),
  469. tu.InlineKeyboardRow(
  470. tu.InlineKeyboardButton(t.I18nBot("tgbot.add")+" 14 "+t.I18nBot("tgbot.days")).WithCallbackData(t.encodeQuery("reset_exp_c "+email+" 14")),
  471. tu.InlineKeyboardButton(t.I18nBot("tgbot.add")+" 20 "+t.I18nBot("tgbot.days")).WithCallbackData(t.encodeQuery("reset_exp_c "+email+" 20")),
  472. ),
  473. tu.InlineKeyboardRow(
  474. tu.InlineKeyboardButton(t.I18nBot("tgbot.add")+" 1 "+t.I18nBot("tgbot.month")).WithCallbackData(t.encodeQuery("reset_exp_c "+email+" 30")),
  475. tu.InlineKeyboardButton(t.I18nBot("tgbot.add")+" 3 "+t.I18nBot("tgbot.months")).WithCallbackData(t.encodeQuery("reset_exp_c "+email+" 90")),
  476. ),
  477. tu.InlineKeyboardRow(
  478. tu.InlineKeyboardButton(t.I18nBot("tgbot.add")+" 6 "+t.I18nBot("tgbot.months")).WithCallbackData(t.encodeQuery("reset_exp_c "+email+" 180")),
  479. tu.InlineKeyboardButton(t.I18nBot("tgbot.add")+" 12 "+t.I18nBot("tgbot.months")).WithCallbackData(t.encodeQuery("reset_exp_c "+email+" 365")),
  480. ),
  481. )
  482. t.editMessageCallbackTgBot(chatId, callbackQuery.Message.GetMessageID(), inlineKeyboard)
  483. case "reset_exp_c":
  484. if len(dataArray) == 3 {
  485. days, err := strconv.Atoi(dataArray[2])
  486. if err == nil {
  487. var date int64 = 0
  488. if days > 0 {
  489. traffic, err := t.inboundService.GetClientTrafficByEmail(email)
  490. if err != nil {
  491. logger.Warning(err)
  492. msg := t.I18nBot("tgbot.wentWrong")
  493. t.SendMsgToTgbot(chatId, msg)
  494. return
  495. }
  496. if traffic == nil {
  497. msg := t.I18nBot("tgbot.noResult")
  498. t.SendMsgToTgbot(chatId, msg)
  499. return
  500. }
  501. if traffic.ExpiryTime > 0 {
  502. if traffic.ExpiryTime-time.Now().Unix()*1000 < 0 {
  503. date = -int64(days * 24 * 60 * 60000)
  504. } else {
  505. date = traffic.ExpiryTime + int64(days*24*60*60000)
  506. }
  507. } else {
  508. date = traffic.ExpiryTime - int64(days*24*60*60000)
  509. }
  510. }
  511. needRestart, err := t.inboundService.ResetClientExpiryTimeByEmail(email, date)
  512. if needRestart {
  513. t.xrayService.SetToNeedRestart()
  514. }
  515. if err == nil {
  516. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.expireResetSuccess", "Email=="+email))
  517. t.searchClient(chatId, email, callbackQuery.Message.GetMessageID())
  518. return
  519. }
  520. }
  521. }
  522. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.errorOperation"))
  523. t.searchClient(chatId, email, callbackQuery.Message.GetMessageID())
  524. case "reset_exp_in":
  525. if len(dataArray) >= 3 {
  526. oldInputNumber, err := strconv.Atoi(dataArray[2])
  527. inputNumber := oldInputNumber
  528. if err == nil {
  529. if len(dataArray) == 4 {
  530. num, err := strconv.Atoi(dataArray[3])
  531. if err == nil {
  532. if num == -2 {
  533. inputNumber = 0
  534. } else if num == -1 {
  535. if inputNumber > 0 {
  536. inputNumber = (inputNumber / 10)
  537. }
  538. } else {
  539. inputNumber = (inputNumber * 10) + num
  540. }
  541. }
  542. if inputNumber == oldInputNumber {
  543. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.successfulOperation"))
  544. return
  545. }
  546. if inputNumber >= 999999 {
  547. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.errorOperation"))
  548. return
  549. }
  550. }
  551. inlineKeyboard := tu.InlineKeyboard(
  552. tu.InlineKeyboardRow(
  553. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.cancel")).WithCallbackData(t.encodeQuery("client_cancel "+email)),
  554. ),
  555. tu.InlineKeyboardRow(
  556. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.confirmNumber", "Num=="+strconv.Itoa(inputNumber))).WithCallbackData(t.encodeQuery("reset_exp_c "+email+" "+strconv.Itoa(inputNumber))),
  557. ),
  558. tu.InlineKeyboardRow(
  559. tu.InlineKeyboardButton("1").WithCallbackData(t.encodeQuery("reset_exp_in "+email+" "+strconv.Itoa(inputNumber)+" 1")),
  560. tu.InlineKeyboardButton("2").WithCallbackData(t.encodeQuery("reset_exp_in "+email+" "+strconv.Itoa(inputNumber)+" 2")),
  561. tu.InlineKeyboardButton("3").WithCallbackData(t.encodeQuery("reset_exp_in "+email+" "+strconv.Itoa(inputNumber)+" 3")),
  562. ),
  563. tu.InlineKeyboardRow(
  564. tu.InlineKeyboardButton("4").WithCallbackData(t.encodeQuery("reset_exp_in "+email+" "+strconv.Itoa(inputNumber)+" 4")),
  565. tu.InlineKeyboardButton("5").WithCallbackData(t.encodeQuery("reset_exp_in "+email+" "+strconv.Itoa(inputNumber)+" 5")),
  566. tu.InlineKeyboardButton("6").WithCallbackData(t.encodeQuery("reset_exp_in "+email+" "+strconv.Itoa(inputNumber)+" 6")),
  567. ),
  568. tu.InlineKeyboardRow(
  569. tu.InlineKeyboardButton("7").WithCallbackData(t.encodeQuery("reset_exp_in "+email+" "+strconv.Itoa(inputNumber)+" 7")),
  570. tu.InlineKeyboardButton("8").WithCallbackData(t.encodeQuery("reset_exp_in "+email+" "+strconv.Itoa(inputNumber)+" 8")),
  571. tu.InlineKeyboardButton("9").WithCallbackData(t.encodeQuery("reset_exp_in "+email+" "+strconv.Itoa(inputNumber)+" 9")),
  572. ),
  573. tu.InlineKeyboardRow(
  574. tu.InlineKeyboardButton("🔄").WithCallbackData(t.encodeQuery("reset_exp_in "+email+" "+strconv.Itoa(inputNumber)+" -2")),
  575. tu.InlineKeyboardButton("0").WithCallbackData(t.encodeQuery("reset_exp_in "+email+" "+strconv.Itoa(inputNumber)+" 0")),
  576. tu.InlineKeyboardButton("⬅️").WithCallbackData(t.encodeQuery("reset_exp_in "+email+" "+strconv.Itoa(inputNumber)+" -1")),
  577. ),
  578. )
  579. t.editMessageCallbackTgBot(chatId, callbackQuery.Message.GetMessageID(), inlineKeyboard)
  580. return
  581. }
  582. }
  583. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.errorOperation"))
  584. t.searchClient(chatId, email, callbackQuery.Message.GetMessageID())
  585. case "ip_limit":
  586. inlineKeyboard := tu.InlineKeyboard(
  587. tu.InlineKeyboardRow(
  588. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.cancelIpLimit")).WithCallbackData(t.encodeQuery("client_cancel "+email)),
  589. ),
  590. tu.InlineKeyboardRow(
  591. tu.InlineKeyboardButton(t.I18nBot("tgbot.unlimited")).WithCallbackData(t.encodeQuery("ip_limit_c "+email+" 0")),
  592. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.custom")).WithCallbackData(t.encodeQuery("ip_limit_in "+email+" 0")),
  593. ),
  594. tu.InlineKeyboardRow(
  595. tu.InlineKeyboardButton("1").WithCallbackData(t.encodeQuery("ip_limit_c "+email+" 1")),
  596. tu.InlineKeyboardButton("2").WithCallbackData(t.encodeQuery("ip_limit_c "+email+" 2")),
  597. ),
  598. tu.InlineKeyboardRow(
  599. tu.InlineKeyboardButton("3").WithCallbackData(t.encodeQuery("ip_limit_c "+email+" 3")),
  600. tu.InlineKeyboardButton("4").WithCallbackData(t.encodeQuery("ip_limit_c "+email+" 4")),
  601. ),
  602. tu.InlineKeyboardRow(
  603. tu.InlineKeyboardButton("5").WithCallbackData(t.encodeQuery("ip_limit_c "+email+" 5")),
  604. tu.InlineKeyboardButton("6").WithCallbackData(t.encodeQuery("ip_limit_c "+email+" 6")),
  605. tu.InlineKeyboardButton("7").WithCallbackData(t.encodeQuery("ip_limit_c "+email+" 7")),
  606. ),
  607. tu.InlineKeyboardRow(
  608. tu.InlineKeyboardButton("8").WithCallbackData(t.encodeQuery("ip_limit_c "+email+" 8")),
  609. tu.InlineKeyboardButton("9").WithCallbackData(t.encodeQuery("ip_limit_c "+email+" 9")),
  610. tu.InlineKeyboardButton("10").WithCallbackData(t.encodeQuery("ip_limit_c "+email+" 10")),
  611. ),
  612. )
  613. t.editMessageCallbackTgBot(chatId, callbackQuery.Message.GetMessageID(), inlineKeyboard)
  614. case "ip_limit_c":
  615. if len(dataArray) == 3 {
  616. count, err := strconv.Atoi(dataArray[2])
  617. if err == nil {
  618. needRestart, err := t.inboundService.ResetClientIpLimitByEmail(email, count)
  619. if needRestart {
  620. t.xrayService.SetToNeedRestart()
  621. }
  622. if err == nil {
  623. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.resetIpSuccess", "Email=="+email, "Count=="+strconv.Itoa(count)))
  624. t.searchClient(chatId, email, callbackQuery.Message.GetMessageID())
  625. return
  626. }
  627. }
  628. }
  629. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.errorOperation"))
  630. t.searchClient(chatId, email, callbackQuery.Message.GetMessageID())
  631. case "ip_limit_in":
  632. if len(dataArray) >= 3 {
  633. oldInputNumber, err := strconv.Atoi(dataArray[2])
  634. inputNumber := oldInputNumber
  635. if err == nil {
  636. if len(dataArray) == 4 {
  637. num, err := strconv.Atoi(dataArray[3])
  638. if err == nil {
  639. if num == -2 {
  640. inputNumber = 0
  641. } else if num == -1 {
  642. if inputNumber > 0 {
  643. inputNumber = (inputNumber / 10)
  644. }
  645. } else {
  646. inputNumber = (inputNumber * 10) + num
  647. }
  648. }
  649. if inputNumber == oldInputNumber {
  650. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.successfulOperation"))
  651. return
  652. }
  653. if inputNumber >= 999999 {
  654. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.errorOperation"))
  655. return
  656. }
  657. }
  658. inlineKeyboard := tu.InlineKeyboard(
  659. tu.InlineKeyboardRow(
  660. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.cancel")).WithCallbackData(t.encodeQuery("client_cancel "+email)),
  661. ),
  662. tu.InlineKeyboardRow(
  663. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.confirmNumber", "Num=="+strconv.Itoa(inputNumber))).WithCallbackData(t.encodeQuery("ip_limit_c "+email+" "+strconv.Itoa(inputNumber))),
  664. ),
  665. tu.InlineKeyboardRow(
  666. tu.InlineKeyboardButton("1").WithCallbackData(t.encodeQuery("ip_limit_in "+email+" "+strconv.Itoa(inputNumber)+" 1")),
  667. tu.InlineKeyboardButton("2").WithCallbackData(t.encodeQuery("ip_limit_in "+email+" "+strconv.Itoa(inputNumber)+" 2")),
  668. tu.InlineKeyboardButton("3").WithCallbackData(t.encodeQuery("ip_limit_in "+email+" "+strconv.Itoa(inputNumber)+" 3")),
  669. ),
  670. tu.InlineKeyboardRow(
  671. tu.InlineKeyboardButton("4").WithCallbackData(t.encodeQuery("ip_limit_in "+email+" "+strconv.Itoa(inputNumber)+" 4")),
  672. tu.InlineKeyboardButton("5").WithCallbackData(t.encodeQuery("ip_limit_in "+email+" "+strconv.Itoa(inputNumber)+" 5")),
  673. tu.InlineKeyboardButton("6").WithCallbackData(t.encodeQuery("ip_limit_in "+email+" "+strconv.Itoa(inputNumber)+" 6")),
  674. ),
  675. tu.InlineKeyboardRow(
  676. tu.InlineKeyboardButton("7").WithCallbackData(t.encodeQuery("ip_limit_in "+email+" "+strconv.Itoa(inputNumber)+" 7")),
  677. tu.InlineKeyboardButton("8").WithCallbackData(t.encodeQuery("ip_limit_in "+email+" "+strconv.Itoa(inputNumber)+" 8")),
  678. tu.InlineKeyboardButton("9").WithCallbackData(t.encodeQuery("ip_limit_in "+email+" "+strconv.Itoa(inputNumber)+" 9")),
  679. ),
  680. tu.InlineKeyboardRow(
  681. tu.InlineKeyboardButton("🔄").WithCallbackData(t.encodeQuery("ip_limit_in "+email+" "+strconv.Itoa(inputNumber)+" -2")),
  682. tu.InlineKeyboardButton("0").WithCallbackData(t.encodeQuery("ip_limit_in "+email+" "+strconv.Itoa(inputNumber)+" 0")),
  683. tu.InlineKeyboardButton("⬅️").WithCallbackData(t.encodeQuery("ip_limit_in "+email+" "+strconv.Itoa(inputNumber)+" -1")),
  684. ),
  685. )
  686. t.editMessageCallbackTgBot(chatId, callbackQuery.Message.GetMessageID(), inlineKeyboard)
  687. return
  688. }
  689. }
  690. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.errorOperation"))
  691. t.searchClient(chatId, email, callbackQuery.Message.GetMessageID())
  692. case "clear_ips":
  693. inlineKeyboard := tu.InlineKeyboard(
  694. tu.InlineKeyboardRow(
  695. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.cancel")).WithCallbackData(t.encodeQuery("ips_cancel "+email)),
  696. ),
  697. tu.InlineKeyboardRow(
  698. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.confirmClearIps")).WithCallbackData(t.encodeQuery("clear_ips_c "+email)),
  699. ),
  700. )
  701. t.editMessageCallbackTgBot(chatId, callbackQuery.Message.GetMessageID(), inlineKeyboard)
  702. case "clear_ips_c":
  703. err := t.inboundService.ClearClientIps(email)
  704. if err == nil {
  705. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.clearIpSuccess", "Email=="+email))
  706. t.searchClientIps(chatId, email, callbackQuery.Message.GetMessageID())
  707. } else {
  708. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.errorOperation"))
  709. }
  710. case "ip_log":
  711. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.getIpLog", "Email=="+email))
  712. t.searchClientIps(chatId, email)
  713. case "tg_user":
  714. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.getUserInfo", "Email=="+email))
  715. t.clientTelegramUserInfo(chatId, email)
  716. case "tgid_remove":
  717. inlineKeyboard := tu.InlineKeyboard(
  718. tu.InlineKeyboardRow(
  719. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.cancel")).WithCallbackData(t.encodeQuery("tgid_cancel "+email)),
  720. ),
  721. tu.InlineKeyboardRow(
  722. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.confirmRemoveTGUser")).WithCallbackData(t.encodeQuery("tgid_remove_c "+email)),
  723. ),
  724. )
  725. t.editMessageCallbackTgBot(chatId, callbackQuery.Message.GetMessageID(), inlineKeyboard)
  726. case "tgid_remove_c":
  727. traffic, err := t.inboundService.GetClientTrafficByEmail(email)
  728. if err != nil || traffic == nil {
  729. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.errorOperation"))
  730. return
  731. }
  732. needRestart, err := t.inboundService.SetClientTelegramUserID(traffic.Id, EmptyTelegramUserID)
  733. if needRestart {
  734. t.xrayService.SetToNeedRestart()
  735. }
  736. if err == nil {
  737. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.removedTGUserSuccess", "Email=="+email))
  738. t.clientTelegramUserInfo(chatId, email, callbackQuery.Message.GetMessageID())
  739. } else {
  740. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.errorOperation"))
  741. }
  742. case "toggle_enable":
  743. inlineKeyboard := tu.InlineKeyboard(
  744. tu.InlineKeyboardRow(
  745. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.cancel")).WithCallbackData(t.encodeQuery("client_cancel "+email)),
  746. ),
  747. tu.InlineKeyboardRow(
  748. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.confirmToggle")).WithCallbackData(t.encodeQuery("toggle_enable_c "+email)),
  749. ),
  750. )
  751. t.editMessageCallbackTgBot(chatId, callbackQuery.Message.GetMessageID(), inlineKeyboard)
  752. case "toggle_enable_c":
  753. enabled, needRestart, err := t.inboundService.ToggleClientEnableByEmail(email)
  754. if needRestart {
  755. t.xrayService.SetToNeedRestart()
  756. }
  757. if err == nil {
  758. if enabled {
  759. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.enableSuccess", "Email=="+email))
  760. } else {
  761. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.disableSuccess", "Email=="+email))
  762. }
  763. t.searchClient(chatId, email, callbackQuery.Message.GetMessageID())
  764. } else {
  765. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.errorOperation"))
  766. }
  767. case "get_clients":
  768. inboundId := dataArray[1]
  769. inboundIdInt, err := strconv.Atoi(inboundId)
  770. if err != nil {
  771. t.sendCallbackAnswerTgBot(callbackQuery.ID, err.Error())
  772. return
  773. }
  774. inbound, err := t.inboundService.GetInbound(inboundIdInt)
  775. if err != nil {
  776. t.sendCallbackAnswerTgBot(callbackQuery.ID, err.Error())
  777. return
  778. }
  779. clients, err := t.getInboundClients(inboundIdInt)
  780. if err != nil {
  781. t.sendCallbackAnswerTgBot(callbackQuery.ID, err.Error())
  782. return
  783. }
  784. t.SendMsgToTgbot(chatId, t.I18nBot("tgbot.answers.chooseClient", "Inbound=="+inbound.Remark), clients)
  785. }
  786. return
  787. } else {
  788. switch callbackQuery.Data {
  789. case "get_inbounds":
  790. inbounds, err := t.getInbounds()
  791. if err != nil {
  792. t.sendCallbackAnswerTgBot(callbackQuery.ID, err.Error())
  793. return
  794. }
  795. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.buttons.allClients"))
  796. t.SendMsgToTgbot(chatId, t.I18nBot("tgbot.answers.chooseInbound"), inbounds)
  797. }
  798. }
  799. }
  800. switch callbackQuery.Data {
  801. case "get_usage":
  802. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.buttons.serverUsage"))
  803. t.getServerUsage(chatId)
  804. case "usage_refresh":
  805. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.successfulOperation"))
  806. t.getServerUsage(chatId, callbackQuery.Message.GetMessageID())
  807. case "inbounds":
  808. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.buttons.getInbounds"))
  809. t.SendMsgToTgbot(chatId, t.getInboundUsages())
  810. case "deplete_soon":
  811. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.buttons.depleteSoon"))
  812. t.getExhausted(chatId)
  813. case "get_backup":
  814. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.buttons.dbBackup"))
  815. t.sendBackup(chatId)
  816. case "get_banlogs":
  817. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.buttons.getBanLogs"))
  818. t.sendBanLogs(chatId, true)
  819. case "client_traffic":
  820. tgUserID := callbackQuery.From.ID
  821. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.buttons.clientUsage"))
  822. t.getClientUsage(chatId, tgUserID)
  823. case "client_commands":
  824. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.buttons.commands"))
  825. t.SendMsgToTgbot(chatId, t.I18nBot("tgbot.commands.helpClientCommands"))
  826. case "onlines":
  827. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.buttons.onlines"))
  828. t.onlineClients(chatId)
  829. case "onlines_refresh":
  830. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.answers.successfulOperation"))
  831. t.onlineClients(chatId, callbackQuery.Message.GetMessageID())
  832. case "commands":
  833. t.sendCallbackAnswerTgBot(callbackQuery.ID, t.I18nBot("tgbot.buttons.commands"))
  834. t.SendMsgToTgbot(chatId, t.I18nBot("tgbot.commands.helpAdminCommands"))
  835. }
  836. }
  837. func checkAdmin(tgId int64) bool {
  838. return slices.Contains(adminIds, tgId)
  839. }
  840. func (t *Tgbot) SendAnswer(chatId int64, msg string, isAdmin bool) {
  841. numericKeyboard := tu.InlineKeyboard(
  842. tu.InlineKeyboardRow(
  843. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.serverUsage")).WithCallbackData(t.encodeQuery("get_usage")),
  844. ),
  845. tu.InlineKeyboardRow(
  846. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.dbBackup")).WithCallbackData(t.encodeQuery("get_backup")),
  847. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.getBanLogs")).WithCallbackData(t.encodeQuery("get_banlogs")),
  848. ),
  849. tu.InlineKeyboardRow(
  850. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.getInbounds")).WithCallbackData(t.encodeQuery("inbounds")),
  851. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.depleteSoon")).WithCallbackData(t.encodeQuery("deplete_soon")),
  852. ),
  853. tu.InlineKeyboardRow(
  854. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.commands")).WithCallbackData(t.encodeQuery("commands")),
  855. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.onlines")).WithCallbackData(t.encodeQuery("onlines")),
  856. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.allClients")).WithCallbackData(t.encodeQuery("get_inbounds")),
  857. ),
  858. // TODOOOOOOOOOOOOOO: Add restart button here.
  859. )
  860. numericKeyboardClient := tu.InlineKeyboard(
  861. tu.InlineKeyboardRow(
  862. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.clientUsage")).WithCallbackData(t.encodeQuery("client_traffic")),
  863. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.commands")).WithCallbackData(t.encodeQuery("client_commands")),
  864. ),
  865. )
  866. var ReplyMarkup telego.ReplyMarkup
  867. if isAdmin {
  868. ReplyMarkup = numericKeyboard
  869. } else {
  870. ReplyMarkup = numericKeyboardClient
  871. }
  872. t.SendMsgToTgbot(chatId, msg, ReplyMarkup)
  873. }
  874. func (t *Tgbot) SendMsgToTgbot(chatId int64, msg string, replyMarkup ...telego.ReplyMarkup) {
  875. if !isRunning {
  876. return
  877. }
  878. if msg == "" {
  879. logger.Info("[tgbot] message is empty!")
  880. return
  881. }
  882. var allMessages []string
  883. limit := 2000
  884. // paging message if it is big
  885. if len(msg) > limit {
  886. messages := strings.Split(msg, "\r\n\r\n")
  887. lastIndex := -1
  888. for _, message := range messages {
  889. if (len(allMessages) == 0) || (len(allMessages[lastIndex])+len(message) > limit) {
  890. allMessages = append(allMessages, message)
  891. lastIndex++
  892. } else {
  893. allMessages[lastIndex] += "\r\n\r\n" + message
  894. }
  895. }
  896. if strings.TrimSpace(allMessages[len(allMessages)-1]) == "" {
  897. allMessages = allMessages[:len(allMessages)-1]
  898. }
  899. } else {
  900. allMessages = append(allMessages, msg)
  901. }
  902. for n, message := range allMessages {
  903. params := telego.SendMessageParams{
  904. ChatID: tu.ID(chatId),
  905. Text: message,
  906. ParseMode: "HTML",
  907. }
  908. // only add replyMarkup to last message
  909. if len(replyMarkup) > 0 && n == (len(allMessages)-1) {
  910. params.ReplyMarkup = replyMarkup[0]
  911. }
  912. _, err := bot.SendMessage(&params)
  913. if err != nil {
  914. logger.Warning("Error sending telegram message :", err)
  915. }
  916. time.Sleep(500 * time.Millisecond)
  917. }
  918. }
  919. func (t *Tgbot) SendMsgToTgbotAdmins(msg string, replyMarkup ...telego.ReplyMarkup) {
  920. if len(replyMarkup) > 0 {
  921. for _, adminId := range adminIds {
  922. t.SendMsgToTgbot(adminId, msg, replyMarkup[0])
  923. }
  924. } else {
  925. for _, adminId := range adminIds {
  926. t.SendMsgToTgbot(adminId, msg)
  927. }
  928. }
  929. }
  930. func (t *Tgbot) SendReport() {
  931. runTime, err := t.settingService.GetTgbotRuntime()
  932. if err == nil && len(runTime) > 0 {
  933. msg := ""
  934. msg += t.I18nBot("tgbot.messages.report", "RunTime=="+runTime)
  935. msg += t.I18nBot("tgbot.messages.datetime", "DateTime=="+time.Now().Format("2006-01-02 15:04:05"))
  936. t.SendMsgToTgbotAdmins(msg)
  937. }
  938. info := t.sendServerUsage()
  939. t.SendMsgToTgbotAdmins(info)
  940. t.sendExhaustedToAdmins()
  941. t.notifyExhausted()
  942. backupEnable, err := t.settingService.GetTgBotBackup()
  943. if err == nil && backupEnable {
  944. t.SendBackupToAdmins()
  945. }
  946. }
  947. func (t *Tgbot) SendBackupToAdmins() {
  948. if !t.IsRunning() {
  949. return
  950. }
  951. for _, adminId := range adminIds {
  952. t.sendBackup(int64(adminId))
  953. }
  954. }
  955. func (t *Tgbot) sendExhaustedToAdmins() {
  956. if !t.IsRunning() {
  957. return
  958. }
  959. for _, adminId := range adminIds {
  960. t.getExhausted(int64(adminId))
  961. }
  962. }
  963. func (t *Tgbot) getServerUsage(chatId int64, messageID ...int) string {
  964. info := t.prepareServerUsageInfo()
  965. keyboard := tu.InlineKeyboard(tu.InlineKeyboardRow(
  966. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.refresh")).WithCallbackData(t.encodeQuery("usage_refresh"))))
  967. if len(messageID) > 0 {
  968. t.editMessageTgBot(chatId, messageID[0], info, keyboard)
  969. } else {
  970. t.SendMsgToTgbot(chatId, info, keyboard)
  971. }
  972. return info
  973. }
  974. // Send server usage without an inline keyboard
  975. func (t *Tgbot) sendServerUsage() string {
  976. info := t.prepareServerUsageInfo()
  977. return info
  978. }
  979. func (t *Tgbot) prepareServerUsageInfo() string {
  980. info, ipv4, ipv6 := "", "", ""
  981. // get latest status of server
  982. t.lastStatus = t.serverService.GetStatus(t.lastStatus)
  983. onlines := p.GetOnlineClients()
  984. info += t.I18nBot("tgbot.messages.hostname", "Hostname=="+hostname)
  985. info += t.I18nBot("tgbot.messages.version", "Version=="+config.GetVersion())
  986. info += t.I18nBot("tgbot.messages.xrayVersion", "XrayVersion=="+fmt.Sprint(t.lastStatus.Xray.Version))
  987. // get ip address
  988. netInterfaces, err := net.Interfaces()
  989. if err != nil {
  990. logger.Error("net.Interfaces failed, err: ", err.Error())
  991. info += t.I18nBot("tgbot.messages.ip", "IP=="+t.I18nBot("tgbot.unknown"))
  992. info += "\r\n"
  993. } else {
  994. for i := 0; i < len(netInterfaces); i++ {
  995. if (netInterfaces[i].Flags & net.FlagUp) != 0 {
  996. addrs, _ := netInterfaces[i].Addrs()
  997. for _, address := range addrs {
  998. if ipnet, ok := address.(*net.IPNet); ok && !ipnet.IP.IsLoopback() {
  999. if ipnet.IP.To4() != nil {
  1000. ipv4 += ipnet.IP.String() + " "
  1001. } else if ipnet.IP.To16() != nil && !ipnet.IP.IsLinkLocalUnicast() {
  1002. ipv6 += ipnet.IP.String() + " "
  1003. }
  1004. }
  1005. }
  1006. }
  1007. }
  1008. info += t.I18nBot("tgbot.messages.ipv4", "IPv4=="+ipv4)
  1009. info += t.I18nBot("tgbot.messages.ipv6", "IPv6=="+ipv6)
  1010. }
  1011. info += t.I18nBot("tgbot.messages.serverUpTime", "UpTime=="+strconv.FormatUint(t.lastStatus.Uptime/86400, 10), "Unit=="+t.I18nBot("tgbot.days"))
  1012. info += t.I18nBot("tgbot.messages.serverLoad", "Load1=="+strconv.FormatFloat(t.lastStatus.Loads[0], 'f', 2, 64), "Load2=="+strconv.FormatFloat(t.lastStatus.Loads[1], 'f', 2, 64), "Load3=="+strconv.FormatFloat(t.lastStatus.Loads[2], 'f', 2, 64))
  1013. info += t.I18nBot("tgbot.messages.serverMemory", "Current=="+common.FormatTraffic(int64(t.lastStatus.Mem.Current)), "Total=="+common.FormatTraffic(int64(t.lastStatus.Mem.Total)))
  1014. info += t.I18nBot("tgbot.messages.onlinesCount", "Count=="+fmt.Sprint(len(onlines)))
  1015. info += t.I18nBot("tgbot.messages.tcpCount", "Count=="+strconv.Itoa(t.lastStatus.TcpCount))
  1016. info += t.I18nBot("tgbot.messages.udpCount", "Count=="+strconv.Itoa(t.lastStatus.UdpCount))
  1017. info += t.I18nBot("tgbot.messages.traffic", "Total=="+common.FormatTraffic(int64(t.lastStatus.NetTraffic.Sent+t.lastStatus.NetTraffic.Recv)), "Upload=="+common.FormatTraffic(int64(t.lastStatus.NetTraffic.Sent)), "Download=="+common.FormatTraffic(int64(t.lastStatus.NetTraffic.Recv)))
  1018. info += t.I18nBot("tgbot.messages.xrayStatus", "State=="+fmt.Sprint(t.lastStatus.Xray.State))
  1019. return info
  1020. }
  1021. func (t *Tgbot) UserLoginNotify(username string, password string, ip string, time string, status LoginStatus) {
  1022. if !t.IsRunning() {
  1023. return
  1024. }
  1025. if username == "" || ip == "" || time == "" {
  1026. logger.Warning("UserLoginNotify failed, invalid info!")
  1027. return
  1028. }
  1029. loginNotifyEnabled, err := t.settingService.GetTgBotLoginNotify()
  1030. if err != nil || !loginNotifyEnabled {
  1031. return
  1032. }
  1033. msg := ""
  1034. if status == LoginSuccess {
  1035. msg += t.I18nBot("tgbot.messages.loginSuccess")
  1036. msg += t.I18nBot("tgbot.messages.hostname", "Hostname=="+hostname)
  1037. } else if status == LoginFail {
  1038. msg += t.I18nBot("tgbot.messages.loginFailed")
  1039. msg += t.I18nBot("tgbot.messages.hostname", "Hostname=="+hostname)
  1040. msg += t.I18nBot("tgbot.messages.password", "Password=="+password)
  1041. }
  1042. msg += t.I18nBot("tgbot.messages.username", "Username=="+username)
  1043. msg += t.I18nBot("tgbot.messages.ip", "IP=="+ip)
  1044. msg += t.I18nBot("tgbot.messages.time", "Time=="+time)
  1045. t.SendMsgToTgbotAdmins(msg)
  1046. }
  1047. func (t *Tgbot) getInboundUsages() string {
  1048. info := ""
  1049. // get traffic
  1050. inbounds, err := t.inboundService.GetAllInbounds()
  1051. if err != nil {
  1052. logger.Warning("GetAllInbounds run failed:", err)
  1053. info += t.I18nBot("tgbot.answers.getInboundsFailed")
  1054. } else {
  1055. // NOTE:If there no any sessions here,need to notify here
  1056. // TODO:Sub-node push, automatic conversion format
  1057. for _, inbound := range inbounds {
  1058. info += t.I18nBot("tgbot.messages.inbound", "Remark=="+inbound.Remark)
  1059. info += t.I18nBot("tgbot.messages.port", "Port=="+strconv.Itoa(inbound.Port))
  1060. info += t.I18nBot("tgbot.messages.traffic", "Total=="+common.FormatTraffic((inbound.Up+inbound.Down)), "Upload=="+common.FormatTraffic(inbound.Up), "Download=="+common.FormatTraffic(inbound.Down))
  1061. if inbound.ExpiryTime == 0 {
  1062. info += t.I18nBot("tgbot.messages.expire", "Time=="+t.I18nBot("tgbot.unlimited"))
  1063. } else {
  1064. info += t.I18nBot("tgbot.messages.expire", "Time=="+time.Unix((inbound.ExpiryTime/1000), 0).Format("2006-01-02 15:04:05"))
  1065. }
  1066. info += "\r\n"
  1067. }
  1068. }
  1069. return info
  1070. }
  1071. func (t *Tgbot) getInbounds() (*telego.InlineKeyboardMarkup, error) {
  1072. inbounds, err := t.inboundService.GetAllInbounds()
  1073. var buttons []telego.InlineKeyboardButton
  1074. if err != nil {
  1075. logger.Warning("GetAllInbounds run failed:", err)
  1076. return nil, errors.New(t.I18nBot("tgbot.answers.getInboundsFailed"))
  1077. } else {
  1078. if len(inbounds) > 0 {
  1079. for _, inbound := range inbounds {
  1080. status := "❌"
  1081. if inbound.Enable {
  1082. status = "✅"
  1083. }
  1084. buttons = append(buttons, tu.InlineKeyboardButton(fmt.Sprintf("%v - %v", inbound.Remark, status)).WithCallbackData(t.encodeQuery("get_clients "+strconv.Itoa(inbound.Id))))
  1085. }
  1086. } else {
  1087. logger.Warning("GetAllInbounds run failed:", err)
  1088. return nil, errors.New(t.I18nBot("tgbot.answers.getInboundsFailed"))
  1089. }
  1090. }
  1091. cols := 0
  1092. if len(buttons) < 6 {
  1093. cols = 3
  1094. } else {
  1095. cols = 2
  1096. }
  1097. keyboard := tu.InlineKeyboardGrid(tu.InlineKeyboardCols(cols, buttons...))
  1098. return keyboard, nil
  1099. }
  1100. func (t *Tgbot) getInboundClients(id int) (*telego.InlineKeyboardMarkup, error) {
  1101. inbound, err := t.inboundService.GetInbound(id)
  1102. if err != nil {
  1103. logger.Warning("getIboundClients run failed:", err)
  1104. return nil, errors.New(t.I18nBot("tgbot.answers.getInboundsFailed"))
  1105. }
  1106. clients, err := t.inboundService.GetClients(inbound)
  1107. var buttons []telego.InlineKeyboardButton
  1108. if err != nil {
  1109. logger.Warning("GetInboundClients run failed:", err)
  1110. return nil, errors.New(t.I18nBot("tgbot.answers.getInboundsFailed"))
  1111. } else {
  1112. if len(clients) > 0 {
  1113. for _, client := range clients {
  1114. buttons = append(buttons, tu.InlineKeyboardButton(client.Email).WithCallbackData(t.encodeQuery("client_get_usage "+client.Email)))
  1115. }
  1116. } else {
  1117. return nil, errors.New(t.I18nBot("tgbot.answers.getClientsFailed"))
  1118. }
  1119. }
  1120. cols := 0
  1121. if len(buttons) < 6 {
  1122. cols = 3
  1123. } else {
  1124. cols = 2
  1125. }
  1126. keyboard := tu.InlineKeyboardGrid(tu.InlineKeyboardCols(cols, buttons...))
  1127. return keyboard, nil
  1128. }
  1129. func (t *Tgbot) clientInfoMsg(
  1130. traffic *xray.ClientTraffic,
  1131. printEnabled bool,
  1132. printOnline bool,
  1133. printActive bool,
  1134. printDate bool,
  1135. printTraffic bool,
  1136. printRefreshed bool,
  1137. ) string {
  1138. now := time.Now().Unix()
  1139. expiryTime := ""
  1140. flag := false
  1141. diff := traffic.ExpiryTime/1000 - now
  1142. if traffic.ExpiryTime == 0 {
  1143. expiryTime = t.I18nBot("tgbot.unlimited")
  1144. } else if diff > 172800 || !traffic.Enable {
  1145. expiryTime = time.Unix((traffic.ExpiryTime / 1000), 0).Format("2006-01-02 15:04:05")
  1146. } else if traffic.ExpiryTime < 0 {
  1147. expiryTime = fmt.Sprintf("%d %s", traffic.ExpiryTime/-86400000, t.I18nBot("tgbot.days"))
  1148. flag = true
  1149. } else {
  1150. expiryTime = fmt.Sprintf("%d %s", diff/3600, t.I18nBot("tgbot.hours"))
  1151. flag = true
  1152. }
  1153. total := ""
  1154. if traffic.Total == 0 {
  1155. total = t.I18nBot("tgbot.unlimited")
  1156. } else {
  1157. total = common.FormatTraffic((traffic.Total))
  1158. }
  1159. enabled := ""
  1160. isEnabled, err := t.inboundService.checkIsEnabledByEmail(traffic.Email)
  1161. if err != nil {
  1162. logger.Warning(err)
  1163. enabled = t.I18nBot("tgbot.wentWrong")
  1164. } else if isEnabled {
  1165. enabled = t.I18nBot("tgbot.messages.yes")
  1166. } else {
  1167. enabled = t.I18nBot("tgbot.messages.no")
  1168. }
  1169. active := ""
  1170. if traffic.Enable {
  1171. active = t.I18nBot("tgbot.messages.yes")
  1172. } else {
  1173. active = t.I18nBot("tgbot.messages.no")
  1174. }
  1175. status := t.I18nBot("tgbot.offline")
  1176. if p.IsRunning() {
  1177. for _, online := range p.GetOnlineClients() {
  1178. if online == traffic.Email {
  1179. status = t.I18nBot("tgbot.online")
  1180. break
  1181. }
  1182. }
  1183. }
  1184. output := ""
  1185. output += t.I18nBot("tgbot.messages.email", "Email=="+traffic.Email)
  1186. if printEnabled {
  1187. output += t.I18nBot("tgbot.messages.enabled", "Enable=="+enabled)
  1188. }
  1189. if printOnline {
  1190. output += t.I18nBot("tgbot.messages.online", "Status=="+status)
  1191. }
  1192. if printActive {
  1193. output += t.I18nBot("tgbot.messages.active", "Enable=="+active)
  1194. }
  1195. if printDate {
  1196. if flag {
  1197. output += t.I18nBot("tgbot.messages.expireIn", "Time=="+expiryTime)
  1198. } else {
  1199. output += t.I18nBot("tgbot.messages.expire", "Time=="+expiryTime)
  1200. }
  1201. }
  1202. if printTraffic {
  1203. output += t.I18nBot("tgbot.messages.upload", "Upload=="+common.FormatTraffic(traffic.Up))
  1204. output += t.I18nBot("tgbot.messages.download", "Download=="+common.FormatTraffic(traffic.Down))
  1205. output += t.I18nBot("tgbot.messages.total", "UpDown=="+common.FormatTraffic((traffic.Up+traffic.Down)), "Total=="+total)
  1206. }
  1207. if printRefreshed {
  1208. output += t.I18nBot("tgbot.messages.refreshedOn", "Time=="+time.Now().Format("2006-01-02 15:04:05"))
  1209. }
  1210. return output
  1211. }
  1212. func (t *Tgbot) getClientUsage(chatId int64, tgUserID int64, email ...string) {
  1213. traffics, err := t.inboundService.GetClientTrafficTgBot(tgUserID)
  1214. if err != nil {
  1215. logger.Warning(err)
  1216. msg := t.I18nBot("tgbot.wentWrong")
  1217. t.SendMsgToTgbot(chatId, msg)
  1218. return
  1219. }
  1220. if len(traffics) == 0 {
  1221. t.SendMsgToTgbot(chatId, t.I18nBot("tgbot.answers.askToAddUserId", "TgUserID=="+strconv.FormatInt(tgUserID, 10)))
  1222. return
  1223. }
  1224. output := ""
  1225. if len(traffics) > 0 {
  1226. if len(email) > 0 {
  1227. for _, traffic := range traffics {
  1228. if traffic.Email == email[0] {
  1229. output := t.clientInfoMsg(traffic, true, true, true, true, true, true)
  1230. t.SendMsgToTgbot(chatId, output)
  1231. return
  1232. }
  1233. }
  1234. msg := t.I18nBot("tgbot.noResult")
  1235. t.SendMsgToTgbot(chatId, msg)
  1236. return
  1237. } else {
  1238. for _, traffic := range traffics {
  1239. output += t.clientInfoMsg(traffic, true, true, true, true, true, false)
  1240. output += "\r\n"
  1241. }
  1242. }
  1243. }
  1244. output += t.I18nBot("tgbot.messages.refreshedOn", "Time=="+time.Now().Format("2006-01-02 15:04:05"))
  1245. t.SendMsgToTgbot(chatId, output)
  1246. output = t.I18nBot("tgbot.commands.pleaseChoose")
  1247. t.SendAnswer(chatId, output, false)
  1248. }
  1249. func (t *Tgbot) searchClientIps(chatId int64, email string, messageID ...int) {
  1250. ips, err := t.inboundService.GetInboundClientIps(email)
  1251. if err != nil || len(ips) == 0 {
  1252. ips = t.I18nBot("tgbot.noIpRecord")
  1253. }
  1254. output := ""
  1255. output += t.I18nBot("tgbot.messages.email", "Email=="+email)
  1256. output += t.I18nBot("tgbot.messages.ips", "IPs=="+ips)
  1257. output += t.I18nBot("tgbot.messages.refreshedOn", "Time=="+time.Now().Format("2006-01-02 15:04:05"))
  1258. inlineKeyboard := tu.InlineKeyboard(
  1259. tu.InlineKeyboardRow(
  1260. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.refresh")).WithCallbackData(t.encodeQuery("ips_refresh "+email)),
  1261. ),
  1262. tu.InlineKeyboardRow(
  1263. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.clearIPs")).WithCallbackData(t.encodeQuery("clear_ips "+email)),
  1264. ),
  1265. )
  1266. if len(messageID) > 0 {
  1267. t.editMessageTgBot(chatId, messageID[0], output, inlineKeyboard)
  1268. } else {
  1269. t.SendMsgToTgbot(chatId, output, inlineKeyboard)
  1270. }
  1271. }
  1272. func (t *Tgbot) clientTelegramUserInfo(chatId int64, email string, messageID ...int) {
  1273. traffic, client, err := t.inboundService.GetClientByEmail(email)
  1274. if err != nil {
  1275. logger.Warning(err)
  1276. msg := t.I18nBot("tgbot.wentWrong")
  1277. t.SendMsgToTgbot(chatId, msg)
  1278. return
  1279. }
  1280. if client == nil {
  1281. msg := t.I18nBot("tgbot.noResult")
  1282. t.SendMsgToTgbot(chatId, msg)
  1283. return
  1284. }
  1285. tgId := "None"
  1286. if client.TgID != 0 {
  1287. tgId = strconv.FormatInt(client.TgID, 10)
  1288. }
  1289. output := ""
  1290. output += t.I18nBot("tgbot.messages.email", "Email=="+email)
  1291. output += t.I18nBot("tgbot.messages.TGUser", "TelegramID=="+tgId)
  1292. output += t.I18nBot("tgbot.messages.refreshedOn", "Time=="+time.Now().Format("2006-01-02 15:04:05"))
  1293. inlineKeyboard := tu.InlineKeyboard(
  1294. tu.InlineKeyboardRow(
  1295. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.refresh")).WithCallbackData(t.encodeQuery("tgid_refresh "+email)),
  1296. ),
  1297. tu.InlineKeyboardRow(
  1298. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.removeTGUser")).WithCallbackData(t.encodeQuery("tgid_remove "+email)),
  1299. ),
  1300. )
  1301. if len(messageID) > 0 {
  1302. t.editMessageTgBot(chatId, messageID[0], output, inlineKeyboard)
  1303. } else {
  1304. t.SendMsgToTgbot(chatId, output, inlineKeyboard)
  1305. requestUser := telego.KeyboardButtonRequestUsers{
  1306. RequestID: int32(traffic.Id),
  1307. UserIsBot: new(bool),
  1308. }
  1309. keyboard := tu.Keyboard(
  1310. tu.KeyboardRow(
  1311. tu.KeyboardButton(t.I18nBot("tgbot.buttons.selectTGUser")).WithRequestUsers(&requestUser),
  1312. ),
  1313. tu.KeyboardRow(
  1314. tu.KeyboardButton(t.I18nBot("tgbot.buttons.closeKeyboard")),
  1315. ),
  1316. ).WithIsPersistent().WithResizeKeyboard()
  1317. t.SendMsgToTgbot(chatId, t.I18nBot("tgbot.buttons.selectOneTGUser"), keyboard)
  1318. }
  1319. }
  1320. func (t *Tgbot) searchClient(chatId int64, email string, messageID ...int) {
  1321. traffic, err := t.inboundService.GetClientTrafficByEmail(email)
  1322. if err != nil {
  1323. logger.Warning(err)
  1324. msg := t.I18nBot("tgbot.wentWrong")
  1325. t.SendMsgToTgbot(chatId, msg)
  1326. return
  1327. }
  1328. if traffic == nil {
  1329. msg := t.I18nBot("tgbot.noResult")
  1330. t.SendMsgToTgbot(chatId, msg)
  1331. return
  1332. }
  1333. output := t.clientInfoMsg(traffic, true, true, true, true, true, true)
  1334. inlineKeyboard := tu.InlineKeyboard(
  1335. tu.InlineKeyboardRow(
  1336. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.refresh")).WithCallbackData(t.encodeQuery("client_refresh "+email)),
  1337. ),
  1338. tu.InlineKeyboardRow(
  1339. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.resetTraffic")).WithCallbackData(t.encodeQuery("reset_traffic "+email)),
  1340. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.limitTraffic")).WithCallbackData(t.encodeQuery("limit_traffic "+email)),
  1341. ),
  1342. tu.InlineKeyboardRow(
  1343. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.resetExpire")).WithCallbackData(t.encodeQuery("reset_exp "+email)),
  1344. ),
  1345. tu.InlineKeyboardRow(
  1346. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.ipLog")).WithCallbackData(t.encodeQuery("ip_log "+email)),
  1347. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.ipLimit")).WithCallbackData(t.encodeQuery("ip_limit "+email)),
  1348. ),
  1349. tu.InlineKeyboardRow(
  1350. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.setTGUser")).WithCallbackData(t.encodeQuery("tg_user "+email)),
  1351. ),
  1352. tu.InlineKeyboardRow(
  1353. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.toggle")).WithCallbackData(t.encodeQuery("toggle_enable "+email)),
  1354. ),
  1355. )
  1356. if len(messageID) > 0 {
  1357. t.editMessageTgBot(chatId, messageID[0], output, inlineKeyboard)
  1358. } else {
  1359. t.SendMsgToTgbot(chatId, output, inlineKeyboard)
  1360. }
  1361. }
  1362. func (t *Tgbot) searchInbound(chatId int64, remark string) {
  1363. inbounds, err := t.inboundService.SearchInbounds(remark)
  1364. if err != nil {
  1365. logger.Warning(err)
  1366. msg := t.I18nBot("tgbot.wentWrong")
  1367. t.SendMsgToTgbot(chatId, msg)
  1368. return
  1369. }
  1370. if len(inbounds) == 0 {
  1371. msg := t.I18nBot("tgbot.noInbounds")
  1372. t.SendMsgToTgbot(chatId, msg)
  1373. return
  1374. }
  1375. for _, inbound := range inbounds {
  1376. info := ""
  1377. info += t.I18nBot("tgbot.messages.inbound", "Remark=="+inbound.Remark)
  1378. info += t.I18nBot("tgbot.messages.port", "Port=="+strconv.Itoa(inbound.Port))
  1379. info += t.I18nBot("tgbot.messages.traffic", "Total=="+common.FormatTraffic((inbound.Up+inbound.Down)), "Upload=="+common.FormatTraffic(inbound.Up), "Download=="+common.FormatTraffic(inbound.Down))
  1380. if inbound.ExpiryTime == 0 {
  1381. info += t.I18nBot("tgbot.messages.expire", "Time=="+t.I18nBot("tgbot.unlimited"))
  1382. } else {
  1383. info += t.I18nBot("tgbot.messages.expire", "Time=="+time.Unix((inbound.ExpiryTime/1000), 0).Format("2006-01-02 15:04:05"))
  1384. }
  1385. t.SendMsgToTgbot(chatId, info)
  1386. if len(inbound.ClientStats) > 0 {
  1387. output := ""
  1388. for _, traffic := range inbound.ClientStats {
  1389. output += t.clientInfoMsg(&traffic, true, true, true, true, true, true)
  1390. }
  1391. t.SendMsgToTgbot(chatId, output)
  1392. }
  1393. }
  1394. }
  1395. func (t *Tgbot) getExhausted(chatId int64) {
  1396. trDiff := int64(0)
  1397. exDiff := int64(0)
  1398. now := time.Now().Unix() * 1000
  1399. var exhaustedInbounds []model.Inbound
  1400. var exhaustedClients []xray.ClientTraffic
  1401. var disabledInbounds []model.Inbound
  1402. var disabledClients []xray.ClientTraffic
  1403. TrafficThreshold, err := t.settingService.GetTrafficDiff()
  1404. if err == nil && TrafficThreshold > 0 {
  1405. trDiff = int64(TrafficThreshold) * 1073741824
  1406. }
  1407. ExpireThreshold, err := t.settingService.GetExpireDiff()
  1408. if err == nil && ExpireThreshold > 0 {
  1409. exDiff = int64(ExpireThreshold) * 86400000
  1410. }
  1411. inbounds, err := t.inboundService.GetAllInbounds()
  1412. if err != nil {
  1413. logger.Warning("Unable to load Inbounds", err)
  1414. }
  1415. for _, inbound := range inbounds {
  1416. if inbound.Enable {
  1417. if (inbound.ExpiryTime > 0 && (inbound.ExpiryTime-now < exDiff)) ||
  1418. (inbound.Total > 0 && (inbound.Total-(inbound.Up+inbound.Down) < trDiff)) {
  1419. exhaustedInbounds = append(exhaustedInbounds, *inbound)
  1420. }
  1421. if len(inbound.ClientStats) > 0 {
  1422. for _, client := range inbound.ClientStats {
  1423. if client.Enable {
  1424. if (client.ExpiryTime > 0 && (client.ExpiryTime-now < exDiff)) ||
  1425. (client.Total > 0 && (client.Total-(client.Up+client.Down) < trDiff)) {
  1426. exhaustedClients = append(exhaustedClients, client)
  1427. }
  1428. } else {
  1429. disabledClients = append(disabledClients, client)
  1430. }
  1431. }
  1432. }
  1433. } else {
  1434. disabledInbounds = append(disabledInbounds, *inbound)
  1435. }
  1436. }
  1437. // Inbounds
  1438. output := ""
  1439. output += t.I18nBot("tgbot.messages.exhaustedCount", "Type=="+t.I18nBot("tgbot.inbounds"))
  1440. output += t.I18nBot("tgbot.messages.disabled", "Disabled=="+strconv.Itoa(len(disabledInbounds)))
  1441. output += t.I18nBot("tgbot.messages.depleteSoon", "Deplete=="+strconv.Itoa(len(exhaustedInbounds)))
  1442. if len(exhaustedInbounds) > 0 {
  1443. output += t.I18nBot("tgbot.messages.depleteSoon", "Deplete=="+t.I18nBot("tgbot.inbounds"))
  1444. for _, inbound := range exhaustedInbounds {
  1445. output += t.I18nBot("tgbot.messages.inbound", "Remark=="+inbound.Remark)
  1446. output += t.I18nBot("tgbot.messages.port", "Port=="+strconv.Itoa(inbound.Port))
  1447. output += t.I18nBot("tgbot.messages.traffic", "Total=="+common.FormatTraffic((inbound.Up+inbound.Down)), "Upload=="+common.FormatTraffic(inbound.Up), "Download=="+common.FormatTraffic(inbound.Down))
  1448. if inbound.ExpiryTime == 0 {
  1449. output += t.I18nBot("tgbot.messages.expire", "Time=="+t.I18nBot("tgbot.unlimited"))
  1450. } else {
  1451. output += t.I18nBot("tgbot.messages.expire", "Time=="+time.Unix((inbound.ExpiryTime/1000), 0).Format("2006-01-02 15:04:05"))
  1452. }
  1453. output += "\r\n"
  1454. }
  1455. }
  1456. // Clients
  1457. exhaustedCC := len(exhaustedClients)
  1458. output += t.I18nBot("tgbot.messages.exhaustedCount", "Type=="+t.I18nBot("tgbot.clients"))
  1459. output += t.I18nBot("tgbot.messages.disabled", "Disabled=="+strconv.Itoa(len(disabledClients)))
  1460. output += t.I18nBot("tgbot.messages.depleteSoon", "Deplete=="+strconv.Itoa(exhaustedCC))
  1461. if exhaustedCC > 0 {
  1462. output += t.I18nBot("tgbot.messages.depleteSoon", "Deplete=="+t.I18nBot("tgbot.clients"))
  1463. var buttons []telego.InlineKeyboardButton
  1464. for _, traffic := range exhaustedClients {
  1465. output += t.clientInfoMsg(&traffic, true, false, false, true, true, false)
  1466. output += "\r\n"
  1467. buttons = append(buttons, tu.InlineKeyboardButton(traffic.Email).WithCallbackData(t.encodeQuery("client_get_usage "+traffic.Email)))
  1468. }
  1469. cols := 0
  1470. if exhaustedCC < 11 {
  1471. cols = 1
  1472. } else {
  1473. cols = 2
  1474. }
  1475. output += t.I18nBot("tgbot.messages.refreshedOn", "Time=="+time.Now().Format("2006-01-02 15:04:05"))
  1476. keyboard := tu.InlineKeyboardGrid(tu.InlineKeyboardCols(cols, buttons...))
  1477. t.SendMsgToTgbot(chatId, output, keyboard)
  1478. } else {
  1479. output += t.I18nBot("tgbot.messages.refreshedOn", "Time=="+time.Now().Format("2006-01-02 15:04:05"))
  1480. t.SendMsgToTgbot(chatId, output)
  1481. }
  1482. }
  1483. func (t *Tgbot) notifyExhausted() {
  1484. trDiff := int64(0)
  1485. exDiff := int64(0)
  1486. now := time.Now().Unix() * 1000
  1487. TrafficThreshold, err := t.settingService.GetTrafficDiff()
  1488. if err == nil && TrafficThreshold > 0 {
  1489. trDiff = int64(TrafficThreshold) * 1073741824
  1490. }
  1491. ExpireThreshold, err := t.settingService.GetExpireDiff()
  1492. if err == nil && ExpireThreshold > 0 {
  1493. exDiff = int64(ExpireThreshold) * 86400000
  1494. }
  1495. inbounds, err := t.inboundService.GetAllInbounds()
  1496. if err != nil {
  1497. logger.Warning("Unable to load Inbounds", err)
  1498. }
  1499. var chatIDsDone []int64
  1500. for _, inbound := range inbounds {
  1501. if inbound.Enable {
  1502. if len(inbound.ClientStats) > 0 {
  1503. clients, err := t.inboundService.GetClients(inbound)
  1504. if err == nil {
  1505. for _, client := range clients {
  1506. if client.TgID != 0 {
  1507. chatID := client.TgID
  1508. if !int64Contains(chatIDsDone, chatID) && !checkAdmin(chatID) {
  1509. var disabledClients []xray.ClientTraffic
  1510. var exhaustedClients []xray.ClientTraffic
  1511. traffics, err := t.inboundService.GetClientTrafficTgBot(client.TgID)
  1512. if err == nil && len(traffics) > 0 {
  1513. output := t.I18nBot("tgbot.messages.exhaustedCount", "Type=="+t.I18nBot("tgbot.clients"))
  1514. for _, traffic := range traffics {
  1515. if traffic.Enable {
  1516. if (traffic.ExpiryTime > 0 && (traffic.ExpiryTime-now < exDiff)) ||
  1517. (traffic.Total > 0 && (traffic.Total-(traffic.Up+traffic.Down) < trDiff)) {
  1518. exhaustedClients = append(exhaustedClients, *traffic)
  1519. }
  1520. } else {
  1521. disabledClients = append(disabledClients, *traffic)
  1522. }
  1523. }
  1524. if len(exhaustedClients) > 0 {
  1525. output += t.I18nBot("tgbot.messages.disabled", "Disabled=="+strconv.Itoa(len(disabledClients)))
  1526. if len(disabledClients) > 0 {
  1527. output += t.I18nBot("tgbot.clients") + ":\r\n"
  1528. for _, traffic := range disabledClients {
  1529. output += " " + traffic.Email
  1530. }
  1531. output += "\r\n"
  1532. }
  1533. output += "\r\n"
  1534. output += t.I18nBot("tgbot.messages.depleteSoon", "Deplete=="+strconv.Itoa(len(exhaustedClients)))
  1535. for _, traffic := range exhaustedClients {
  1536. output += t.clientInfoMsg(&traffic, true, false, false, true, true, false)
  1537. output += "\r\n"
  1538. }
  1539. t.SendMsgToTgbot(chatID, output)
  1540. }
  1541. chatIDsDone = append(chatIDsDone, chatID)
  1542. }
  1543. }
  1544. }
  1545. }
  1546. }
  1547. }
  1548. }
  1549. }
  1550. }
  1551. func int64Contains(slice []int64, item int64) bool {
  1552. return slices.Contains(slice, item)
  1553. }
  1554. func (t *Tgbot) onlineClients(chatId int64, messageID ...int) {
  1555. if !p.IsRunning() {
  1556. return
  1557. }
  1558. onlines := p.GetOnlineClients()
  1559. onlinesCount := len(onlines)
  1560. output := t.I18nBot("tgbot.messages.onlinesCount", "Count=="+fmt.Sprint(onlinesCount))
  1561. keyboard := tu.InlineKeyboard(tu.InlineKeyboardRow(
  1562. tu.InlineKeyboardButton(t.I18nBot("tgbot.buttons.refresh")).WithCallbackData(t.encodeQuery("onlines_refresh"))))
  1563. if onlinesCount > 0 {
  1564. var buttons []telego.InlineKeyboardButton
  1565. for _, online := range onlines {
  1566. buttons = append(buttons, tu.InlineKeyboardButton(online).WithCallbackData(t.encodeQuery("client_get_usage "+online)))
  1567. }
  1568. cols := 0
  1569. if onlinesCount < 21 {
  1570. cols = 2
  1571. } else if onlinesCount < 61 {
  1572. cols = 3
  1573. } else {
  1574. cols = 4
  1575. }
  1576. keyboard.InlineKeyboard = append(keyboard.InlineKeyboard, tu.InlineKeyboardCols(cols, buttons...)...)
  1577. }
  1578. if len(messageID) > 0 {
  1579. t.editMessageTgBot(chatId, messageID[0], output, keyboard)
  1580. } else {
  1581. t.SendMsgToTgbot(chatId, output, keyboard)
  1582. }
  1583. }
  1584. func (t *Tgbot) sendBackup(chatId int64) {
  1585. output := t.I18nBot("tgbot.messages.backupTime", "Time=="+time.Now().Format("2006-01-02 15:04:05"))
  1586. t.SendMsgToTgbot(chatId, output)
  1587. // Update by manually trigger a checkpoint operation
  1588. err := database.Checkpoint()
  1589. if err != nil {
  1590. logger.Error("Error in trigger a checkpoint operation: ", err)
  1591. }
  1592. file, err := os.Open(config.GetDBPath())
  1593. if err == nil {
  1594. document := tu.Document(
  1595. tu.ID(chatId),
  1596. tu.File(file),
  1597. )
  1598. _, err = bot.SendDocument(document)
  1599. if err != nil {
  1600. logger.Error("Error in uploading backup: ", err)
  1601. }
  1602. } else {
  1603. logger.Error("Error in opening db file for backup: ", err)
  1604. }
  1605. file, err = os.Open(xray.GetConfigPath())
  1606. if err == nil {
  1607. document := tu.Document(
  1608. tu.ID(chatId),
  1609. tu.File(file),
  1610. )
  1611. _, err = bot.SendDocument(document)
  1612. if err != nil {
  1613. logger.Error("Error in uploading config.json: ", err)
  1614. }
  1615. } else {
  1616. logger.Error("Error in opening config.json file for backup: ", err)
  1617. }
  1618. }
  1619. func (t *Tgbot) sendBanLogs(chatId int64, dt bool) {
  1620. if dt {
  1621. output := t.I18nBot("tgbot.messages.datetime", "DateTime=="+time.Now().Format("2006-01-02 15:04:05"))
  1622. t.SendMsgToTgbot(chatId, output)
  1623. }
  1624. file, err := os.Open(xray.GetIPLimitBannedPrevLogPath())
  1625. if err == nil {
  1626. // Check if the file is non-empty before attempting to upload
  1627. fileInfo, _ := file.Stat()
  1628. if fileInfo.Size() > 0 {
  1629. document := tu.Document(
  1630. tu.ID(chatId),
  1631. tu.File(file),
  1632. )
  1633. _, err = bot.SendDocument(document)
  1634. if err != nil {
  1635. logger.Error("Error in uploading IPLimitBannedPrevLog: ", err)
  1636. }
  1637. } else {
  1638. logger.Warning("IPLimitBannedPrevLog file is empty, not uploading.")
  1639. }
  1640. file.Close()
  1641. } else {
  1642. logger.Error("Error in opening IPLimitBannedPrevLog file for backup: ", err)
  1643. }
  1644. file, err = os.Open(xray.GetIPLimitBannedLogPath())
  1645. if err == nil {
  1646. // Check if the file is non-empty before attempting to upload
  1647. fileInfo, _ := file.Stat()
  1648. if fileInfo.Size() > 0 {
  1649. document := tu.Document(
  1650. tu.ID(chatId),
  1651. tu.File(file),
  1652. )
  1653. _, err = bot.SendDocument(document)
  1654. if err != nil {
  1655. logger.Error("Error in uploading IPLimitBannedLog: ", err)
  1656. }
  1657. } else {
  1658. logger.Warning("IPLimitBannedLog file is empty, not uploading.")
  1659. }
  1660. file.Close()
  1661. } else {
  1662. logger.Error("Error in opening IPLimitBannedLog file for backup: ", err)
  1663. }
  1664. }
  1665. func (t *Tgbot) sendCallbackAnswerTgBot(id string, message string) {
  1666. params := telego.AnswerCallbackQueryParams{
  1667. CallbackQueryID: id,
  1668. Text: message,
  1669. }
  1670. if err := bot.AnswerCallbackQuery(&params); err != nil {
  1671. logger.Warning(err)
  1672. }
  1673. }
  1674. func (t *Tgbot) editMessageCallbackTgBot(chatId int64, messageID int, inlineKeyboard *telego.InlineKeyboardMarkup) {
  1675. params := telego.EditMessageReplyMarkupParams{
  1676. ChatID: tu.ID(chatId),
  1677. MessageID: messageID,
  1678. ReplyMarkup: inlineKeyboard,
  1679. }
  1680. if _, err := bot.EditMessageReplyMarkup(&params); err != nil {
  1681. logger.Warning(err)
  1682. }
  1683. }
  1684. func (t *Tgbot) editMessageTgBot(chatId int64, messageID int, text string, inlineKeyboard ...*telego.InlineKeyboardMarkup) {
  1685. params := telego.EditMessageTextParams{
  1686. ChatID: tu.ID(chatId),
  1687. MessageID: messageID,
  1688. Text: text,
  1689. ParseMode: "HTML",
  1690. }
  1691. if len(inlineKeyboard) > 0 {
  1692. params.ReplyMarkup = inlineKeyboard[0]
  1693. }
  1694. if _, err := bot.EditMessageText(&params); err != nil {
  1695. logger.Warning(err)
  1696. }
  1697. }