mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
add my old utils
This commit is contained in:
parent
bfd206e064
commit
d10fa74a05
1 changed files with 79 additions and 0 deletions
79
pkg/utils/utils.go
Normal file
79
pkg/utils/utils.go
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
package utils
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"math/rand"
|
||||||
|
"strconv"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/gempir/go-twitch-irc/v2"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
tempCommands = 0
|
||||||
|
)
|
||||||
|
|
||||||
|
// CommandUsed is called on every command and
|
||||||
|
// Incremenents tempCommands by 1
|
||||||
|
func CommandUsed() {
|
||||||
|
tempCommands++
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetCommandsUsed gets tempCommands and
|
||||||
|
// returns it. Only used in ping command
|
||||||
|
func GetCommandsUsed() int {
|
||||||
|
return tempCommands
|
||||||
|
}
|
||||||
|
|
||||||
|
// StrGenerateRandomNumber generates a random number from
|
||||||
|
// a given max value as a string
|
||||||
|
func StrGenerateRandomNumber(max string) int {
|
||||||
|
num, err := strconv.Atoi(max)
|
||||||
|
if num < 1 {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
fmt.Printf("Supplied value %v is not a number", num)
|
||||||
|
return 0
|
||||||
|
} else {
|
||||||
|
rand.Seed(time.Now().UnixNano())
|
||||||
|
return rand.Intn(num)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// GenerateRandomNumber returns a random number from
|
||||||
|
// a given max value as a int
|
||||||
|
func GenerateRandomNumber(max int) int {
|
||||||
|
rand.Seed(time.Now().UnixNano())
|
||||||
|
return rand.Intn(max)
|
||||||
|
}
|
||||||
|
|
||||||
|
// GenerateRandomNumberRange returns a random number
|
||||||
|
// over a given minimum and maximum range.
|
||||||
|
func GenerateRandomNumberRange(min int, max int) int {
|
||||||
|
return (rand.Intn(max-min) + min)
|
||||||
|
}
|
||||||
|
|
||||||
|
// ElevatedPrivsMessage is checking a given message twitch.PrivateMessage
|
||||||
|
// if it came from a moderator/vip/or broadcaster and returns a bool
|
||||||
|
func ElevatedPrivsMessage(message twitch.PrivateMessage) bool {
|
||||||
|
if message.User.Badges["moderator"] == 1 ||
|
||||||
|
message.User.Badges["vip"] == 1 ||
|
||||||
|
message.User.Badges["broadcaster"] == 1 {
|
||||||
|
return true
|
||||||
|
} else {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ModPrivsMessage is checking a given message twitch.PrivateMessage
|
||||||
|
// if it came from a moderator or broadcaster and returns a bool
|
||||||
|
func ModPrivsMessage(message twitch.PrivateMessage) bool {
|
||||||
|
if message.User.Badges["moderator"] == 1 ||
|
||||||
|
message.User.Badges["broadcaster"] == 1 {
|
||||||
|
return true
|
||||||
|
} else {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue