-
Notifications
You must be signed in to change notification settings - Fork 0
/
basics.go
220 lines (185 loc) · 5.74 KB
/
basics.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
216
217
218
219
220
package main
import (
"fmt"
"github.com/PaulSonOfLars/gotgbot/v2"
"github.com/PaulSonOfLars/gotgbot/v2/ext"
)
// ------------------- Basic Commands ------------------ //
func start(b *gotgbot.Bot, ctx *ext.Context) error {
_, err := ctx.EffectiveMessage.Reply(b, fmt.Sprintf(startMessage, ctx.EffectiveMessage.From.FirstName, b.User.FirstName), &gotgbot.SendMessageOpts{
ParseMode: "html",
ReplyMarkup: gotgbot.InlineKeyboardMarkup{
InlineKeyboard: mainButtons,
},
DisableWebPagePreview: true,
})
if err != nil {
return fmt.Errorf("failed to send start message: %w", err)
}
return nil
}
func help(b *gotgbot.Bot, ctx *ext.Context) error {
_, err := ctx.EffectiveMessage.Reply(b, helpMessage, &gotgbot.SendMessageOpts{
ParseMode: "html",
ReplyMarkup: gotgbot.InlineKeyboardMarkup{
InlineKeyboard: homeButtons,
},
})
if err != nil {
return fmt.Errorf("failed to send help message: %w", err)
}
return nil
}
func about(b *gotgbot.Bot, ctx *ext.Context) error {
_, err := ctx.EffectiveMessage.Reply(b, aboutMessage, &gotgbot.SendMessageOpts{
ParseMode: "html",
ReplyMarkup: gotgbot.InlineKeyboardMarkup{
InlineKeyboard: homeButtons,
},
DisableWebPagePreview: true,
})
if err != nil {
return fmt.Errorf("failed to send about message: %w", err)
}
return nil
}
func guide(b *gotgbot.Bot, ctx *ext.Context) error {
_, err := ctx.EffectiveMessage.Reply(b, guideLink, &gotgbot.SendMessageOpts{
ParseMode: "html",
})
if err != nil {
return fmt.Errorf("failed to send about message: %w", err)
}
return nil
}
func html(b *gotgbot.Bot, ctx *ext.Context) error {
_, err := ctx.EffectiveMessage.Reply(b, fmt.Sprintf(htmlTutMessage, htmlTut), &gotgbot.SendMessageOpts{
ParseMode: "html",
DisableWebPagePreview: true,
})
if err != nil {
return fmt.Errorf("failed to send about message: %w", err)
}
return nil
}
// ---------------------------------------------- //
var guideLink = "https://telegra.ph/Telegraph-Bot-Usage-Guide-Stark-Bots-02-26"
var htmlTut = "https://geekyweb.tk/docs/html"
var startMessage = `
Hey %v
Welcome to %s
I can do anything related to Telegraph like create accounts, create pages, upload media and so on. Please see a full list in help message
`
var helpMessage = fmt.Sprintf(`
Please read <a href="%v">this guide</a> first.
Still here? It's not optional. Go read it.
<b>Available Commands</b>
/guide - Usage Guide
/html - Available HTML Tags and Attributes
/create - Create a new account
/new - Alias for 'create'
/accounts - List all accounts
/editshortname - Edit account's short name
/editauthorname - Edit account's author name
/editauthorurl - Edit account's author url
/get - Get an account
/add - Add an existing account
/remove - Remove an account
/editpage - Edit a Page
/page - Create a new page
/newpage - Alias for 'page'
/pages - List pages for a particular account
/views - Get views of a particular page
/start - Check if bot is running
/help - Help Message
/about - About this bot
`, guideLink)
var aboutMessage = fmt.Sprintf(`
A telegraph bot by @StarkBots
<b>Language</b> - <a href="https://go.dev">Golang</a>
<b>Telegraph Library</b> - https://github.com/StarkBotsIndustries/telegraph
<b>Source Code</b> - <a href="https://github.com/StarkBotsIndustries/Telegraph-Go-Bot">GitHub Repository</a>
<b>Usage Guide</b> - %v
<b>Telegram Library</b> - <a href="https://github.com/PaulSonOfLars/gotgbot">gotgbot</a>
Developed with ❤️ by @StarkProgrammer
`, guideLink)
var htmlTutMessage = `
<b>HTML Content</b>
You can use HTML to create your Telegraph Pages.
If you don't know HTML at all, please checkout this <a href="%v">HTML Tutorial</a> for a basic understanding.
<b>Available Tags</b>: a, aside, b, blockquote, br, code, em, figcaption, figure, h3, h4, hr, i, iframe, img, li, ol, p, pre, s, strong, u, ul, video
<b>Available Attributes</b>: href, src
<b>Providing HTML</b>
I will ask you for some HTML Content when you want to create or edit a page. You can provide it in two ways.
1. Reply to a text message with HTML
2. Reply to an HTML document
`
var homeButtons = [][]gotgbot.InlineKeyboardButton{{
{Text: "🏠 Return Home 🏠", CallbackData: "home"},
}}
var mainButtons = [][]gotgbot.InlineKeyboardButton{
{
{Text: "✨ Bot Status and More Bots ✨", Url: "https://t.me/StarkBots/7"},
},
{
{Text: "How to Use ❔", CallbackData: "help"},
{Text: "🎪 About 🎪", CallbackData: "about"},
},
{
{Text: "♥ More Amazing bots ♥", Url: "https://t.me/StarkBots"},
},
}
// ------------------------- Callbacks ------------------------ //
func homeCB(b *gotgbot.Bot, ctx *ext.Context) error {
cb := ctx.Update.CallbackQuery
_, _, err := cb.Message.EditText(
b,
fmt.Sprintf(startMessage, cb.From.FirstName, b.User.FirstName),
&gotgbot.EditMessageTextOpts{
ParseMode: "html",
ReplyMarkup: gotgbot.InlineKeyboardMarkup{
InlineKeyboard: mainButtons,
},
DisableWebPagePreview: true,
},
)
if err != nil {
return fmt.Errorf("failed to edit homecb text: %w", err)
}
return nil
}
func helpCB(b *gotgbot.Bot, ctx *ext.Context) error {
cb := ctx.Update.CallbackQuery
_, _, err := cb.Message.EditText(
b,
helpMessage,
&gotgbot.EditMessageTextOpts{
ParseMode: "html",
ReplyMarkup: gotgbot.InlineKeyboardMarkup{
InlineKeyboard: homeButtons,
},
},
)
if err != nil {
return fmt.Errorf("failed to edit helpcb text: %w", err)
}
return nil
}
func aboutCB(b *gotgbot.Bot, ctx *ext.Context) error {
cb := ctx.Update.CallbackQuery
_, _, err := cb.Message.EditText(
b,
aboutMessage,
&gotgbot.EditMessageTextOpts{
ParseMode: "html",
ReplyMarkup: gotgbot.InlineKeyboardMarkup{
InlineKeyboard: homeButtons,
},
DisableWebPagePreview: true,
},
)
if err != nil {
return fmt.Errorf("failed to edit aboutcb text: %w", err)
}
return nil
}