Skip to content

Commit adf06d8

Browse files
authored
Merge pull request #69 from Humans-of-Julia/tk/reactor-updates1
Reactor updates
2 parents b6b070b + 365350a commit adf06d8

File tree

1 file changed

+58
-8
lines changed

1 file changed

+58
-8
lines changed

src/handler/reaction.jl

+58-8
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,42 @@ const NO_REACTION = Char[]
1919
# Reactors
2020
# ----------------------------------------------------------------------
2121

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+
2253
struct HappyReactor <: AbstractReactor end
2354

2455
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])
2758
return ['😄']
2859
end
2960
return NO_REACTION
@@ -32,8 +63,9 @@ end
3263
struct DisappointedReactor <: AbstractReactor end
3364

3465
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])
3769
return ['😞']
3870
end
3971
return NO_REACTION
@@ -42,8 +74,8 @@ end
4274
struct ExcitedReactor <: AbstractReactor end
4375

4476
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])
4779
return ['🤩']
4880
end
4981
return NO_REACTION
@@ -52,13 +84,30 @@ end
5284
struct GoodbyeReactor <: AbstractReactor end
5385

5486
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])
5788
return ['👋']
5889
end
5990
return NO_REACTION
6091
end
6192

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
62111

63112
# ----------------------------------------------------------------------
64113
# Main logic
@@ -69,6 +118,7 @@ const REACTORS = AbstractReactor[
69118
DisappointedReactor(),
70119
ExcitedReactor(),
71120
GoodbyeReactor(),
121+
AnimalReactor(),
72122
]
73123

74124
function handler(c::Client, e::MessageCreate, ::Val{:reaction})

0 commit comments

Comments
 (0)