-
Notifications
You must be signed in to change notification settings - Fork 3
/
stickers.go
215 lines (168 loc) · 4.89 KB
/
stickers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
package telegram
import "context"
// Sticker struct
type Sticker struct {
FileID string `json:"file_id"`
FileUniqueID string `json:"file_unique_id"`
Width int `json:"width"`
Height int `json:"height"`
IsAnimated bool `json:"is_animated"`
IsVideo bool `json:"is_video"`
Thumb *PhotoSize `json:"thumb,omitempty"`
Emoji *string `json:"emoji,omitempty"`
SetName *string `json:"set_name,omitempty"`
MaskPosition *MaskPosition `json:"mask_position,omitempty"`
FileSize *int `json:"file_size,omitempty"`
}
// StickerSet struct
type StickerSet struct {
Name string `json:"name"`
Title string `json:"title"`
IsAnimated bool `json:"is_animated"`
IsVideo bool `json:"is_video"`
ContainsMasks bool `json:"contains_masks"`
Stickers []Sticker `json:"stickers"`
Thumb *PhotoSize `json:"thumb,omitempty"`
}
// MaskPosition struct
type MaskPosition struct {
Point string `json:"point"`
XShift float32 `json:"x_shift"`
YShift float32 `json:"y_shift"`
Scale float32 `json:"scale"`
}
// SendStickerResponse interface
type SendStickerResponse interface {
Response
GetMessage() *Message
}
type sendStickerResponse struct {
response
Result *Message `json:"result,omitempty"`
}
func (r *sendStickerResponse) GetMessage() *Message {
return r.Result
}
func (b *bot) SendSticker(ctx context.Context, options ...MethodOption) (SendStickerResponse, error) {
var res sendStickerResponse
err := b.doRequest(ctx, "sendSticker", &res, options...)
if err != nil {
return nil, err
}
return &res, nil
}
// GetStickerSetResponse interface
type GetStickerSetResponse interface {
Response
GetStickerSet() *StickerSet
}
type getStickerSetResponse struct {
response
Result *StickerSet `json:"result,omitempty"`
}
func (r *getStickerSetResponse) GetStickerSet() *StickerSet {
return r.Result
}
func (b *bot) GetStickerSet(ctx context.Context, options ...MethodOption) (GetStickerSetResponse, error) {
var res getStickerSetResponse
err := b.doRequest(ctx, "getStickerSet", &res, options...)
if err != nil {
return nil, err
}
return &res, nil
}
// UploadStickerFileResponse interface
type UploadStickerFileResponse interface {
Response
GetUploadedFile() *File
}
type uploadStickerFileResponse struct {
response
Result *File `json:"result,omitempty"`
}
func (r *uploadStickerFileResponse) GetUploadedFile() *File {
return r.Result
}
func (b *bot) UploadStickerFile(ctx context.Context, options ...MethodOption) (UploadStickerFileResponse, error) {
var res uploadStickerFileResponse
err := b.doRequest(ctx, "uploadStickerFile", &res, options...)
if err != nil {
return nil, err
}
return &res, nil
}
// CreateNewStickerSetResponse interface
type CreateNewStickerSetResponse interface {
Response
}
type createNewStickerSetResponse struct {
response
}
func (b *bot) CreateNewStickerSet(ctx context.Context, options ...MethodOption) (CreateNewStickerSetResponse, error) {
var res createNewStickerSetResponse
err := b.doRequest(ctx, "createNewStickerSet", &res, options...)
if err != nil {
return nil, err
}
return &res, nil
}
// AddStickerToSetResponse interface
type AddStickerToSetResponse interface {
Response
}
type addStickerToSetResponse struct {
response
}
func (b *bot) AddStickerToSet(ctx context.Context, options ...MethodOption) (AddStickerToSetResponse, error) {
var res addStickerToSetResponse
err := b.doRequest(ctx, "addStickerToSet", &res, options...)
if err != nil {
return nil, err
}
return &res, nil
}
// SetStickerPositionInSetResponse interface
type SetStickerPositionInSetResponse interface {
Response
}
type setStickerPositionInSetResponse struct {
response
}
func (b *bot) SetStickerPositionInSet(ctx context.Context, options ...MethodOption) (SetStickerPositionInSetResponse, error) {
var res setStickerPositionInSetResponse
err := b.doRequest(ctx, "setStickerPositionInSet", &res, options...)
if err != nil {
return nil, err
}
return &res, nil
}
// DeleteStickerFromSetResponse interface
type DeleteStickerFromSetResponse interface {
Response
}
type deleteStickerFromSetResponse struct {
response
}
func (b *bot) DeleteStickerFromSet(ctx context.Context, options ...MethodOption) (DeleteStickerFromSetResponse, error) {
var res deleteStickerFromSetResponse
err := b.doRequest(ctx, "deleteStickerFromSet", &res, options...)
if err != nil {
return nil, err
}
return &res, nil
}
// SetStickerSetThumbResponse interface
type SetStickerSetThumbResponse interface {
Response
}
type setStickerSetThumbResponse struct {
response
}
func (b *bot) SetStickerSetThumb(ctx context.Context, options ...MethodOption) (SetStickerSetThumbResponse, error) {
var res setStickerSetThumbResponse
err := b.doRequest(ctx, "setStickerSetThumb", &res, options...)
if err != nil {
return nil, err
}
return &res, nil
}