-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuttons.go
441 lines (381 loc) · 15.7 KB
/
buttons.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
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
package main
import (
"fmt"
"github.com/DarkFighterLuke/covidgraphs"
"github.com/NicoNex/echotron"
"log"
"strings"
)
// Creates buttons sets
func (b *bot) makeButtons(buttonsText []string, callbacksData []string, layoutCols int) ([]byte, error) {
if len(buttonsText) != len(callbacksData) || layoutCols <= 0 {
return nil, fmt.Errorf("different text and data length")
}
keys := make([]echotron.InlineKbdRow, 0)
for i := 0; i < len(buttonsText); {
buttons := make([]echotron.InlineButton, 0)
for j := 0; j < layoutCols; j++ {
if j > len(buttonsText)-i {
break
} else {
buttons = append(buttons, b.InlineKbdBtn(buttonsText[i], "", callbacksData[i]))
}
i++
}
keys = append(keys, buttons)
}
inlineKMarkup := b.InlineKbdMarkup(keys...)
return inlineKMarkup, nil
}
// Creates the main menu buttons set
func (b *bot) mainMenuButtons() ([]byte, error) {
//buttonsNames := []string{"Storico 🕑", "Regioni", "Vai a regione ➡️", "Vai a provincia ➡️", "Crea confronto su dati nazione 📈", "Classifica regioni 🏅", "Classifica province 🏅"}
buttonsNames := []string{"Nuovi casi 🆕", "Regioni", "Crea confronto su dati nazione 📈", "Classifica regioni 🏅", "Classifica province 🏅", "Reports 📃"}
//callbackData := []string{"storico nazione", "zonesButtons", "vai a regione", "vai a provincia", "crea confronto su dati nazione", "classifica regioni", "classifica province"}
callbackData := []string{"nuovi casi nazione", "zonesButtons", "confronto dati nazione", "classifica regioni", "classifica province", "reports"}
buttons, err := b.makeButtons(buttonsNames, callbackData, 1)
if err != nil {
log.Println(err)
return nil, err
}
b.choicesConfrontoNazione = make([]string, 0)
b.choicesConfrontoRegione = make([]string, 0)
return buttons, nil
}
// Creates zones buttons set
func (b *bot) zonesButtons() ([]byte, error) {
zones := []string{"Nord", "Centro", "Sud"}
zonesCallback := make([]string, 0)
for _, v := range zones {
zonesCallback = append(zonesCallback, strings.ToLower(v))
}
zones = append(zones, "Annulla ❌")
zonesCallback = append(zonesCallback, "annulla")
buttons, err := b.makeButtons(zones, zonesCallback, 1)
if err != nil {
log.Println(err)
return nil, err
}
return buttons, nil
}
// Creates provinces buttons set
func (b *bot) provinceButtons() ([]byte, error) {
buttonsNames := []string{"Nuovi casi 🆕", "Province della regione", "Confronto dati regione 📈", "Torna alla home"}
callbackNames := []string{"nuovi casi regione", "province", "confronto dati regione", "home"}
buttons, err := b.makeButtons(buttonsNames, callbackNames, 1)
if err != nil {
log.Println(err)
return nil, err
}
b.choicesConfrontoRegione = make([]string, 0)
return buttons, nil
}
// Creates northern regions buttons set
func (b *bot) nordRegionsButtons() ([]byte, error) {
regions := covidgraphs.GetNordRegionsNamesList()
regionsCallback := make([]string, 0)
for _, v := range regions {
regionsCallback = append(regionsCallback, strings.ToLower(v))
}
regions = append(regions, "Annulla ❌")
regionsCallback = append(regionsCallback, "annulla")
buttons, err := b.makeButtons(regions, regionsCallback, 2)
if err != nil {
log.Println(err)
return nil, err
}
return buttons, nil
}
// Creates central regions buttons set
func (b *bot) centroRegionsButtons() ([]byte, error) {
regions := covidgraphs.GetCentroRegionsNamesList()
regionsCallback := make([]string, 0)
for _, v := range regions {
regionsCallback = append(regionsCallback, strings.ToLower(v))
}
regions = append(regions, "Annulla ❌")
regionsCallback = append(regionsCallback, "annulla")
buttons, err := b.makeButtons(regions, regionsCallback, 2)
if err != nil {
log.Println(err)
return nil, err
}
return buttons, nil
}
// Creates southern regions buttons set
func (b *bot) sudRegionsButtons() ([]byte, error) {
regions := covidgraphs.GetSudRegionsNamesList()
regionsCallback := make([]string, 0)
for _, v := range regions {
regionsCallback = append(regionsCallback, strings.ToLower(v))
}
regions = append(regions, "Annulla ❌")
regionsCallback = append(regionsCallback, "annulla")
buttons, err := b.makeButtons(regions, regionsCallback, 2)
if err != nil {
log.Println(err)
return nil, err
}
return buttons, nil
}
func (b *bot) buttonsConfrontoNazione() ([]byte, error) {
buttonsNames := []string{"Ricoverati con sintomi", "Terapia intensiva", "Totale ospedalizzati", "Isolamento domiciliare", "Attualmente positivi", "Nuovi positivi", "Dimessi guariti", "Deceduti", "Totale casi", "Tamponi"}
buttonsCallback := make([]string, 0)
for _, v := range buttonsNames {
buttonsCallback = append(buttonsCallback, strings.ToLower(v)+" nazione")
}
buttonsNames = append(buttonsNames, "Annulla ❌")
buttonsCallback = append(buttonsCallback, "annulla")
buttons, err := b.makeButtons(buttonsNames, buttonsCallback, 2)
if err != nil {
return nil, err
}
return buttons, nil
}
func (b *bot) buttonsConfrontoRegione() ([]byte, error) {
buttonsNames := []string{"Ricoverati con sintomi", "Terapia intensiva", "Totale ospedalizzati", "Isolamento domiciliare", "Attualmente positivi", "Nuovi positivi", "Dimessi guariti", "Deceduti", "Totale casi", "Tamponi"}
buttonsCallback := make([]string, 0)
for _, v := range buttonsNames {
buttonsCallback = append(buttonsCallback, strings.ToLower(v)+" regione")
}
buttonsNames = append(buttonsNames, "Annulla ❌")
buttonsCallback = append(buttonsCallback, "annulla")
buttons, err := b.makeButtons(buttonsNames, buttonsCallback, 2)
if err != nil {
return nil, err
}
return buttons, nil
}
func (b *bot) buttonsCaseConfrontoNazione() ([]byte, error) {
buttonsNames := []string{"Ricoverati con sintomi", "Terapia intensiva", "Totale ospedalizzati", "Isolamento domiciliare", "Attualmente positivi", "Nuovi positivi", "Dimessi guariti", "Deceduti", "Totale casi", "Tamponi"}
buttonsCallback := make([]string, 0)
for _, v := range buttonsNames {
buttonsCallback = append(buttonsCallback, strings.ToLower(v)+" nazione")
}
newButtonsNames := make([]string, 0)
newButtonsCallback := make([]string, 0)
for _, v := range buttonsNames {
if !b.isStringFoundInNationChoices(strings.ToLower(v)) {
newButtonsNames = append(newButtonsNames, v)
}
}
for _, v := range buttonsCallback {
strStripped := strings.Replace(v, " nazione", "", -1)
fmt.Println(strStripped)
if !b.isStringFoundInNationChoices(strStripped) {
newButtonsCallback = append(newButtonsCallback, strings.ToLower(v))
}
}
newButtonsNames = append(newButtonsNames, "Annulla ❌")
newButtonsCallback = append(newButtonsCallback, "annulla")
newButtonsNames = append(newButtonsNames, "Fatto ✅")
newButtonsCallback = append(newButtonsCallback, "fatto nazione")
fmt.Println(b.choicesConfrontoNazione)
fmt.Println(newButtonsNames)
fmt.Println(newButtonsCallback)
buttons, err := b.makeButtons(newButtonsNames, newButtonsCallback, 2)
if err != nil {
return nil, err
}
return buttons, nil
}
func (b *bot) buttonsCaseConfrontoRegione() ([]byte, error) {
buttonsNames := []string{"Ricoverati con sintomi", "Terapia intensiva", "Totale ospedalizzati", "Isolamento domiciliare", "Attualmente positivi", "Nuovi positivi", "Dimessi guariti", "Deceduti", "Totale casi", "Tamponi"}
buttonsCallback := make([]string, 0)
for _, v := range buttonsNames {
buttonsCallback = append(buttonsCallback, strings.ToLower(v)+" regione")
}
newButtonsNames := make([]string, 0)
newButtonsCallback := make([]string, 0)
for _, v := range buttonsNames {
if !b.isStringFoundInRegionChoices(strings.ToLower(v)) {
newButtonsNames = append(newButtonsNames, v)
}
}
for _, v := range buttonsCallback {
strStripped := strings.Replace(v, " regione", "", -1)
if !b.isStringFoundInRegionChoices(strStripped) {
newButtonsCallback = append(newButtonsCallback, strings.ToLower(v))
}
}
newButtonsNames = append(newButtonsNames, "Annulla ❌")
newButtonsCallback = append(newButtonsCallback, "annulla")
newButtonsNames = append(newButtonsNames, "Fatto ✅")
newButtonsCallback = append(newButtonsCallback, "fatto regione")
buttons, err := b.makeButtons(newButtonsNames, newButtonsCallback, 2)
if err != nil {
return nil, err
}
return buttons, nil
}
func (b *bot) buttonsConfrontoNazioneGroups(attributeIndex int) ([]byte, error) {
attributeNames := []string{"Ricoverati con sintomi", "Terapia intensiva", "Totale ospedalizzati", "Isolamento domiciliare", "Attualmente positivi", "Nuovi positivi", "Dimessi guariti", "Deceduti", "Totale casi", "Tamponi"}
extendedAttributeNames := []string{"Andamento"}
extendedAttributeNames = append(extendedAttributeNames, attributeNames...)
extendedAttributeCallbacks := make([]string, 0)
for _, v := range extendedAttributeNames {
extendedAttributeCallbacks = append(extendedAttributeCallbacks, strings.ToLower(v)+" nazione groups")
}
if attributeIndex >= len(extendedAttributeNames) || attributeIndex < 0 {
return nil, fmt.Errorf("attributeIndex out of range")
}
if len(b.choicesConfrontoNazione) == len(attributeNames) {
buttonNames := []string{"❌", "✅"}
buttonCallbacks := []string{"annulla nazione groups", "fatto nazione groups"}
buttons, err := b.makeButtons(buttonNames, buttonCallbacks, 2)
if err != nil {
return nil, err
}
return buttons, nil
}
if b.isStringFoundInNationChoices(extendedAttributeNames[attributeIndex]) {
return nil, fmt.Errorf("already chose")
}
buttonNames := []string{"«", extendedAttributeNames[attributeIndex], "»", "❌", "✅"}
buttonCallbacks := []string{"previous nazione groups", extendedAttributeCallbacks[attributeIndex], "next nazione groups", "annulla nazione groups", "fatto nazione groups"}
buttons, err := b.makeButtons(buttonNames, buttonCallbacks, 3)
if err != nil {
return nil, err
}
return buttons, nil
}
func (b *bot) buttonsZonesGroups(zoneIndex int) ([]byte, error) {
zoneNames := []string{"Sud", "Centro", "Nord"}
zoneCallbacks := []string{"sud groups", "centro groups", "nord groups"}
if zoneIndex >= len(zoneNames) || zoneIndex < 0 {
return nil, fmt.Errorf("attributeIndex out of range")
}
buttonNames := []string{"«", zoneNames[zoneIndex], "»", "❌"}
buttonCallbacks := []string{"previous zone groups", zoneCallbacks[zoneIndex], "next zone groups", "annulla zone groups"}
buttons, err := b.makeButtons(buttonNames, buttonCallbacks, 3)
if err != nil {
return nil, err
}
return buttons, nil
}
func (b *bot) buttonsRegionsGroups(zoneIndex, regionIndex int) ([]byte, error, string, int) {
if zoneIndex < 0 || zoneIndex > 2 {
return nil, fmt.Errorf("zoneIndex out of range"), "", -1
}
var regionNames []string
if zoneIndex == 0 {
regionNames = covidgraphs.GetSudRegionsNamesList()
} else if zoneIndex == 1 {
regionNames = covidgraphs.GetCentroRegionsNamesList()
} else if zoneIndex == 2 {
regionNames = covidgraphs.GetNordRegionsNamesList()
}
regionCallbacks := make([]string, 0)
for _, v := range regionNames {
regionCallbacks = append(regionCallbacks, strings.ToLower(v)+" groups")
}
if regionIndex >= len(regionNames) {
regionIndex = 0
} else if regionIndex < 0 {
regionIndex = len(regionNames) - 1
}
buttonNames := []string{"«", regionNames[regionIndex], "»", "❌"}
buttonCallbacks := []string{"previous region groups", regionCallbacks[regionIndex], "next region groups", "annulla region groups"}
buttons, err := b.makeButtons(buttonNames, buttonCallbacks, 3)
if err != nil {
return nil, err, "", -1
}
return buttons, nil, strings.ToLower(regionNames[regionIndex]), regionIndex
}
func (b *bot) buttonsConfrontoRegioneGroups(attributeIndex int) ([]byte, error) {
attributeNames := []string{"Ricoverati con sintomi", "Terapia intensiva", "Totale ospedalizzati", "Isolamento domiciliare", "Attualmente positivi", "Nuovi positivi", "Dimessi guariti", "Deceduti", "Totale casi", "Tamponi"}
extendedAttributeNames := []string{"Andamento"}
extendedAttributeNames = append(extendedAttributeNames, attributeNames...)
extendedAttributeCallback := make([]string, 0)
for _, v := range extendedAttributeNames {
extendedAttributeCallback = append(extendedAttributeCallback, strings.ToLower(v)+" region attr groups")
}
if attributeIndex >= len(extendedAttributeNames) || attributeIndex < 0 {
return nil, fmt.Errorf("attributeIndex out of range")
}
if len(b.choicesConfrontoRegione) == len(attributeNames) {
buttonNames := []string{"❌", "✅"}
buttonCallbacks := []string{"annulla region groups", "fatto region groups"}
buttons, err := b.makeButtons(buttonNames, buttonCallbacks, 2)
if err != nil {
return nil, err
}
return buttons, nil
}
if b.isStringFoundInRegionChoices(extendedAttributeNames[attributeIndex]) {
return nil, fmt.Errorf("already chose")
}
buttonNames := []string{"«", extendedAttributeNames[attributeIndex], "»", "❌", "✅"}
buttonCallbacks := []string{"previous region attr groups", extendedAttributeCallback[attributeIndex], "next region attr groups", "annulla region attr groups", "fatto region attr groups"}
buttons, err := b.makeButtons(buttonNames, buttonCallbacks, 3)
if err != nil {
return nil, err
}
return buttons, nil
}
func (b *bot) buttonsZonesGroupsP(zoneIndex int) ([]byte, error) {
zoneNames := []string{"Sud", "Centro", "Nord"}
zoneCallbacks := []string{"sud p groups", "centro p groups", "nord p groups"}
if zoneIndex >= len(zoneNames) || zoneIndex < 0 {
return nil, fmt.Errorf("attributeIndex out of range")
}
buttonNames := []string{"«", zoneNames[zoneIndex], "»", "❌"}
buttonCallbacks := []string{"previous zone p groups", zoneCallbacks[zoneIndex], "next zone p groups", "annulla zone p groups"}
buttons, err := b.makeButtons(buttonNames, buttonCallbacks, 3)
if err != nil {
return nil, err
}
return buttons, nil
}
func (b *bot) buttonsRegionsGroupsP(zoneIndex, regionIndex int) ([]byte, error, string, int) {
if zoneIndex < 0 || zoneIndex > 2 {
return nil, fmt.Errorf("zoneIndex out of range"), "", -1
}
var regionNames []string
if zoneIndex == 0 {
regionNames = covidgraphs.GetSudRegionsNamesList()
} else if zoneIndex == 1 {
regionNames = covidgraphs.GetCentroRegionsNamesList()
} else if zoneIndex == 2 {
regionNames = covidgraphs.GetNordRegionsNamesList()
}
regionCallbacks := make([]string, 0)
for _, v := range regionNames {
regionCallbacks = append(regionCallbacks, strings.ToLower(v)+" p groups")
}
if regionIndex >= len(regionNames) {
regionIndex = 0
} else if regionIndex < 0 {
regionIndex = len(regionNames) - 1
}
buttonNames := []string{"«", regionNames[regionIndex], "»", "❌"}
buttonCallbacks := []string{"previous region p groups", regionCallbacks[regionIndex], "next region p groups", "annulla region p groups"}
buttons, err := b.makeButtons(buttonNames, buttonCallbacks, 3)
if err != nil {
return nil, err, "", -1
}
return buttons, nil, strings.ToLower(regionNames[regionIndex]), regionIndex
}
func (b *bot) buttonsProvincesGroup(provinceIndex int, regionName string) ([]byte, error, string, int) {
provinces := covidgraphs.GetLastProvincesByRegionName(&provincesData, strings.ToLower(regionName))
provinceNames := make([]string, 0)
for _, v := range *provinces {
provinceNames = append(provinceNames, v.Denominazione_provincia)
}
provinceCallbacks := make([]string, 0)
for _, v := range *provinces {
provinceCallbacks = append(provinceCallbacks, strings.ToLower(v.Denominazione_provincia)+" province")
}
if provinceIndex >= len(provinceNames) {
provinceIndex = 0
} else if provinceIndex < 0 {
provinceIndex = len(provinceNames) - 1
}
buttonNames := []string{"«", provinceNames[provinceIndex], "»", "❌"}
buttonCallbacks := []string{"previous province groups", provinceCallbacks[provinceIndex], "next province groups", "annulla province groups"}
buttons, err := b.makeButtons(buttonNames, buttonCallbacks, 3)
if err != nil {
return nil, err, "", -1
}
return buttons, nil, strings.ToLower(provinceNames[provinceIndex]), provinceIndex
}