Multi-chat fan-out: chat_id через запятую на всех эндпоинтах (единый ответ) - #21
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Единый механизм отправки в несколько чатов через запятую в
chat_id(chat_id=a,b,c)на всех точках отправки, с общим форматом ответа.
Все эндпоинты теперь всегда возвращают единую форму ответа, даже для одного чата:
{"ok": true, "results": [{"chat":"a","sync_id":"..."}, {"chat":"b","request_id":"...","queued":true}], "errors": [{"chat":"c","error":"resolving chat: ..."}]}sync_id(sync) либоrequest_id+queued(async).{ok:false,error}с 400/415.Охват
POST /send(sync + async),POST /alertmanager,POST /grafana,POST /gitlab, CLIsend, CLIenqueue.parseChatIDs(split,+ trim + dedup + порядок) + best-effort fan-out коллектор./gitlabпереведён на общий механизм; sender-путь и изоляция per-sender токенов сохранены (цели = sender.chats,?chat_id/routes для sender игнорируются)./sendпарсит mentions per-target-bot./send+ CLIenqueue:chat_id=a,b→ N отдельных сообщений в очередь (expand; per-chat независимый retry/ack, worker без изменений — обоснование в код-комментарии).Прочее
Обновлены OpenAPI, docs (configuration/integrations/README) с пометкой breaking, примеры, бамп версии chart+app.