9905dab03c8a5c2cc189d94468dc3330d972b7c5
[8sync.git] / demos / ircbot.scm
1 #!/usr/bin/guile \
2 -e main -s
3 !#
4
5 ;; Copyright (C) 2015 Christopher Allan Webber <cwebber@dustycloud.org>
6
7 ;; This library is free software; you can redistribute it and/or
8 ;; modify it under the terms of the GNU Lesser General Public
9 ;; License as published by the Free Software Foundation; either
10 ;; version 3 of the License, or (at your option) any later version.
11 ;;
12 ;; This library is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 ;; Lesser General Public License for more details.
16 ;;
17 ;; You should have received a copy of the GNU Lesser General Public
18 ;; License along with this library; if not, write to the Free Software
19 ;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 ;; 02110-1301 USA
21
22 (use-modules (eightsync systems irc)
23              (eightsync agenda)
24              (ice-9 match))
25
26 (define (handle-message socket my-name speaker
27                         channel message is-action)
28   (define (looks-like-me? str)
29     (or (equal? str my-name)
30         (equal? str (string-concatenate (list my-name ":")))))
31   (match (string-split message #\space)
32     (((? looks-like-me? _) action action-args ...)
33      (match action
34        ("botsnack"
35         (irc-format socket "PRIVMSG ~a :Yippie! *does a dance!*" channel))
36        ((or "hello" "hello!" "hello." "greetings" "greetings." "greetings!"
37             "hei" "hei." "hei!")
38         (irc-format socket "PRIVMSG ~a :Oh hi ~a!" channel speaker))
39        ;; Add yours here
40        (_
41         (irc-format socket "PRIVMSG ~a :*stupid puppy look*" channel))))
42     (_
43      (cond
44       (is-action
45        (format #t "~a emoted ~s in channel ~a\n"
46                speaker message channel))
47       (else
48        (format #t "~a said ~s in channel ~a\n"
49                speaker message channel))))))
50
51 (define main
52   (make-irc-bot-cli (make-handle-line
53                      #:handle-privmsg (wrap-apply handle-message))))
54