removing whitespace
[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        ;; Add yours here
37        (_
38         (irc-format socket "PRIVMSG ~a :*stupid puppy look*" channel))))
39     (_
40      (cond
41       (is-action
42        (format #t "~a emoted ~s in channel ~a\n"
43                speaker message channel))
44       (else
45        (format #t "~a said ~s in channel ~a\n"
46                speaker message channel))))))
47
48 (define main
49   (make-irc-bot-cli (make-handle-line
50                      #:handle-privmsg (wrap-apply handle-message))))
51