forked from botlabs-gg/yagpdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.go
173 lines (140 loc) · 4.26 KB
/
util.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
package commands
import (
"errors"
"fmt"
"github.com/jonas747/dcmd"
"github.com/jonas747/yagpdb/common"
"strconv"
"strings"
"time"
"unicode"
"unicode/utf8"
)
type DurationArg struct {
Min, Max time.Duration
}
func (d *DurationArg) Matches(def *dcmd.ArgDef, part string) bool {
if len(part) < 1 {
return false
}
// We "need" the first character to be a number
r, _ := utf8.DecodeRuneInString(part)
if !unicode.IsNumber(r) {
return false
}
_, err := ParseDuration(part)
return err == nil
}
func (d *DurationArg) Parse(def *dcmd.ArgDef, part string, data *dcmd.Data) (interface{}, error) {
dur, err := ParseDuration(part)
if err != nil {
return nil, err
}
if d.Min != 0 && d.Min > dur {
return nil, &DurationOutOfRangeError{ArgName: def.Name, Got: dur, Max: d.Max, Min: d.Min}
}
if d.Max != 0 && d.Max < dur {
return nil, &DurationOutOfRangeError{ArgName: def.Name, Got: dur, Max: d.Max, Min: d.Min}
}
return dur, nil
}
func (d *DurationArg) HelpName() string {
return "Duration"
}
// Parses a time string like 1day3h
func ParseDuration(str string) (time.Duration, error) {
var dur time.Duration
currentNumBuf := ""
currentModifierBuf := ""
// Parse the time
for _, v := range str {
// Ignore whitespace
if unicode.Is(unicode.White_Space, v) {
continue
}
if unicode.IsNumber(v) {
// If we reached a number and the modifier was also set, parse the last duration component before starting a new one
if currentModifierBuf != "" {
if currentNumBuf == "" {
currentNumBuf = "1"
}
d, err := parseDurationComponent(currentNumBuf, currentModifierBuf)
if err != nil {
return d, err
}
dur += d
currentNumBuf = ""
currentModifierBuf = ""
}
currentNumBuf += string(v)
} else {
currentModifierBuf += string(v)
}
}
if currentNumBuf != "" {
d, err := parseDurationComponent(currentNumBuf, currentModifierBuf)
if err == nil {
dur += d
}
}
return dur, nil
}
func parseDurationComponent(numStr, modifierStr string) (time.Duration, error) {
parsedNum, err := strconv.ParseInt(numStr, 10, 64)
if err != nil {
return 0, err
}
parsedDur := time.Duration(parsedNum)
if strings.HasPrefix(modifierStr, "s") {
parsedDur = parsedDur * time.Second
} else if modifierStr == "" || (strings.HasPrefix(modifierStr, "m") && (len(modifierStr) < 2 || modifierStr[1] != 'o')) {
parsedDur = parsedDur * time.Minute
} else if strings.HasPrefix(modifierStr, "h") {
parsedDur = parsedDur * time.Hour
} else if strings.HasPrefix(modifierStr, "d") {
parsedDur = parsedDur * time.Hour * 24
} else if strings.HasPrefix(modifierStr, "w") {
parsedDur = parsedDur * time.Hour * 24 * 7
} else if strings.HasPrefix(modifierStr, "mo") {
parsedDur = parsedDur * time.Hour * 24 * 30
} else if strings.HasPrefix(modifierStr, "y") {
parsedDur = parsedDur * time.Hour * 24 * 365
} else {
return parsedDur, errors.New("Couldn't figure out what '" + numStr + modifierStr + "` was")
}
return parsedDur, nil
}
type DurationOutOfRangeError struct {
Min, Max time.Duration
Got time.Duration
ArgName string
}
func (o *DurationOutOfRangeError) Error() string {
preStr := "too big"
if o.Got < o.Min {
preStr = "too small"
}
if o.Min == 0 {
return fmt.Sprintf("%s is %s, has to be smaller than %s", o.ArgName, preStr, common.HumanizeDuration(common.DurationPrecisionMinutes, o.Max))
} else if o.Max == 0 {
return fmt.Sprintf("%s is %s, has to be bigger than %s", o.ArgName, preStr, common.HumanizeDuration(common.DurationPrecisionMinutes, o.Min))
} else {
format := "%s is %s (has to be within `%d` and `%d`)"
return fmt.Sprintf(format, o.ArgName, preStr, common.HumanizeDuration(common.DurationPrecisionMinutes, o.Min), common.HumanizeDuration(common.DurationPrecisionMinutes, o.Max))
}
}
type PublicError string
func (p PublicError) Error() string {
return string(p)
}
func NewPublicError(a ...interface{}) PublicError {
return PublicError(fmt.Sprint(a...))
}
func NewPublicErrorF(f string, a ...interface{}) PublicError {
return PublicError(fmt.Sprintf(f, a...))
}
func FilterBadInvites(msg string, guildID int64, replacement string) string {
msg = common.ThirdPartyDiscordInviteRegex.ReplaceAllString(msg, replacement)
msg = common.DiscordInviteRegex.ReplaceAllString(msg, replacement)
return msg
}