2023-06-13 02:22:44 +03:00
|
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
"git.nefrace.ru/nefrace/nechotron"
|
|
|
|
|
"git.nefrace.ru/nefrace/tongo"
|
|
|
|
|
"github.com/NicoNex/echotron/v3"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Returns slices of good and bad triggers
|
|
|
|
|
func GetTriggers() map[string]int {
|
|
|
|
|
return map[string]int{
|
|
|
|
|
"+": 1,
|
|
|
|
|
"-": -1,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func handleKarma(u *nechotron.Update) error {
|
|
|
|
|
from, _ := u.Ctx.Value("userfrom").(*User)
|
|
|
|
|
to, _ := u.Ctx.Value("userto").(*User)
|
|
|
|
|
mentionFrom := nechotron.UserMention(u.Message.From)
|
|
|
|
|
mentionTo := nechotron.UserMention(u.Message.ReplyToMessage.From)
|
|
|
|
|
if from.ID == to.ID {
|
|
|
|
|
res, err := u.AnswerMarkdown(
|
|
|
|
|
fmt.Sprintf("Лайкать себя \\- плохая затея, *%s*", mentionFrom))
|
|
|
|
|
go func() {
|
|
|
|
|
time.Sleep(10 * time.Second)
|
|
|
|
|
u.Bot.DeleteMessage(u.ChatID(), res.Result.ID)
|
|
|
|
|
}()
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
value := u.Ctx.Value(nechotron.FilteredValue("karmaValue")).(int)
|
|
|
|
|
// trigger := u.Ctx.Value(nechotron.FilteredValue("karmaTrigger")).(string)
|
|
|
|
|
store := tongo.NewStore[KarmaShot](db)
|
|
|
|
|
fromKarma, _ := store.Count(u.Ctx, tongo.E("to", from.ID))
|
|
|
|
|
totalFromKarma := from.KarmaOffset + fromKarma
|
2023-06-15 17:03:57 +03:00
|
|
|
|
if totalFromKarma <= 0 {
|
2023-06-13 02:22:44 +03:00
|
|
|
|
res, err := u.AnswerText(
|
|
|
|
|
fmt.Sprintf("У тебя слишком маленькая карма *\\(%d\\), чтобы менять её другим\\.", totalFromKarma),
|
|
|
|
|
&echotron.MessageOptions{ParseMode: echotron.MarkdownV2, ReplyToMessageID: u.MessageID()})
|
|
|
|
|
go waitAndDelete(u, u.ChatID(), res.Result.ID)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
timeThreshold := time.Now().Add(1 * -time.Minute)
|
|
|
|
|
recentShots, err := store.Count(
|
|
|
|
|
u.Ctx,
|
|
|
|
|
tongo.E("from", from.ID),
|
|
|
|
|
tongo.E("to", to.ID),
|
|
|
|
|
tongo.E("when", tongo.D(tongo.E("$gte", timeThreshold))))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
if recentShots > 0 {
|
|
|
|
|
// u.DeleteMessage()
|
|
|
|
|
res, err := u.AnswerMarkdown(
|
|
|
|
|
fmt.Sprintf("*%s*, ты только недавно менял карму *%s*\\. Подожди минуту\\.", mentionFrom, mentionTo))
|
|
|
|
|
go waitAndDelete(u, u.ChatID(), res.Result.ID)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
if to.ID == u.Bot.Me.ID {
|
|
|
|
|
if value > 0 {
|
|
|
|
|
u.AnswerMarkdown("*_Ой, это мне?_*")
|
|
|
|
|
} else {
|
|
|
|
|
res, err := u.AnswerMarkdown("*_Кажется, вы ошиблись адресатом :/_*")
|
|
|
|
|
go waitAndDelete(u, u.ChatID(), res.Result.ID)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
newShot := KarmaShot{
|
|
|
|
|
Item: tongo.NewID(),
|
|
|
|
|
From: from.ID,
|
|
|
|
|
To: to.ID,
|
|
|
|
|
MessageText: nechotron.GetText(u.Message.ReplyToMessage),
|
|
|
|
|
When: time.Now(),
|
|
|
|
|
Count: value,
|
|
|
|
|
}
|
|
|
|
|
store.InsertOne(u.Ctx, &newShot)
|
|
|
|
|
newKarma, _ := store.Count(u.Ctx, tongo.E("to", to.ID))
|
|
|
|
|
totalToKarma := to.KarmaOffset + newKarma
|
|
|
|
|
changeText := "повысил"
|
|
|
|
|
if value < 0 {
|
|
|
|
|
changeText = "понизил"
|
|
|
|
|
}
|
|
|
|
|
_, err = u.AnswerMarkdown(
|
|
|
|
|
fmt.Sprintf("*%s \\(%d\\)* только что %s карму *%s \\(%d\\)*", mentionFrom, totalFromKarma, changeText, mentionTo, totalToKarma))
|
|
|
|
|
return err
|
|
|
|
|
}
|