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
|
|
|
|
|
2019-09-01 20:01:18 +02:00
|
|
|
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 {
|
|
|
|
my ($self, %conf) = @_;
|
|
|
|
$self->{pbot}->{commands}->register(sub { return $self->pd(@_)}, "pd", 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub unload {
|
|
|
|
my $self = shift;
|
2019-05-09 06:06:10 +02:00
|
|
|
$self->{pbot}->{commands}->unregister("pd");
|
2017-09-04 05:46:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub pd {
|
|
|
|
my $self = shift;
|
|
|
|
my ($from, $nick, $user, $host, $arguments) = @_;
|
2019-06-07 06:46:00 +02:00
|
|
|
my ($seconds, $error) = $self->{pbot}->{parsedate}->parsedate($arguments);
|
2017-09-04 05:46:34 +02:00
|
|
|
return $error if defined $error;
|
2019-06-07 06:46:00 +02:00
|
|
|
return duration $seconds;
|
2017-09-04 05:46:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|