package connector // outOfAppKinds is the set of backend push kinds delivered out-of-app; the rest // stay in-app only (opponent_moved and chat_message are too noisy for a platform // notification). var outOfAppKinds = map[string]bool{ "your_turn": true, "nudge": true, "match_found": true, "notify": true, } // OutOfAppKind reports whether a push kind is eligible for out-of-app delivery. func OutOfAppKind(kind string) bool { return outOfAppKinds[kind] } // DeliverToTarget reports whether a resolved push target should receive an // out-of-app message: it has a Telegram identity (externalID != "") and has not // confined notifications to the app (inAppOnly == false). Combined with the // caller's "recipient is offline" check, this is the dedup rule that keeps the // platform push free of duplicates with the in-app stream. func DeliverToTarget(externalID string, inAppOnly bool) bool { return externalID != "" && !inAppOnly }