mirror of https://github.com/nealey/irc-bot
68 lines
1.4 KiB
Bash
Executable File
68 lines
1.4 KiB
Bash
Executable File
#! /bin/sh
|
||
|
||
prefix=$1; export prefix; shift
|
||
command=$1; export command; shift
|
||
sender=$1; export sender; shift
|
||
forum=$1; export forum; shift
|
||
text=$1; export text; shift
|
||
# $* is now args
|
||
|
||
# Debug output
|
||
#echo '>>>' ${prefix:+:}$prefix $command "$@" ${text:+:}"$text" 1>&2
|
||
|
||
raw () {
|
||
fmt="\007$1\n"; shift
|
||
printf "$fmt" "$@"
|
||
}
|
||
|
||
join () {
|
||
raw "JOIN $1"
|
||
}
|
||
|
||
out=$(tempfile)
|
||
|
||
case $command in
|
||
001)
|
||
for i in $botdir/channels/*; do
|
||
join $(basename $i)
|
||
done
|
||
;;
|
||
433)
|
||
raw "NICK bot_$(shuf -c 1 /usr/share/dict/words)"
|
||
;;
|
||
PRIVMSG)
|
||
case "$forum" in
|
||
\#*)
|
||
$ircdir/firebot "$text" || \
|
||
$ircdir/whuffie $botdir/whuffie.cdb "$text" || \
|
||
$ircdir/infobot $botdir/factoids.cdb "$text"
|
||
;;
|
||
esac
|
||
$ircdir/notes $botdir/notes "$text"
|
||
;;
|
||
INVITE)
|
||
join "$forum"
|
||
raw "PRIVMSG %s :Thanks for the invitation, %s." "$forum" "$sender"
|
||
touch $botdir/channels/$forum
|
||
;;
|
||
esac > $out
|
||
|
||
if [ "$forum" != "$sender" ] && [ $(wc -l < $out) -gt 5 ]; then
|
||
printf "PRIVMSG %s :Too many lines, sending privately.\r\n" "$forum"
|
||
forum=$sender
|
||
fi
|
||
|
||
while read -r line; do
|
||
case "$line" in
|
||
*)
|
||
printf "%s\r\n" "${line#}"
|
||
;;
|
||
*)
|
||
printf "PRIVMSG %s :%s\r\n" "$forum" "$line"
|
||
;;
|
||
esac
|
||
done < $out
|
||
|
||
rm -f $out
|
||
|