package domain const ( // OfficialSystemUserID 是 Telegram 兼容客户端识别的官方系统账号。 OfficialSystemUserID int64 = 777000 // BotFatherUserID 是内置 BotFather 账号,与官方 @BotFather 同 ID。 BotFatherUserID int64 = 93372553 // BotFatherAccessHash 固定不变;与迁移 0090 的种子行双写,必须保持一致。 BotFatherAccessHash int64 = 7421896403922962293 // StickersBotUserID 是内置 @Stickers 账号。它是 server 内置 service bot, // 不走外部 Bot API 进程。 StickersBotUserID int64 = 1063110917 // StickersBotAccessHash 固定不变;与 postgres 种子行双写,必须保持一致。 StickersBotAccessHash int64 = 5213187021149032991 // ChatBotUserID 是内置 @ChatBot 账号。它把私聊文本转给 server AI provider 链。 ChatBotUserID int64 = 1250000007 // ChatBotAccessHash 固定不变;与 postgres 种子行双写,必须保持一致。 ChatBotAccessHash int64 = 6332902371644871201 ) // OfficialSystemUser 返回第一阶段内置的官方系统账号。 func OfficialSystemUser() User { return User{ ID: OfficialSystemUserID, AccessHash: 6599886787491911851, Phone: "42777", FirstName: "Telegram", Username: "telegram", Verified: true, Support: true, } } // BotFatherUser 返回内置 BotFather 账号。username 不以 bot 结尾属种子例外(与官方一致)。 func BotFatherUser() User { return User{ ID: BotFatherUserID, AccessHash: BotFatherAccessHash, FirstName: "BotFather", Username: "BotFather", Verified: true, Bot: true, BotInfoVersion: 1, } } // StickersBotUser 返回内置 @Stickers 账号。username 不以 bot 结尾属种子例外(与官方一致)。 func StickersBotUser() User { return User{ ID: StickersBotUserID, AccessHash: StickersBotAccessHash, FirstName: "Stickers", Username: "Stickers", Verified: true, Bot: true, BotInfoVersion: 2, } } // ChatBotUser 返回内置 @ChatBot 账号。 func ChatBotUser() User { return User{ ID: ChatBotUserID, AccessHash: ChatBotAccessHash, FirstName: "ChatBot", Username: "ChatBot", Verified: true, Bot: true, BotInfoVersion: 1, } } // SystemUserByID 返回内置系统账号;非系统账号返回 ok=false。 // 所有对 777000 的硬编码注入点统一经此函数,新增内置账号只改这里。 func SystemUserByID(id int64) (User, bool) { switch id { case OfficialSystemUserID: return OfficialSystemUser(), true case BotFatherUserID: return BotFatherUser(), true case StickersBotUserID: return StickersBotUser(), true case ChatBotUserID: return ChatBotUser(), true } return User{}, false } func IsSystemUserID(id int64) bool { _, ok := SystemUserByID(id) return ok } func SystemUserByPhone(phone string) (User, bool) { phone = NormalizePhone(phone) for _, id := range []int64{OfficialSystemUserID, BotFatherUserID, StickersBotUserID, ChatBotUserID} { u, ok := SystemUserByID(id) if !ok || u.Phone == "" { continue } if NormalizePhone(u.Phone) == phone { return u, true } } return User{}, false }