feat(message): add sticker source helpers to send stickers#1759
Merged
Conversation
Add fluent helpers to pick and send stickers from faved, recent or set sources via sender.Self().Sticker(source).ByIndex/ByEmoji/First. Closes #189 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
Closes #189.
Adds fluent helpers to
telegram/messagefor picking and sending stickers from the various sticker sources, matching the API sketched in the issue.API
Sources (
StickerSource)Each is backed by the corresponding
messages.*RPC:FavedStickers()—messages.getFavedStickersRecentStickers()/AttachedRecentStickers()—messages.getRecentStickersStickerSet(set)/StickerSetName(shortName)—messages.getStickerSetSelection (
*StickerSetBuilder, viaBuilder.Sticker(source))ByIndex(ctx, i, caption...)ByEmoji(ctx, emoji, caption...)— matchesDocumentAttributeSticker.AltFirst(ctx, caption...)Stickers(ctx)— exposes the resolved documentsSending reuses the existing
Document(...)media path (a sticker is just anInputMediaDocument);*NotModified/empty results surface clear errors.Notes
ISSUES.mdlists message: sticker helpers #189 as already implemented viatelegram/query/cached, but that only covers the fetch/cache side — the send-side helpers the issue asked for didn't exist. This fills that gap.Tests
Offline via
tgmock: index/emoji selection, out-of-range, emoji-not-found, set-by-name, and theNotModifiederror path. Plus a usage example.go test ./telegram/message/ -raceandgo build ./...pass.🤖 Generated with Claude Code