914beea5ce
1. /refresh now fail-closed: rejects all if ADMIN_CHAT_ID unset or invalid 2. Initial pair cache fill is synchronous — bot waits before accepting queries 3. /refresh reports failure when API fetch fails instead of always saying success Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
35 lines
1.1 KiB
Go
35 lines
1.1 KiB
Go
package commands
|
|
|
|
import (
|
|
"os"
|
|
"strconv"
|
|
|
|
"gopkg.in/telebot.v3"
|
|
"me.thuanle/bbot/internal/configs/key"
|
|
"me.thuanle/bbot/internal/data"
|
|
"me.thuanle/bbot/internal/services/controllers"
|
|
"me.thuanle/bbot/internal/services/tele/chat"
|
|
"me.thuanle/bbot/internal/services/tele/view"
|
|
)
|
|
|
|
func OnGetTopPrices(context telebot.Context) error {
|
|
sym, price, rate := controllers.GetTopPrices()
|
|
return chat.ReplyMessagePre(context, view.RenderOnGetTopPricesMessage(sym, price, rate))
|
|
}
|
|
|
|
func OnGetTopFundingFee(context telebot.Context) error {
|
|
fee, float64s, cds := controllers.GetTopFundingFee()
|
|
return chat.ReplyMessagePre(context, view.RenderOnGetTopFundingFeeMessage(fee, float64s, cds))
|
|
}
|
|
|
|
func OnRefreshPairCache(context telebot.Context) error {
|
|
adminID, err := strconv.ParseInt(os.Getenv(key.AdminChatID), 10, 64)
|
|
if err != nil || adminID == 0 || context.Sender().ID != adminID {
|
|
return nil
|
|
}
|
|
if err := data.Market.RefreshTradingPairCache(); err != nil {
|
|
return chat.ReplyMessage(context, "Failed to refresh trading pair cache")
|
|
}
|
|
return chat.ReplyMessage(context, "Trading pair cache refreshed")
|
|
}
|