aboutsummaryrefslogtreecommitdiff
path: root/Plugin/Timezone.pm
blob: 1e528aebe0d62432d207a976557fb45990f6d2bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package Plugin::Timezone;

use strict;
use warnings;

use DateTime;
use IdaliusConfig qw/assert_dict/;

my $config;

sub configure {
	my $self = shift;
	my $cmdref = shift;
	shift; # run_command
	$config = shift;

	IdaliusConfig::assert_dict($config, $self, "timezone");

	$cmdref->($self, "time", sub { $self->time(@_); } );

	return $self;
}

sub time {
	my ($self, $irc, $logger, $who, $where, $ided, $rest, @arguments) = @_;

	my $requester = (split /!/, $who)[0];
	my @known_zones = (keys %{$config->{timezone}});

	return "Syntax: time [nick]" unless @arguments == 1;

	my $nick = $arguments[0];
	my ($case_nick) = grep {/^$nick$/i} @known_zones;
	if ($case_nick) {
		my $d = DateTime->now();
		$d->set_time_zone($config->{timezone}->{$case_nick});
		my $timestr = $d->strftime("%H:%M on %a %d %b, %Y (%Z)");
		return "$requester: $nick\'s clock reads $timestr";
	} else {
		return "$requester: I don't know what timezone $nick is in";
	}
}
1;