-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamplekrl.krl
501 lines (391 loc) · 14.9 KB
/
examplekrl.krl
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
ruleset a41x140 {
meta {
name "IRC Bot"
description <<
IRC Bot
>>
author ""
// Uncomment this line to require Marketplace purchase to use this app.
// authz require user
logging off
}
dispatch {
// Some example dispatch domains
// domain "example.com"
// domain "other.example.com"
}
global {
datasource shakespeare:HTML <- "http://www.pangloss.com/seidel/Shaker/" cachable for 1 seconds;
datasource BOFH:HTML <- "http://pages.cs.wisc.edu/~ballard/bofh/bofhserver.pl" cachable for 1 seconds;
datasource random:HTML <- "http://en.wikipedia.org/wiki/Special:Random" cachable for 1 seconds;
datasource stringBinWrite <- "http://api.stringbin.com/1/write?pin=f22DrSyArBgHLKciIvWRN" cachable for 1 seconds;
datasource stringBinRead <- "http://api.stringbin.com/1/read?pin=f22DrSyArBgHLKciIvWRN" cachable for 1 seconds;
datasource translate <- "https://www.googleapis.com/language/translate/v2?key=AIzaSyC9ikbb0auy0HQTzIf6GY08oYBBvrcBC10" cachable for 5 days;
getChannel = function(parameters){
parameters.pick("$.channel").match(re/^#/) => parameters.pick("$.channel") | parameters.pick("$.user");
};
}
rule test {
select when irc recieved text "~test"
pre {
eventParams = event:params();
channel = getChannel(eventParams);
variable = ent:count;
}
{
send_directive("say") with text = variable and to = channel;
}
fired {
ent:count += 1 from 10;
}
}
rule help {
select when irc recieved text "~help"
pre {
eventParams = event:params();
channel = page:env("user");
general = <<ScottPhillips is a bot run through sending events to Kynetx and responding using directives. ScottPhillips supports several commands including (but not limited to since there may be easter eggs):>>;
insult = << ~insult <username>: Will send a shakespearian insult to <username>. Insults are from http://www.pangloss.com/seidel/Shaker/>>;
random = << ~random: Gets a random word from a random Wikipedia article and sends the word back as a message.>>;
welcome = << ~welcome: <username>: Welcomes <username> into the channel.>>;
rolldie = << ~rolldie: Returns a random number between 1-4. Guaranteed to be random.>>;
excuse = << ~excuse: Gives an excuse gotten from http://pages.cs.wisc.edu/~ballard/bofh/bofhserver.pl>>;
karma_plus = << <username>++: Increases the Karma of <username>.>>;
karma_minus = << <username>--: Decreases the Karma of <username>.>>;
karma_get = << ~karma <username>: Returns the Karma of <username>.>>;
s = <<s/<text>/<replace>: Does a search and replace on your last message.>>;
say = <<~say <message> <channel>: Posts <message> in <channel>.>>;
translate = <<~translate <message/username> <desiredLanguageCode>: Translates <message> or <username>'s last message into the language specified by the <desiredLanguageCode>. ja for Japanese, es for Spanish, etc.>>;
}
if( channel neq "AlexOlson" ) then {
send_directive("say") with text = general and to = channel;
send_directive("say") with text = insult and to = channel;
send_directive("say") with text = random and to = channel;
send_directive("say") with text = welcome and to = channel;
send_directive("say") with text = rolldie and to = channel;
send_directive("say") with text = excuse and to = channel;
send_directive("say") with text = karma_plus and to = channel;
send_directive("say") with text = karma_minus and to = channel;
send_directive("say") with text = karma_get and to = channel;
send_directive("say") with text = s and to = channel;
send_directive("say") with text = say and to = channel;
send_directive("say") with text = translate and to = channel;
}
fired {
last;
}
}
rule help_ako {
select when irc recieved text "~help"
pre {
eventParams = event:params();
channel = getChannel(eventParams);
user = page:env("user");
text = <<You need more help than we can give you, #{user}...>>;
}
if( user eq "AlexOlson" ) then {
send_directive("say") with text = "#{text}" and to = channel;
}
fired {
last;
}
}
rule substitute {
select when irc recieved text "s/(.*?)/(.*?)/(.*)" setting (toreplace, replacewith, flags)
pre {
eventParams = event:params();
channel = getChannel(eventParams);
user = page:env("user");
currentHash = app:users;
data = currentHash.pick("$.#{user}");
regex = <<re/#{toreplace}/#{flags}>>;
newText = data.pick("$.text").replace("#{regex}".as("regexp"),replacewith);
textToSay = "#{user} meant: #{newText}";
}
send_directive("say") with text = "#{textToSay}" and to = channel and users = currentHash.encode();
fired {
last;
}
}
rule substitute_no_end_slash {
select when irc recieved text "s/(.*?)/(.*)" setting (toreplace, replacewith, flags)
pre {
eventParams = event:params();
channel = getChannel(eventParams);
user = page:env("user");
currentHash = app:users;
data = currentHash.pick("$.#{user}");
regex = <<re/#{toreplace}/#{flags}>>;
newText = data.pick("$.text").replace("#{regex}".as("regexp"),replacewith);
textToSay = "#{user} meant: #{newText}";
}
send_directive("say") with text = "#{textToSay}" and to = channel and users = currentHash.encode();
fired {
last;
}
}
rule karma {
select when irc recieved text ".*?(\w+)([\+\-]{2}).*?" setting (username,command)
pre {
eventParams = event:params();
channel = getChannel(eventParams);
user = page:env("user");
currentHash = app:users;
data = currentHash.pick("$.#{username}");
currentHash = app:users => app:users | {};
karma = currentHash.pick("$.#{username}.karma");
karmaCount = (karma.as("str") neq "[]") => karma | 0;
newKarma = (command eq "++") => karmaCount.as("num")+1 |
(command eq "--") => karmaCount.as("num")-1 | karmaCount.as("num");
info = {
"karma":newKarma,
"user":user,
"text":text
};
new = currentHash.put({"#{username}":info});
textToSay = "#{username}'s karma is #{newKarma}";
data = app:karmaed;
limiter = (not (seen user in app:karmaed within 1 minutes));
}
if(username neq user && limiter && ( command eq "++" || command eq "--") && username neq "ScottPhillips") then {
send_directive("say") with text = "#{textToSay}" and to = channel and karma = karma and limit = limiter;
}
fired {
set app:users new;
mark app:karmaed with user;
last;
}
}
rule scott_karma {
select when irc recieved text ".*?ScottPhillips([\+\-]{2}).*?" setting(command)
pre {
eventParams = event:params();
channel = getChannel(eventParams);
user = page:env("user");
currentHash = app:users;
username = (command eq "--") => user | "ScottPhillips";
data = currentHash.pick("$.#{username}");
currentHash = app:users => app:users | {};
karma = currentHash.pick("$.#{username}.karma");
karmaCount = (karma.as("str") neq "[]") => karma | 0;
newKarma = (command eq "++") => karmaCount.as("num")+1 |
(command eq "--") => karmaCount.as("num")-1 | karmaCount.as("num");
info = {
"karma":newKarma,
"user":user,
"text":text
};
new = currentHash.put({"#{username}":info});
message = (command eq "--") => "Trying to demote me, eh? Well, #{user}'s karma is now #{newKarma}!" |
(command eq "++") => "Thanks for the upvote! My karma is now #{newKarma}" |
"";
}
if(message neq "") then {
send_directive("say") with text = message and to = channel;
}
fired {
set app:users new;
mark app:karmaed with user;
last;
}
}
rule get_karma {
select when irc recieved text ".*?~karma\s+(\w+).*?" setting (username,command)
pre {
eventParams = event:params();
channel = getChannel(eventParams);
user = page:env("user");
currentHash = app:users;
data = currentHash.pick("$.#{username}");
karma = currentHash.pick("$.#{username}.karma");
karmaCount = (karma.as("str") neq "[]") => karma | 0;
textToSay = "#{username}'s karma is #{karmaCount}";
}
send_directive("say") with text = "#{textToSay}" and to = channel and karma = karmaCount;
fired {
last;
}
}
rule translate_user {
select when irc recieved text ".*?~translate\s+(\w+)\s+(\w+)" setting (text,language)
pre {
eventParams = event:params();
channel = getChannel(eventParams);
user = page:env("user");
currentHash = app:users;
userText = currentHash.pick("$.#{text}.text");
textToTranslate = (userText.as("str") neq "[]") => userText | "";
translateTo = language eq "" => "en" | language;
translated = datasource:translate({"q":textToTranslate,"target":translateTo}).pick("$.data.translations[0].translatedText");
textToSay = "#{translated}";
}
if( userText.as("str") neq "[]") then {
send_directive("say") with text = "#{textToSay}" and to = channel;
}
fired {
last;
}
}
rule translate_text {
select when irc recieved text ".*?~translate\s+(.*)\s+(\w+).*?" setting (text,language)
pre {
eventParams = event:params();
channel = getChannel(eventParams);
user = page:env("user");
translateTo = language eq "" => "en" | language;
translated = datasource:translate({"q":text,"target":translateTo}).pick("$.data.translations[0].translatedText");
textToSay = "#{translated}";
}
send_directive("say") with text = "#{textToSay}" and to = channel;
fired {
last;
}
}
rule say {
select when irc recieved text ".*?~say\s+(.*)\s+(.*).*?" setting (text,channel)
pre {
eventParams = event:params();
user = page:env("user");
textToSay = "#{text}";
}
send_directive("say") with text = "#{textToSay}" and to = channel;
fired {
last;
}
}
// normal commands
rule irc_random is active {
select when irc recieved text ".*?~random.*?" setting ()
pre {
eventParams = event:params();
channel = getChannel(eventParams);
user = page:env("user");
page = datasource:random({});
bodyContent = page.query("#bodyContent",true);
randomArray = bodyContent[0].extract(re/\s+(\w+)\s+/g);
random = randomArray[math:random(randomArray.length())];
textToSay = "#{random}";
}
send_directive("say") with text = "#{textToSay}" and to = channel;
fired {
last;
}
}
rule irc_excuse is active {
select when irc recieved text ".*?~excuse.*?" setting ()
pre {
eventParams = event:params();
channel = getChannel(eventParams);
user = page:env("user");
page = datasource:BOFH({"blarg":(math:random(100000))});
bodyContent = page.query("font[size=+2]",true);
excuse = bodyContent[1];
textToSay = "#{excuse}";
}
send_directive("say") with text = "#{textToSay}" and to = channel;
fired {
last;
}
}
rule irc_welcome is active {
select when irc recieved text ".*?~welcome\s+(\w+).*?" setting (username)
pre {
eventParams = event:params();
channel = getChannel(eventParams);
user = page:env("user");
textToSay = <<Welcome to #{channel}, #{username}!>>;
}
send_directive("say") with text = "#{textToSay}" and to = channel;
fired {
last;
}
}
rule irc_dice_roll is active {
select when irc recieved text ".*?~rolldie.*?" setting ()
pre {
eventParams = event:params();
channel = getChannel(eventParams);
user = page:env("user");
textToSay = <<4 // see http://imgs.xkcd.com/comics/random_number.png>>;
}
send_directive("say") with text = "#{textToSay}" and to = channel;
fired {
last;
}
}
rule irc_insult is active {
select when irc recieved text ".*?~insult\s+(\w+).*?" setting (username)
pre {
eventParams = event:params();
channel = getChannel(eventParams);
page = datasource:shakespeare({});
insult = page.query("font[size=+2]", true);
textToSay = "#{username}: #{insult[0]}";
}
send_directive("say") with text = "#{textToSay}" and to = channel;
fired {
last;
}
}
rule irc_op_jessie {
select when irc joined
pre {
eventParams = event:params();
channel = getChannel(eventParams);
username = page:env("user");
}
if(username eq "JessieAMorris" || username eq "PreacherBob") then {
send_directive("mode") with channel = channel and user = username and mode = "+o";
send_directive("say") with text = "Welcome JAM!" and to = channel;
}
}
rule irc_op_qwade {
select when irc joined
pre {
eventParams = event:params();
channel = getChannel(eventParams);
username = page:env("user");
}
if(username eq "qwade") then {
send_directive("mode") with channel = channel and user = username and mode = "+o";
send_directive("say") with text = "Welcome QWade!" and to = channel;
}
}
rule irc_kick_ako {
select when irc joined
pre {
eventParams = event:params();
channel = getChannel(eventParams);
username = page:env("user");
time = (time:now({"tz":"America/Denver"})).replace(re/.*?(\d+)\w$/,"$1");
}
if((username eq "AlexOlson" || username eq "PreacherBob") && not (time % 3)) then {
send_directive("say") with text = "I am a BOFH!" and to = channel and time = time;
send_directive("kick") with channel = channel and user = username;
}
}
// HTTP info
//rule irc_http {
//select when irc recieved text ".*(https?://.*?\s+).*" setting(url)
rule save_messages {
select when irc recieved
pre {
eventParams = event:params();
channel = getChannel(eventParams);
text = page:env("text");
user = page:env("user");
currentHash = app:users => app:users | {};
karma = currentHash.pick("$.#{user}.karma");
karmaCount = (karma.length() == 0) => 0 | karma;
info = {
"karma":karmaCount,
"user":user,
"text":text
};
new = currentHash.put({"#{user}":info});
}
always {
set app:users new;
}
}
}