pbot/PBot/Plugins/ParseDate.pm

44 lines
1.1 KiB
Perl
Raw Normal View History

2017-09-04 05:46:34 +02:00
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Just a quick interface to test/play with PBot::Utils::ParseDate
package PBot::Plugins::ParseDate;
use warnings;
use strict;
use Carp ();
use Time::Duration qw/duration/;
sub new {
Carp::croak("Options to " . __FILE__ . " should be key/value pairs, not hash reference") if ref $_[1] eq 'HASH';
my ($class, %conf) = @_;
my $self = bless {}, $class;
$self->initialize(%conf);
return $self;
}
sub initialize {
my ($self, %conf) = @_;
$self->{pbot} = delete $conf{pbot} // Carp::croak("Missing pbot reference to " . __FILE__);
$self->{pbot}->{commands}->register(sub { return $self->pd(@_)}, "pd", 0);
}
sub unload {
my $self = shift;
$self->{pbot}->{commands}->unregister("pd");
2017-09-04 05:46:34 +02:00
}
sub pd {
my $self = shift;
my ($from, $nick, $user, $host, $arguments) = @_;
my ($seconds, $error) = $self->{pbot}->{parsedate}->parsedate($arguments);
2017-09-04 05:46:34 +02:00
return $error if defined $error;
return duration $seconds;
2017-09-04 05:46:34 +02:00
}
1;