]> ruin.nu Git - NDIRC.git/blob - Commands/Basic.pm
Use discord channel id
[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         type => 'help',
29 }, class extends NDIRC::Command {
30         method execute ($c,$command) {
31                 unless($command){
32                         my @commands;
33                         for (sort keys %{$c->disp->commands}){
34                                 next unless $c->disp->has_command($_,$c->channel);
35                                 my $acl = $c->disp->commands->{$_}->acl;
36                                 next if $acl && !$c->check_user_roles($acl);
37
38                                 push @commands,$_;
39                         }
40                         $c->reply(join ', ', @commands);
41                 }elsif (exists $c->disp->commands->{$command}){
42                         $c->reply($c->disp->commands->{$command}->help);
43                 }
44         }
45 };
46
47 command help => {
48         help => q(Prints basic help),
49         type => 'help',
50 }, class extends NDIRC::Command {
51         method execute ($c,$command) {
52
53                 $c->reply("Use .commands <command> to show help about a specific command. "
54                         . "Use .commands to list the diffenrent commands you have access to in this channel. "
55                         . "Instead of . you can use ! to get reply in pm or ~ to get reply in channel.");
56         }
57 };
58
59 command say => {
60         help => q(.say target message | sends message to target),
61         type => q(pm),
62         acl => q(irc_say),
63 }, class extends NDIRC::Command {
64         method execute ($c,$msg) {
65                 my ($target,$message) = $msg =~ /^(\S+)\s+(.+)$/ or die 'ARGS';
66
67                 $c->message(privmsg => $target => $message );
68         }
69 };
70
71 command cmd => {
72         help => q(.cmd command args | run a given irc command),
73         type => q(pm),
74         acl  => q(irc_cmd),
75 }, class extends NDIRC::Command {
76         method execute ($c,$msg) {
77
78                 $c->command(split /\s/, $msg);
79         }
80 };
81
82 command anon => {
83         help => q(syntax: .anon nick message),
84         type => q(anon),
85         acl => q(irc_anon),
86 }, class extends NDIRC::Command {
87         method execute($c,$msg) {
88                 my ($target,$mess) = $msg =~ /^(\S+) (.*)$/ or die 'ARGS';
89
90                 $c->message(privmsg => $target, "<b>$mess</b> <c04>(reply with /msg "
91                         .$c->channel.")</c>");
92                 $c->message(privmsg => $c->channel, "<c03>$target << $mess</c>");
93         }
94 };
95
96
97 1;
98