mirror of
https://github.com/tiennm99/miti99bot.git
synced 2026-06-09 14:12:10 +00:00
f3b9891a54
Rename: - Go module github.com/tiennm99/miti99bot-go → github.com/tiennm99/miti99bot - CloudFormation stack miti99bot-aws-port → miti99bot - Drop "port", "Cloud Run", "GCP", "cutover", "Phase NN" framing from active code and docs — project reads as canonical AWS-Lambda from now on. AWS deploy guide + flow fix: - New docs/deploy-aws-free-tier-guide.md — Ubuntu 24.04 ARM64 onboarding with project-local venv (pip awscli + sam-cli), SSM secrets via read -s, idempotent OIDC provider + role creation, $1 budget alarm. - Drop sam build from the pipeline — provided.al2023 + makefile builder expects a Makefile in CodeUri (build/lambda/, the output dir), so the step always fails. sam deploy --template-file template.yaml now reads the raw template and zips build/lambda/ directly. - Rollback section rewritten — use continue-update-rollback / cancel-update-stack / git-SHA redeploy. Drop the broken --use-previous-template recipe. - DynamoDB free-tier row corrected (on-demand is 2.5M read / 1M write request units, not 25 RCU/WCU). Updated: - README.md fully rewritten (drops port/legacy framing, lists modules, points new users at the free-tier guide). - aws/README.md retitled "AWS account setup", phase numbers stripped. - Makefile / .github/workflows/deploy.yml — sam deploy flow. - samconfig.toml — stack_name = "miti99bot". - Go comments — Cloud Run → Lambda, Cloud Scheduler → EventBridge Scheduler, Cloud Logging → CloudWatch Logs. - Struct field GCPProject → FirestoreProject (env GOOGLE_CLOUD_PROJECT unchanged). Plus advisory reports under plans/reports/ from the code-reviewer + researcher passes that informed the fixes. Verified: go vet ./..., go build ./..., go test ./... all green.
44 lines
1.4 KiB
Go
44 lines
1.4 KiB
Go
package util
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/go-telegram/bot"
|
|
"github.com/go-telegram/bot/models"
|
|
|
|
"github.com/tiennm99/miti99bot/internal/modules"
|
|
"github.com/tiennm99/miti99bot/internal/modules/util/chathelper"
|
|
)
|
|
|
|
// infoCommand returns /info — replies plain text with chat / thread / sender
|
|
// IDs, with "n/a" fallbacks. Used to debug bot routing in groups + topics.
|
|
func infoCommand() modules.Command {
|
|
return modules.Command{
|
|
Name: "info",
|
|
Visibility: modules.VisibilityPublic,
|
|
Description: "Show chat id, thread id, and sender id (debug helper)",
|
|
Handler: func(ctx context.Context, b *bot.Bot, update *models.Update) error {
|
|
msg := update.Message
|
|
if msg == nil {
|
|
// Today the dispatcher only routes message-text commands, but
|
|
// guard so /info can be safely reused from other update paths.
|
|
return nil
|
|
}
|
|
chatID := fmt.Sprintf("%d", msg.Chat.ID)
|
|
// Telegram omits message_thread_id outside forum topics, so a 0
|
|
// here is "no thread", same as JS's `?? "n/a"`.
|
|
threadID := "n/a"
|
|
if msg.MessageThreadID != 0 {
|
|
threadID = fmt.Sprintf("%d", msg.MessageThreadID)
|
|
}
|
|
senderID := "n/a"
|
|
if msg.From != nil {
|
|
senderID = fmt.Sprintf("%d", msg.From.ID)
|
|
}
|
|
text := fmt.Sprintf("chat id: %s\nthread id: %s\nsender id: %s", chatID, threadID, senderID)
|
|
return chathelper.Reply(ctx, b, msg.Chat.ID, text)
|
|
},
|
|
}
|
|
}
|