]> ruin.nu Git - NDIRC.git/blob - Commands/Basic.pm
1249f201586bc6155be184807f3ddee1697196bb
[NDIRC.git] / Commands / Basic.pm
1 #**************************************************************************
2 #   Copyright (C) 2009 by Michael Andreen <harvATruinDOTnu>               *
3 #                                                                         *
4 #   This program is free software; you can redistribute it and/or modify  *
5 #   it under the terms of the GNU General Public License as published by  *
6 #   the Free Software Foundation; either version 2 of the License, or     *
7 #   (at your option) any later version.                                   *
8 #                                                                         *
9 #   This program is distributed in the hope that it will be useful,       *
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12 #   GNU General Public License for more details.                          *
13 #                                                                         *
14 #   You should have received a copy of the GNU General Public License     *
15 #   along with this program; if not, write to the                         *
16 #   Free Software Foundation, Inc.,                                       *
17 #   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
18 #**************************************************************************/
19
20 use strict;
21 use warnings;
22
23 use MooseX::Declare;
24 use NDIRC::Dispatcher;
25
26 command commands => {
27         help => q(commands <command> | Gives help about all available commands or lists all commands available in the current channel),
28 }, class extends NDIRC::Command {
29         method execute ($c,$command) {
30                 unless($command){
31                         my @commands;
32                         for (sort keys %{$c->disp->commands}){
33                                 next unless $c->disp->has_command($_,$c->channel);
34                                 my $acl = $c->disp->commands->{$_}->acl;
35                                 next if $acl && !$c->check_user_roles($acl);
36
37                                 push @commands,$_;
38                         }
39                         $c->reply(join ', ', @commands);
40                 }elsif (exists $c->disp->commands->{$command}){
41                         for (@{$c->disp->commands->{$command}->help}){
42                                 $c->reply($_);
43                         }
44                 }
45         }
46 };
47
48 command help => {
49         help => q(Prints basic help),
50         type => 'help',
51 }, class extends NDIRC::Command {
52         method execute ($c,$command) {
53
54                 $c->reply("Use .commands <command> to show help about a specific command. "
55                         . "Use .commands to list the diffenrent commands you have access to in this channel. "
56                         . "Instead of . you can use ! to get reply in pm or ~ to get reply in channel.");
57         }
58 };
59
60 command say => {
61         help => q(.say target message | sends message to target),
62         type => q(pm),
63         acl => q(irc_say),
64 }, class extends NDIRC::Command {
65         method execute ($c,$msg) {
66                 my ($target,$message) = $msg =~ /^(\S+)\s+(.+)$/ or die 'ARGS';
67
68                 $c->message(privmsg => $target => $message );
69         }
70 };
71
72 command cmd => {
73         help => q(.cmd command args | run a given irc command),
74         type => q(pm),
75         acl  => q(irc_cmd),
76 }, class extends NDIRC::Command {
77         method execute ($c,$msg) {
78
79                 $c->command(split /\s/, $msg);
80         }
81 };
82
83 1;
84