@@ -19,11 +19,42 @@ const NO_REACTION = Char[]
19
19
# Reactors
20
20
# ----------------------------------------------------------------------
21
21
22
+ const REACT_WORDS = Dict (
23
+ :happy => [
24
+ " happy" , " nice" , " great" , " awesome" , " cheers" , " yay" ,
25
+ " congrat" , " congrats" , " congratulations" ,
26
+ " it helped" , " it helps" , " appreciate" , " appreciated" , " noice" ,
27
+ " thank" , " thanks" ,
28
+ ],
29
+ :disappointed => [
30
+ " disappointed" , " unhappy" , " sad" , " aw shucks" , " yeow" ,
31
+ ],
32
+ :excited => [
33
+ " excited" , " fantastic" , " fabulous" , " wonderful" ,
34
+ " looking forward to" , " love" , " learned" , " saved me" ,
35
+ " beautiful"
36
+ ],
37
+ :goodbye => [
38
+ " cya" , " bye" , " goodbye" , " ciao" , " adios" , " brb"
39
+ ],
40
+ :dog => [" dog" , " dogs" , " doggie" , " shiba" , " corgi" , " chihuahua" , " retriever" ],
41
+ :cat => [" cat" , " cats" , " feline" , " kitten" , " kittens" ],
42
+ :snake => [" snake" , " snakes" , " rattle" , " python" , " pythons" ],
43
+ :crab => [" crab" , " crabs" , " rust" ],
44
+ )
45
+
46
+ function contains_any (s:: AbstractString , words:: AbstractVector{String} )
47
+ is_thing (x) = x != = nothing
48
+ regexes = [Regex (" \\ b" * w * " \\ b" ) for w in words]
49
+ matches = match .(regexes, lowercase (s))
50
+ return any (is_thing (x) for x in matches)
51
+ end
52
+
22
53
struct HappyReactor <: AbstractReactor end
23
54
24
55
function reactions (:: HappyReactor , m:: Message )
25
- words = [ " happy" , " nice " , " great " , " awesome " , " cheers " , " yay " , " yayy " , " congratulations " , " it helped " , " appriciate " , " noice " , " thanks " ]
26
- if any ( occursin .(words, m. content) )
56
+ if contains_any (m . content, REACT_WORDS[ : happy]) &&
57
+ ! contains_any ( m. content, REACT_WORDS[ :disappointed ] )
27
58
return [' 😄' ]
28
59
end
29
60
return NO_REACTION
32
63
struct DisappointedReactor <: AbstractReactor end
33
64
34
65
function reactions (:: DisappointedReactor , m:: Message )
35
- words = [" disappointed" , " unhappy" , " sad" , " aw shucks" , " yeow" ]
36
- if any (occursin .(words, m. content))
66
+ if contains_any (m. content, REACT_WORDS[:disappointed ]) &&
67
+ ! contains_any (m. content, REACT_WORDS[:happy ]) &&
68
+ ! contains_any (m. content, REACT_WORDS[:excited ])
37
69
return [' 😞' ]
38
70
end
39
71
return NO_REACTION
42
74
struct ExcitedReactor <: AbstractReactor end
43
75
44
76
function reactions (:: ExcitedReactor , m:: Message )
45
- words = [ " excited" , " fantastic " , " fabulous " , " wonderful " , " looking forward to " , " love " , " learn " , " julia " , " saved me " , " beautiful " ]
46
- if any ( occursin .(words, m. content) )
77
+ if contains_any (m . content, REACT_WORDS[ : excited]) &&
78
+ ! contains_any ( m. content, REACT_WORDS[ :disappointed ] )
47
79
return [' 🤩' ]
48
80
end
49
81
return NO_REACTION
52
84
struct GoodbyeReactor <: AbstractReactor end
53
85
54
86
function reactions (:: GoodbyeReactor , m:: Message )
55
- words = [" cya" , " bye" , " goodbye" , " ciao" , " adios" ]
56
- if any (occursin .(words, m. content))
87
+ if contains_any (m. content, REACT_WORDS[:goodbye ])
57
88
return [' 👋' ]
58
89
end
59
90
return NO_REACTION
60
91
end
61
92
93
+ struct AnimalReactor <: AbstractReactor end
94
+
95
+ function reactions (:: AnimalReactor , m:: Message )
96
+ result = Char[]
97
+ if contains_any (m. content, REACT_WORDS[:dog ])
98
+ push! (result, ' 🐕' )
99
+ end
100
+ if contains_any (m. content, REACT_WORDS[:cat ])
101
+ push! (result, ' 🐈' )
102
+ end
103
+ if contains_any (m. content, REACT_WORDS[:snake ])
104
+ push! (result, ' 🐍' )
105
+ end
106
+ if contains_any (m. content, REACT_WORDS[:crab ])
107
+ push! (result, ' 🦀' )
108
+ end
109
+ return result
110
+ end
62
111
63
112
# ----------------------------------------------------------------------
64
113
# Main logic
@@ -69,6 +118,7 @@ const REACTORS = AbstractReactor[
69
118
DisappointedReactor (),
70
119
ExcitedReactor (),
71
120
GoodbyeReactor (),
121
+ AnimalReactor (),
72
122
]
73
123
74
124
function handler (c:: Client , e:: MessageCreate , :: Val{:reaction} )
0 commit comments