-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
691 lines (588 loc) · 19.4 KB
/
main.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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
package main
import (
"context"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"strconv"
"strings"
"time"
"github.com/bzhn/strkit"
"github.com/gomodule/redigo/redis"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
"github.com/joho/godotenv"
)
type LastAction string
var logger *zap.Logger
const (
laSetSeparator LastAction = "setseparator"
laSetNubmer LastAction = "setnumberofwords"
laSetEncPass LastAction = "setencryptionpass"
defsep = "-" // Default separator
deflen = 3 // Default length of passphrase
)
var (
words []string
wordsLen int
bot *tgbotapi.BotAPI
)
var (
ErrCantParseCtx = errors.New("Can't parse context value")
ErrCantConnRedis = errors.New("Can't connect to redis")
ErrSeparatorTooLong = errors.New("Separator is too long")
ErrNumberOfWordsTooBig = errors.New("Number of words is too big")
ErrNumberOfWordsLessThanZero = errors.New("Number of words is less than zero")
ErrEncPassTooLong = errors.New("Password for encryption is too long")
)
func init() {
// Initialise logger
logger = NewLogger()
var err error
// Use telegram bot
godotenv.Load()
bot, err = tgbotapi.NewBotAPI(os.Getenv("PASSPHRASEBOT_TOKEN"))
errPanic(err)
logger.Info("Connected to Telegram Bot API", zap.String("username", bot.Self.UserName))
log.SetFlags(log.LstdFlags | log.Lshortfile)
}
func ToJson(data interface{}) string {
jsonData, err := json.MarshalIndent(data, "", " ")
if err != nil {
logger.Error("Can't convert data to json", zap.String("type", fmt.Sprintf("%T", data)))
return ""
}
return string(jsonData)
}
func main() {
pool := NewRedisPool("redis:6379")
conn := NewConn(pool)
defer conn.Close()
mainCtx := context.WithValue(context.Background(), "redis-conn", conn)
logger.Info("Created a new redis connection")
u := tgbotapi.NewUpdate(0)
u.Timeout = 60
updates := bot.GetUpdatesChan(u)
// check for new messages in a loop
for upd := range updates {
if upd.CallbackQuery != nil {
updCtx := context.WithValue(mainCtx, "person", upd.CallbackQuery.From.ID)
handleInlineButtonClick(updCtx, upd.CallbackQuery)
continue
}
if upd.FromChat() == nil || upd.FromChat().Type != "private" {
log.Printf("The message is not private:\n%s", ToJson(upd.FromChat()))
continue
}
if upd.Message.Text == "" {
log.Printf("Got non-text message from chat")
continue
}
// msg is a message to be sent
var msg tgbotapi.MessageConfig
m := upd.Message
msg.ChatID = m.Chat.ID
if m.Text == "" {
msg = handleUnknowMessage(m)
botSend(msg)
continue
}
if m.Text == "Generate" || m.Text == "gen" || m.Text == "generate" {
deleteMessage(m.Chat.ID, m.MessageID)
generatePassphrase(mainCtx, m.Chat.ID)
continue
}
if m.IsCommand() {
updCtx := context.WithValue(mainCtx, "person", m.Chat.ID)
msg = handleCommand(updCtx, m)
botSend(msg)
continue
}
if m.Text != "" {
updCtx := context.WithValue(mainCtx, "person", m.Chat.ID)
updCtx = context.WithValue(updCtx, "msg", m.Text)
err := handleLastActionText(updCtx)
if err != nil {
log.Println("Can't handle last action", err)
}
}
}
}
// getWordList gets list of words from the providen url
// and returns the slice of string with words
// Error will be returned if the link is invalid, or if
// it's impossible to parse list in the url
func getWordList(url string) (words []string, err error) {
c := http.Client{
Timeout: 3 * time.Second,
}
req, err := http.NewRequest(http.MethodGet, url, nil)
if err != nil {
return
}
res, err := c.Do(req)
if err != nil {
return
}
if res.Body != nil {
defer res.Body.Close()
}
body, err := ioutil.ReadAll(res.Body)
json.Unmarshal(body, &words)
if err != nil {
return
}
return
}
// errPanic receive error and if it's not nil, make panic
// It's a shortener of error handling
func errPanic(err error) {
if err != nil {
logger.Panic("", zap.Error(err))
}
}
// botSend receive MessageConfig and tries to send it
// If there is an error
func botSend(msg tgbotapi.MessageConfig) {
_, err := bot.Send(msg)
if err != nil {
logger.Error("Can't send message to user", zap.Error(err), zap.Int64("personid", msg.ChatID))
}
}
// handleCommand handles commands from users
// and returns a message that has to be sent
func handleCommand(ctx context.Context, m *tgbotapi.Message) (msg tgbotapi.MessageConfig) {
logger.Info("Got command from user", zap.String("command", m.Command()))
msg.ChatID = m.Chat.ID
switch m.Command() {
case "start":
msg.ReplyMarkup = genButton()
msg.Text = "Hello. Use this bot to generate strong mnemonic passwords which, however, easy to memorise!\nClick Generate button at the bottom of the chat or type \"gen\""
return
case "help":
msg.ReplyMarkup = genButton()
msg.Text = ` This bot allows you to create mnemonic passwords by single click
You can setup number of words in generated passphrases with /number
In order to change default separator between words, type /sep
You can even change the list of words that will be used for generation. Type /list to try!`
msg.ParseMode = tgbotapi.ModeHTML
return
case "number": // set number of words in generated passphrases
setLastAction(ctx, laSetNubmer)
msg.Text = "Choose number of words in the passphrases that will be generated. The value have to contain only numbers and nothing more."
msg.ReplyMarkup = IKBCancelAction
case "sep": // set separator in generated passphrases
setLastAction(ctx, laSetSeparator)
msg.Text = "Type separator of the passphrases that will be generated. It can be <code>-</code> or <code>_</code> or even newline, for instance. Separator has to be less than 10 bytes long.\nTo set space as a separator, type <code>\\</code> (just backslash). For newline, type <code>\\n</code>. Note that first backslash will be removed from any of your messages (if you use it), so for one backslash as a separator you have to specify two backslashes."
msg.ParseMode = tgbotapi.ModeHTML
msg.ReplyMarkup = IKBCancelAction
case "list":
msg.ReplyMarkup = IKBWordlistChooser
msg.Text = `<b>Select desired wordlist</b>
Here are some examples of generated passphrases:
BIP39
<code>spider music exhibit</code>
<b>Wordle</b>
(only 5-chars words, 12000ish words in the list)
<code>spews livid airns</code>
<b>Dice Long</b>
(6^5 = 7776 words)
<code>freebee attendant empirical</code>
<b>Dice Short 1</b>
Featuring only short words (6^4 = 1296 words)
<code>stack lip visa</code>
<b>Dice Short 2</b>
Featuring longer words that may be more memorable (6^4 = 1296 words)
<code>liquid mapmaker shyness</code>
`
msg.ParseMode = tgbotapi.ModeHTML
case "addlist":
msg.ReplyMarkup = genButton()
msg.Text = "In development. Later it will be possible to add custom lists."
case "vault":
msg.ReplyMarkup = genButton()
msg.Text = "In development. Later you'll have access to your vault, where passwords are stored"
case "encryption":
msg.ReplyMarkup = genButton()
msg.Text = "In development. Setup your encryption settings. Disable/enable encryption and change password for encryption"
case "search":
msg.ReplyMarkup = genButton()
msg.Text = "In development. Search your stored passphrases"
default:
msg.ReplyMarkup = genButton()
msg.Text = "Unknown command, sorry. Type /help to get help."
logger.Warn("Got unknown command from user", zap.String("command", m.Command()))
return
}
return
}
// handleUnknowMessage handles messages which have no text deletes them
// and returns a message that has to be sent
func handleUnknowMessage(m *tgbotapi.Message) (msg tgbotapi.MessageConfig) {
msg.ChatID = m.Chat.ID
msg.Text = "Sorry, I don't understand. Send me /help to get help."
msg.ReplyMarkup = genButton()
deleteMessage(m.Chat.ID, m.MessageID)
return
}
// handleInlineButtonClick is called when user clicked the button on inline keyboard
func handleInlineButtonClick(ctx context.Context, cq *tgbotapi.CallbackQuery) {
if complexDataParts := strings.Split(cq.Data, "$$"); len(complexDataParts) == 2 {
switch complexDataParts[0] {
case "system":
switch complexDataParts[1] {
case "cancel":
deleteMessage(cq.From.ID, cq.Message.MessageID)
case "cancelaction":
deleteMessage(cq.From.ID, cq.Message.MessageID)
removeLastAction(ctx)
callbackAnswer(cq.ID, "Last action successfully removed!")
}
case "setwl":
if c, ok := ctx.Value("redis-conn").(RedisConn); ok {
wl, err := strconv.Atoi(complexDataParts[1])
if err != nil {
logger.Error("Can't convert to int second part of cq data", zap.Error(err))
return
}
err = c.NewRedisSetRequest().SetPersonList(cq.From.ID, WL(wl))
if err != nil {
logger.Error("Can't set person's list", zap.Error(err))
return
}
callbackAnswer(cq.ID, fmt.Sprintf("%s is your new wordlist", WL(wl).ShortName()))
logger.Info("Changed wordlist of user", zap.Int64("personid", cq.From.ID))
return
} else {
logger.Error("Can't get redis conn from context", zap.Error(ErrCantParseCtx))
}
}
return
}
switch cq.Data {
case "regenerate":
err := regeneratePassword(ctx, cq)
if err != nil {
logger.Error("Can't regenerate a password", zap.Error(err))
}
case "delete":
deleteMessage(cq.Message.Chat.ID, cq.Message.MessageID)
case "save":
savePassword(cq.From.ID, cq.Message.Text)
callbackAnswer(cq.ID, "Your password wasn't saved. This functionality is under maintenance.")
}
}
// deleteMessage takes chatID and messageID and tries to delete it
func deleteMessage(chatID int64, msgID int) error {
dl := tgbotapi.NewDeleteMessage(chatID, msgID)
_, err := bot.Send(dl)
return err
}
// Push a new callback message to the user
func callbackAnswer(cqID string, text string) {
c := tgbotapi.NewCallback(cqID, text)
bot.Request(c)
}
// regeneratePassword context with redis connection and callback query
// and tries to edit it with new generated password
func regeneratePassword(ctx context.Context, cq *tgbotapi.CallbackQuery) error {
chatID := cq.From.ID
msgID := cq.Message.MessageID
// Get list of a user
if rc, ok := ctx.Value("redis-conn").(RedisConn); ok {
rg := rc.NewRedisGetRequest().ID(chatID)
wl := rg.GetPersonList()
n := func() int {
if n, err := rg.GetWordsNumber(); err == nil {
if n > 0 {
return n
} else {
logger.Error("Amount of words is less than 1")
return deflen
}
} else {
logger.Warn("Can't get words number", zap.Error(err))
return deflen
}
}()
sep, err := rg.GetSeparator()
if err != nil {
logger.Warn("Can't get separator", zap.Error(err))
sep = defsep
}
gpc := NewGeneratePasswordConfig().Wordlist(wl).Length(n).Separator(sep)
passphrase, err := gpc.Generate()
if err != nil {
logger.Error("Can't generate password", zap.Error(err), zap.Any("config", gpc))
return err
}
ec := tgbotapi.NewEditMessageText(chatID, msgID, fmt.Sprintf("<code>%s</code>", tgbotapi.EscapeText(tgbotapi.ModeHTML, passphrase)))
ec.ParseMode = tgbotapi.ModeHTML
ec.ReplyMarkup = inlPasswordOptions()
_, err = bot.Request(ec)
if err != nil {
logger.Error("Can't edit message while regenerating a new password", zap.Error(err))
return err
}
callbackAnswer(cq.ID, fmt.Sprintf("You use %s wordlist", wl.ShortName()))
return nil
}
logger.Error("Can't get redis connection from the context")
return ErrCantConnRedis
}
// generatePassphrase takes the slice of words,
// amount of words and a separator. Mnemonic password will be returned
func generatePassphrase(ctx context.Context, chatID int64) error {
if rc, ok := ctx.Value("redis-conn").(RedisConn); ok {
rg := rc.NewRedisGetRequest().ID(chatID)
wl := rg.GetPersonList()
n := func() int {
if n, err := rg.GetWordsNumber(); err == nil {
if n > 0 {
return n
} else {
logger.Error("Amount of words is less than 1", zap.Int64("personid", chatID))
return deflen
}
} else {
logger.Warn("Can't get words number from redis", zap.Error(err))
return deflen
}
}()
sep, err := rg.GetSeparator()
if err != nil {
logger.Warn("Can't get separator", zap.Error(err))
sep = defsep
}
gpc := NewGeneratePasswordConfig().Wordlist(wl).Length(n).Separator(sep)
passphrase, err := gpc.Generate()
if err != nil {
logger.Error("Can't create a new generate password config", zap.Error(err))
return err
}
msg := tgbotapi.NewMessage(chatID, fmt.Sprintf("<code>%s</code>", tgbotapi.EscapeText(tgbotapi.ModeHTML, passphrase)))
msg.ParseMode = tgbotapi.ModeHTML
msg.ReplyMarkup = inlPasswordOptions()
_, err = bot.Send(msg)
if err != nil {
return err
}
return nil
}
logger.Error("Can't parse connection from the context", zap.Error(ErrCantConnRedis))
return errors.New("Can't connect to Redis")
}
// savePassword encrypts and saves user's password in the database
func savePassword(userID int64, password string) {
// TODO
// fmt.Println("Imagine like I'm encrypting and saving password", password, "in the database. UserID =", userID)
}
// savePassword encrypts and saves user's password in the database
func savePasswordNote(userID int64, password string, note string) {
// TODO
// fmt.Println("Imagine like I'm encrypting and saving password", password, "in the database. UserID =", userID)
}
// genButton returns replyMarkup keyboard with one word Generate
func genButton() tgbotapi.ReplyKeyboardMarkup {
return tgbotapi.NewReplyKeyboard(tgbotapi.NewKeyboardButtonRow(tgbotapi.NewKeyboardButton("Generate")))
}
// inlPasswordOptions returns replyMarkup as an inline keyboard with the following options:
// delete password, regenerate password, save password, save password with note
func inlPasswordOptions() *tgbotapi.InlineKeyboardMarkup {
inlineKeyboard := tgbotapi.NewInlineKeyboardMarkup(
tgbotapi.NewInlineKeyboardRow(
tgbotapi.NewInlineKeyboardButtonData("🗑️ Delete", "delete"),
tgbotapi.NewInlineKeyboardButtonData("🔀 Regenerate", "regenerate"),
),
// tgbotapi.NewInlineKeyboardRow(
// tgbotapi.NewInlineKeyboardButtonData("🗑️ Delete passphrase", "delete"),
// ),
// tgbotapi.NewInlineKeyboardRow(
// tgbotapi.NewInlineKeyboardButtonData("🔀 Regenerate passphrase", "regenerate"),
// ),
// tgbotapi.NewInlineKeyboardRow(
// tgbotapi.NewInlineKeyboardButtonData("💾 Save", "save"),
// tgbotapi.NewInlineKeyboardButtonData("🖊️ Save with note", "save_with_name"),
// ),
)
return &inlineKeyboard
}
func NewRedisPool(address string) *redis.Pool {
return &redis.Pool{
MaxIdle: 80,
MaxActive: 12000, // max number of connections
Dial: func() (redis.Conn, error) {
c, err := redis.Dial("tcp", address)
if err != nil {
panic(err.Error())
}
return c, err
},
}
}
// Try to parse integer
// 0 is returned if it's impossible to do so
func ParseInt(s string) int {
n, err := strconv.Atoi(s)
if err != nil {
logger.Error("Got error while parsing int", zap.Error(err))
}
return n
}
func handleLastActionText(ctx context.Context) error {
conn, ok := ctx.Value("redis-conn").(RedisConn)
if !ok {
log.Println(ErrCantParseCtx)
return ErrCantParseCtx
}
la, err := getLastAction(ctx)
if err != nil {
logger.Error("Can't get last action", zap.Error(err))
return err
}
value, ok := ctx.Value("msg").(string)
if !ok {
logger.Info("Can't get message", zap.Error(ErrCantParseCtx))
return ErrCantParseCtx
}
pid, ok := ctx.Value("person").(int64)
if !ok {
log.Println(ErrCantParseCtx)
return ErrCantParseCtx
}
msg := tgbotapi.NewMessage(pid, "Error!")
switch la {
case laSetNubmer:
if n := ParseInt(value); n > 0 {
if n > 200 {
msg.Text = "Number of words have to be less than 200"
msg.ReplyMarkup = IKBCancelAction
bot.Send(msg)
log.Println(ErrNumberOfWordsTooBig)
return ErrNumberOfWordsTooBig
}
err := conn.NewRedisSetRequest().SetNumberOfWords(pid, n)
if err != nil {
msg.Text = "Can't set number of words"
msg.ReplyMarkup = IKBCancelAction
bot.Send(msg)
logger.Error("Can't set number of words", zap.Error(err))
return err
}
msg.Text = "Number of words successfully changed!"
bot.Send(msg)
return removeLastAction(ctx)
} else {
msg.Text = "Number of words have to be positive"
msg.ReplyMarkup = IKBCancelAction
bot.Send(msg)
log.Println(ErrNumberOfWordsLessThanZero)
return ErrNumberOfWordsLessThanZero
}
case laSetSeparator:
if strkit.Fitsb(value, 8) {
switch value {
case `\`:
value = " "
case `\n`:
value = "\n"
default:
if len(value) > 1 && value[0] == '\\' {
value = value[1:]
}
}
err := conn.NewRedisSetRequest().SetSeparator(pid, value)
if err != nil {
msg.Text = "Error on the server side. Sorry."
bot.Send(msg)
logger.Error("Can't set separator", zap.Error(err), zap.Int64("personid", pid), zap.String("separator", value))
return err
}
msg.Text = "Separator successfully changed"
bot.Send(msg)
logger.Info("Changed separator of user", zap.Int64("personid", msg.ChatID), zap.Int("seplength", len(value)))
return removeLastAction(ctx)
} else {
msg.Text = "Separator have to be less than 8 bytes long"
msg.ReplyMarkup = IKBCancelAction
bot.Send(msg)
log.Println(ErrSeparatorTooLong)
return ErrSeparatorTooLong
}
case laSetEncPass:
return removeLastAction(ctx)
}
removeLastAction(ctx)
return nil
}
func removeLastAction(ctx context.Context) error {
if conn, ok := ctx.Value("redis-conn").(RedisConn); ok {
pid, ok := ctx.Value("person").(int64)
if !ok {
logger.Error("Can't get PersonID from context")
return ErrCantParseCtx
}
return conn.NewRedisDelRequest().ID(pid).DeleteLastAction()
}
log.Println(ErrCantParseCtx)
return ErrCantParseCtx
}
func setLastAction(ctx context.Context, lastAction LastAction) error {
if conn, ok := ctx.Value("redis-conn").(RedisConn); ok {
pid, ok := ctx.Value("person").(int64)
if !ok {
logger.Error("Can't get PersonID from context")
return ErrCantParseCtx
}
return conn.NewRedisSetRequest().SetLastAction(pid, lastAction)
}
logger.Error("Can't get redis conn from context")
return ErrCantParseCtx
}
func getLastAction(ctx context.Context) (LastAction, error) {
if conn, ok := ctx.Value("redis-conn").(RedisConn); ok {
pid, ok := ctx.Value("person").(int64)
if !ok {
logger.Error("Can't get PersonID from context")
return "", ErrCantParseCtx
}
return conn.NewRedisGetRequest().ID(pid).GetLastAction()
}
logger.Error("Can't get connection from context")
return "", ErrCantParseCtx
}
func NewLogger() *zap.Logger {
fileInfo, err := os.OpenFile("log_info.log", os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0666)
if err != nil {
log.Panic(err)
}
fileError, err := os.OpenFile("log_error.log", os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0666)
if err != nil {
log.Panic(err)
}
lowPriority := zap.LevelEnablerFunc(func(lvl zapcore.Level) bool {
return lvl < zapcore.ErrorLevel
})
highPriority := zap.LevelEnablerFunc(func(lvl zapcore.Level) bool {
return lvl >= zapcore.ErrorLevel
})
fileDebugging := zapcore.Lock(fileInfo)
fileErrors := zapcore.Lock(fileError)
consoleDebugging := zapcore.Lock(os.Stdout)
consoleErrors := zapcore.Lock(os.Stderr)
fileEncoder := zapcore.NewJSONEncoder(zap.NewProductionEncoderConfig())
consoleEncoder := zapcore.NewConsoleEncoder(zap.NewDevelopmentEncoderConfig())
core := zapcore.NewTee(
zapcore.NewCore(fileEncoder, fileErrors, highPriority),
zapcore.NewCore(consoleEncoder, consoleErrors, highPriority),
zapcore.NewCore(fileEncoder, fileDebugging, lowPriority),
zapcore.NewCore(consoleEncoder, consoleDebugging, lowPriority),
)
logger := zap.New(core)
return logger
}