aboutsummaryrefslogtreecommitdiffstats
path: root/modules/m_quote.sh
diff options
context:
space:
mode:
authorMárcio Silva <coadde at hyperbola dot info>2017-06-02 15:44:54 -0300
committerMárcio Silva <coadde at hyperbola dot info>2017-06-02 15:44:54 -0300
commitb4830e97ae51396ccaa9ca2acb469aef80094ae8 (patch)
treec069b1ef6f9189848726121afa8d815e4e56d138 /modules/m_quote.sh
downloadhyperbot-b4830e97ae51396ccaa9ca2acb469aef80094ae8.tar.lz
hyperbot-b4830e97ae51396ccaa9ca2acb469aef80094ae8.tar.xz
hyperbot-b4830e97ae51396ccaa9ca2acb469aef80094ae8.zip
Add initial files from envbot v0.1-beta1
Diffstat (limited to 'modules/m_quote.sh')
-rw-r--r--modules/m_quote.sh85
1 files changed, 85 insertions, 0 deletions
diff --git a/modules/m_quote.sh b/modules/m_quote.sh
new file mode 100644
index 0000000..51c4752
--- /dev/null
+++ b/modules/m_quote.sh
@@ -0,0 +1,85 @@
+#!/bin/bash
+# -*- coding: utf-8 -*-
+###########################################################################
+# #
+# envbot - an IRC bot in bash #
+# Copyright (C) 2007-2008 EmErgE <halt.system@gmail.com> #
+# Copyright (C) 2007-2008 Arvid Norlander #
+# #
+# This program is free software: you can redistribute it and/or modify #
+# it under the terms of the GNU General Public License as published by #
+# the Free Software Foundation, either version 3 of the License, or #
+# (at your option) any later version. #
+# #
+# This program is distributed in the hope that it will be useful, #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
+# GNU General Public License for more details. #
+# #
+# You should have received a copy of the GNU General Public License #
+# along with this program. If not, see <http://www.gnu.org/licenses/>. #
+# #
+###########################################################################
+#---------------------------------------------------------------------
+## Quotes module
+#---------------------------------------------------------------------
+
+module_quote_INIT() {
+ modinit_API='2'
+ modinit_HOOKS='after_load'
+ commands_register "$1" 'quote' || return 1
+ helpentry_module_quote_description="Provides command for random quotes from a file."
+
+ helpentry_quote_quote_syntax=''
+ helpentry_quote_quote_description='Return a random quote.'
+}
+
+module_quote_UNLOAD() {
+ unset module_quote_load
+ unset module_quote_quotes
+}
+
+module_quote_REHASH() {
+ module_quote_load
+}
+
+#---------------------------------------------------------------------
+## Load quotes from file
+## @Type Private
+#---------------------------------------------------------------------
+module_quote_load() {
+ local i=0 line
+ unset module_quote_quotes
+ if [[ -z "$config_module_quotes_file" ]]; then
+ log_error "quotes module: You need to set config_module_quotes_file in your config!"
+ return 1
+ elif [[ -r "$config_module_quotes_file" ]]; then
+ local IFS=$'\n'
+ module_quote_quotes=( $(<"${config_module_quotes_file}") )
+ unset IFS
+ log_info 'Loaded Quotes.'
+ return 0
+ else
+ log_error "quotes module: Quotes failed to load: Cannot load \"$config_module_quotes_file\". File doesn't exist."
+ return 1
+ fi
+}
+
+module_quote_after_load() {
+ # Return code from last command in a function
+ # will be return code for the function by default.
+ module_quote_load
+}
+
+module_quote_handler_quote() {
+ local sender="$1"
+ local channel="$2"
+ # If it isn't in a channel send message back to person who send it,
+ # otherwise send in channel
+ if ! [[ $2 =~ ^# ]]; then
+ parse_hostmask_nick "$sender" 'channel'
+ fi
+ local number="$RANDOM"
+ (( number %= ${#module_quote_quotes[*]} ))
+ send_msg "$channel" "${module_quote_quotes[$number]}"
+}