This repository was archived by the owner on Aug 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgreeter.go
98 lines (92 loc) · 2.13 KB
/
greeter.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
package main
import (
"database/sql"
"math/rand"
"time"
"github.com/whyrusleeping/hellabot"
"github.com/softwareniagara/irc_bot/store"
)
func init() {
rand.Seed(time.Now().Unix())
}
func GreeterTrigger(s *store.Store, nick string) hbot.Trigger {
return hbot.Trigger{
Condition: func(bot *hbot.Bot, msg *hbot.Message) bool {
return msg.Command == "JOIN" && msg.From != nick
},
Action: func(bot *hbot.Bot, msg *hbot.Message) bool {
u, err := s.FindUserByNick(msg.From)
if err != nil {
if err == sql.ErrNoRows {
ReplyTo(bot, msg, RandomGreeting())
return true
}
ErrorReply(bot, msg, err)
return true
}
if u.Greeting != "" {
greeting := u.Greeting
if greeting == "random" {
greeting = RandomGreeting()
}
ReplyTo(bot, msg, greeting)
}
return true
},
}
}
func RandomGreeting() string {
greetings := []string{
"Hello, sunshine!",
"Howdy, partner!",
"Hey, howdy, hi!",
"What’s kickin’, little chicken?",
"Peek-a-boo!",
"Howdy-doody!",
"Hey there, freshman!",
"My name's Ralph, and I'm a bad guy.",
"Hi, mister!",
"I come in peace!",
"Put that cookie down!",
"Ahoy, matey!",
"Hiya!",
"‘Ello, gov'nor!",
"Top of the mornin’ to ya!",
"What’s crackin’?",
"GOOOOOD MORNING, VIETNAM!",
"‘Sup, homeslice?",
"This call may be recorded for training purposes.",
"Howdy, howdy ,howdy!",
"How does a lion greet the other animals in the field? A: Pleased to eat you.",
"Hello, my name is Inigo Montoya.",
"I'm Batman.",
"At least, we meet for the first time for the last time!",
"Hello, who's there, I'm talking.",
"Here's Johnny!",
"You know who this is.",
"Ghostbusters, whatya want?",
"Yo!",
"Whaddup.",
"Greetings and salutations!",
"Saying Hello to Your Love",
"‘Ello, mate.",
"Heeey, baaaaaby.",
"Hi, honeybunch!",
"Oh, yoooouhoooo!",
"How you doin'?",
"I like your face.",
"What's cookin', good lookin'?",
"Howdy, miss.",
"Why, hello there!",
"Hey, boo.",
"Aloha",
"Hola",
"Que pasa",
"Bonjour",
"Hallo",
"Ciao",
"Konnichiwa",
}
n := rand.Int() % len(greetings)
return greetings[n]
}