pbot/Plugins/ParseDate.pm

34 lines
870 B
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 Plugins::ParseDate;
2020-02-09 04:48:05 +01:00
use parent 'Plugins::Plugin';
2017-09-04 05:46:34 +02:00
2020-02-09 04:48:05 +01:00
use warnings; use strict;
2019-07-11 03:40:53 +02:00
use feature 'unicode_strings';
2017-09-04 05:46:34 +02:00
use Time::Duration qw/duration/;
sub initialize {
2020-02-15 23:38:32 +01:00
my ($self, %conf) = @_;
$self->{pbot}->{commands}->register(sub { return $self->pd(@_) }, "pd", 0);
2017-09-04 05:46:34 +02:00
}
sub unload {
2020-02-15 23:38:32 +01:00
my $self = shift;
$self->{pbot}->{commands}->unregister("pd");
2017-09-04 05:46:34 +02:00
}
sub pd {
2020-02-15 23:38:32 +01:00
my $self = shift;
my ($from, $nick, $user, $host, $arguments) = @_;
my ($seconds, $error) = $self->{pbot}->{parsedate}->parsedate($arguments);
return $error if defined $error;
return duration $seconds;
2017-09-04 05:46:34 +02:00
}
1;