summaryrefslogtreecommitdiffstats
path: root/lib/IM/Engine/Plugin/Commands/Command.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/IM/Engine/Plugin/Commands/Command.pm')
-rw-r--r--lib/IM/Engine/Plugin/Commands/Command.pm53
1 files changed, 53 insertions, 0 deletions
diff --git a/lib/IM/Engine/Plugin/Commands/Command.pm b/lib/IM/Engine/Plugin/Commands/Command.pm
new file mode 100644
index 0000000..5b6b46d
--- /dev/null
+++ b/lib/IM/Engine/Plugin/Commands/Command.pm
@@ -0,0 +1,53 @@
+package IM::Engine::Plugin::Commands::Command;
+use IM::Engine::Plugin::Commands::OO;
+
+has help => (
+ is => 'ro',
+ isa => 'Str',
+ default => 'This command has no help text!',
+ command => 1,
+ needs_init => 0,
+);
+
+has is_active => (
+ is => 'rw',
+ isa => 'Bool',
+ command => 1,
+ needs_init => 0,
+);
+
+has _ime_plugin => (
+ is => 'ro',
+ isa => 'IM::Engine::Plugin',
+ required => 1,
+ weak_ref => 1,
+);
+
+sub default {
+ confess "Commands must implement a default method";
+}
+
+command cmdlist => sub {
+ my $self = shift;
+ my @commands;
+ for my $method ($self->meta->get_all_methods) {
+ push @commands, $method->name
+ if $method->meta->can('does_role')
+ && $method->meta->does_role('IM::Engine::Plugin::Commands::Trait::Method::Command');
+ }
+ return \@commands;
+}, needs_init => 0,
+ formatter => sub {
+ my $list = shift;
+ return join ' ', sort map { '-' . $_ } @$list
+ };
+
+sub say {
+ my $self = shift;
+ $self->_ime_plugin->say(@_);
+}
+
+__PACKAGE__->meta->make_immutable;
+no IM::Engine::Plugin::Commands::OO;
+
+1;