Encoding¶
The encoder transparently selects a storage strategy based on payload size, keeping callback data within Telegram's 64-byte limit.
CallbackEncoder¶
telegram_menu_builder.encoding.CallbackEncoder ¶
Handles encoding and decoding of callback data with intelligent compression.
This class implements a hybrid approach: - Small data (< 60 bytes): Inline in callback_data - Medium data (60-500 bytes): Temporary storage with reference - Large data (> 500 bytes): Persistent storage with reference
Attributes:
| Name | Type | Description |
|---|---|---|
storage |
Storage backend for non-inline data |
|
prefix_inline |
Prefix for inline data ('I:') |
|
prefix_short |
Prefix for short-term storage ('S:') |
|
prefix_persistent |
Prefix for persistent storage ('P:') |
Example
encoder = CallbackEncoder(storage) action = MenuAction(handler="test", params={"id": 123}) encoded = await encoder.encode(action) decoded = await encoder.decode(encoded)
Source code in src/telegram_menu_builder/encoding.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 | |
encode
async
¶
Encode MenuAction into callback_data string.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
action
|
MenuAction
|
MenuAction to encode |
required |
force_strategy
|
StorageStrategy | None
|
Force a specific storage strategy (for testing) |
None
|
Returns:
| Type | Description |
|---|---|
str
|
Encoded callback_data string (max 64 bytes) |
Raises:
| Type | Description |
|---|---|
EncodingError
|
If encoding fails |
Source code in src/telegram_menu_builder/encoding.py
encode_inline ¶
Encode a MenuAction using only the inline (storage-free) path.
This is the synchronous counterpart to :meth:encode. It builds the same
{"h": handler, "p": params} dict and runs only the inline strategy
(JSON -> zlib -> base64). Unlike :meth:encode, it never spills to storage
and performs no await: if the resulting callback_data would not fit
inline (i.e. it would otherwise require a storage spill), an
:class:EncodingError is raised instead.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
action
|
MenuAction
|
MenuAction to encode. |
required |
Returns:
| Type | Description |
|---|---|
str
|
Encoded callback_data string ( |
Raises:
| Type | Description |
|---|---|
EncodingError
|
If the action does not fit within the 64-byte inline budget and would therefore require storage. |
Source code in src/telegram_menu_builder/encoding.py
decode
async
¶
Decode callback_data string back to MenuAction.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
callback_data
|
str
|
Encoded callback_data string |
required |
Returns:
| Type | Description |
|---|---|
MenuAction
|
Decoded MenuAction |
Raises:
| Type | Description |
|---|---|
DecodingError
|
If decoding fails or data not found |
Source code in src/telegram_menu_builder/encoding.py
cleanup_callback
async
¶
Cleanup storage for a callback_data reference.
This should be called after a callback is processed to free storage. Only affects SHORT strategy (persistent data is kept).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
callback_data
|
str
|
Callback data string |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if cleaned up, False otherwise |
Source code in src/telegram_menu_builder/encoding.py
estimate_encoded_size¶
telegram_menu_builder.encoding.estimate_encoded_size ¶
Estimate the size of encoded callback data.
This is useful for determining storage strategy before encoding.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
action
|
MenuAction
|
MenuAction to estimate |
required |
Returns:
| Type | Description |
|---|---|
int
|
Estimated size in bytes |
Example
action = MenuAction(handler="test", params={"id": 123}) size = estimate_encoded_size(action) print(f"Estimated size: {size} bytes")