]> ruin.nu Git - NDIRC.git/blob - Command.pm
Need to send a real value to execute when the role isn't available
[NDIRC.git] / Command.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 package NDIRC::Command;
21 use strict;
22 use warnings;
23
24 use Moose;
25
26 has acl => (
27         is => 'ro',
28         isa => 'ArrayRef[Str]',
29         predicate => 'has_acl',
30 );
31
32 has type => (
33         is => 'ro',
34         isa => 'ArrayRef[Str]',
35         default => sub { ['pub'] },
36 );
37
38 has help => (
39         is => 'ro',
40         isa => 'ArrayRef[Str]',
41         default => sub{ ['No help for this command'] },
42 );
43
44 has name => (
45         is => 'ro',
46         isa => 'Str',
47         default => 'No help for this command',
48 );
49
50 has func => (
51         is => 'ro',
52         isa => 'CodeRef',
53         required => 1,
54 );
55
56 sub execute {
57         my ($self,$c,$args) = @_;
58         $self->func->(@_);
59 }
60
61 1;