2020-04-25 22:49:41 +00:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"git.dragon-labs.de/alphyron/group_helper/cli"
|
|
|
|
"git.dragon-labs.de/alphyron/group_helper/logic"
|
2020-05-09 18:54:42 +00:00
|
|
|
"git.dragon-labs.de/alphyron/group_helper/models"
|
2020-04-25 22:49:41 +00:00
|
|
|
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api"
|
|
|
|
"strconv"
|
|
|
|
)
|
|
|
|
|
|
|
|
type toggleOnlineCheckCommand struct {
|
|
|
|
groupHelperService logic.GroupHelperService
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewToggleOnlineCheckCommand(groupHelperService logic.GroupHelperService) cli.Command {
|
|
|
|
return &toggleOnlineCheckCommand{
|
|
|
|
groupHelperService: groupHelperService,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i toggleOnlineCheckCommand) GetUsage() string {
|
|
|
|
return "/toggleOnlineCheck"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i toggleOnlineCheckCommand) GetCommand() string {
|
|
|
|
return "/toggleOnlineCheck"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i toggleOnlineCheckCommand) GetDescription() string {
|
|
|
|
return "Toggle the setting for a online check when a user join"
|
|
|
|
}
|
|
|
|
|
2020-05-09 18:54:42 +00:00
|
|
|
func (i toggleOnlineCheckCommand) ExecuteCommand(bot *tgbotapi.BotAPI, update *tgbotapi.Update, group *models.Group) (bool, error) {
|
2020-04-25 22:49:41 +00:00
|
|
|
|
|
|
|
group.OnlineCheck = !group.OnlineCheck
|
2020-05-09 18:54:42 +00:00
|
|
|
group, err := i.groupHelperService.UpdateGroup(group)
|
2020-04-25 22:49:41 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
msg := tgbotapi.NewMessage(update.Message.Chat.ID, "Update the group setting for OnlineCheck to: "+strconv.FormatBool(group.OnlineCheck))
|
|
|
|
_, err = bot.Send(msg)
|
|
|
|
|
|
|
|
return err == nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i toggleOnlineCheckCommand) AllowChatType(chat *tgbotapi.Chat) bool {
|
|
|
|
return chat.IsGroup() || chat.IsSuperGroup()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i toggleOnlineCheckCommand) AllowMember(member *tgbotapi.ChatMember) bool {
|
|
|
|
return member.IsAdministrator() || member.IsCreator()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i toggleOnlineCheckCommand) AllowEveryMember() bool {
|
|
|
|
return false
|
|
|
|
}
|