hdkv
/
i2_bot
Archived
1
Fork 0

Bastion chat is covered by orders now

master
Vladimir Hodakov 2017-11-26 17:44:41 +04:00
parent e9a1642521
commit 7803242588
1 changed files with 24 additions and 0 deletions

View File

@ -33,11 +33,35 @@ func (o *Orders) sendOrder(order *dbmapping.Order) string {
if !ok {
return "fail"
}
// Adding Bastion chat as it's the zero chat
bastionGroupID, _ := strconv.ParseInt(c.Cfg.SpecialChats.BastionID, 10, 64)
bastionChat := dbmapping.Chat{}
err := c.Db.Get(&bastionChat, c.Db.Rebind("SELECT * FROM chats WHERE telegram_id=?"), bastionGroupID)
if err != nil {
return "fail"
}
targetChats = append(targetChats, bastionChat)
} else {
targetChats, ok = c.Squader.GetSquadChatsBySquadsIDs(order.TargetSquads)
if !ok {
return "fail"
}
targetChatsIDs := strings.Split(order.TargetSquads, ",")
for i := range targetChatsIDs {
if targetChatsIDs[i] == "0" {
bastionGroupID, _ := strconv.ParseInt(c.Cfg.SpecialChats.BastionID, 10, 64)
bastionChat := dbmapping.Chat{}
err := c.Db.Get(&bastionChat, c.Db.Rebind("SELECT * FROM chats WHERE telegram_id=?"), bastionGroupID)
if err != nil {
return "fail"
}
targetChats = append(targetChats, bastionChat)
}
}
}
for i := range targetChats {