aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2017-03-27 15:21:39 +1300
committerDavid Phillips <david@sighup.nz>2017-03-27 15:21:43 +1300
commitb0f83d8e448c6ab65c6aff6050e63b2c8c7c2b9d (patch)
tree51e0f6ae4ebaccb3d9f83a371c5ff40660d71df4
parent8d54e0108503016811b4f4626bb476410b206d21 (diff)
downloadidalius-b0f83d8e448c6ab65c6aff6050e63b2c8c7c2b9d.tar.xz
Correct coding style
-rwxr-xr-xidalius.pl23
-rw-r--r--sb_config.pm21
2 files changed, 35 insertions, 9 deletions
diff --git a/idalius.pl b/idalius.pl
index cd4bf16..dbfb6d2 100755
--- a/idalius.pl
+++ b/idalius.pl
@@ -33,7 +33,16 @@ $config{password} and $irc->plugin_add(
POE::Session->create(
package_states => [
- main => [ qw(_default _start irc_001 irc_kick irc_ctcp_action irc_public irc_msg irc_nick irc_disconnected ) ],
+ main => [ qw(
+ _default
+ _start
+ irc_001
+ irc_kick
+ irc_ctcp_action
+ irc_public
+ irc_msg
+ irc_nick
+ irc_disconnected ) ],
],
heap => { irc => $irc },
);
@@ -99,7 +108,7 @@ sub irc_public {
my $me = $irc->nick_name;
- my $collected_response = "";
+ my $gathered = "";
my @expressions = (keys %{$config{triggers}});
my $expression = join '|', @expressions;
while ($what =~ /($expression)/gi) {
@@ -112,9 +121,9 @@ sub irc_public {
last;
}
}
- $collected_response .= $config{triggers}->{$key};
+ $gathered .= $config{triggers}->{$key};
}
- $irc->yield(privmsg => $channel => $collected_response) if $collected_response;
+ $irc->yield(privmsg => $channel => $gathered) if $gathered;
return;
}
@@ -146,7 +155,8 @@ sub irc_msg {
my @channels = split /\s+/, $chan_str;
$irc->yield(part => @channels => $reason);
} else {
- $irc->yield(privmsg => $nick => "Syntax: part <channel1> [channel2 ...] [partmsg]");
+ $irc->yield(privmsg => $nick =>
+ "Syntax: part <channel1> [channel2 ...] [partmsg]");
}
}
if ($what =~ /^join\s/) {
@@ -155,7 +165,8 @@ sub irc_msg {
my @channels = split /\s+/, $what;
$irc->yield(join => $_) for @channels;
} else {
- $irc->yield(privmsg => $nick => "Syntax: join <channel1> [channel2 ...]");
+ $irc->yield(privmsg => $nick =>
+ "Syntax: join <channel1> [channel2 ...]");
}
}
if ($what =~ /^say\s/) {
diff --git a/sb_config.pm b/sb_config.pm
index 39e92aa..a6ac9cb 100644
--- a/sb_config.pm
+++ b/sb_config.pm
@@ -8,9 +8,24 @@ use Config::Tiny;
sub parse_config
{
- my @scalar_configs = ('nick', 'username', 'ircname', 'server', 'port', 'usessl', 'password', 'must_id', 'quit_msg', 'user', 'group');
- my @list_configs = ('channels', 'ignore', 'admins');
- my @optional_configs = ('password');
+ my @scalar_configs = (
+ 'nick',
+ 'username',
+ 'ircname',
+ 'server',
+ 'port',
+ 'usessl',
+ 'password',
+ 'must_id',
+ 'quit_msg',
+ 'user',
+ 'group');
+ my @list_configs = (
+ 'channels',
+ 'ignore',
+ 'admins');
+ my @optional_configs = (
+ 'password');
my $file = $_[0];
my %built_config;
my $config = Config::Tiny->read($file);