aboutsummaryrefslogtreecommitdiff
path: root/plugin/tittilate.pm
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/tittilate.pm')
-rw-r--r--plugin/tittilate.pm37
1 files changed, 0 insertions, 37 deletions
diff --git a/plugin/tittilate.pm b/plugin/tittilate.pm
deleted file mode 100644
index 4df6b07..0000000
--- a/plugin/tittilate.pm
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/env perl
-
-package plugin::tittilate;
-
-use strict;
-use warnings;
-
-my %config;
-
-sub configure {
- my $self = $_[0];
- my $cmdref = $_[1];
- my $cref = $_[2];
- %config = %$cref;
- return $self;
-}
-
-sub message {
- my ($self, $logger, $me, $who, $where, $raw_what, $what, $irc) = @_;
- my $gathered = "";
- my @expressions = (keys %{$config{triggers}});
- my $expression = join '|', @expressions;
- while ($what =~ /($expression)/gi) {
- my $matched = $1;
- my $key;
- # figure out which key matched
- foreach (@expressions) {
- if ($matched =~ /$_/i) {
- $key = $_;
- last;
- }
- }
- $gathered .= $config{triggers}->{$key};
- }
- return $gathered;
-}
-1;