From b935c431024f0eb5eac13c8ebf60feefd0367048 Mon Sep 17 00:00:00 2001 From: Edward Rudd Date: Mon, 15 Feb 2010 17:30:44 +0000 Subject: import version 0.02 --- (limited to 'lib') diff --git a/lib/DJabberd/Plugin/EntityTime.pm b/lib/DJabberd/Plugin/EntityTime.pm new file mode 100644 index 0000000..b59cff6 --- /dev/null +++ b/lib/DJabberd/Plugin/EntityTime.pm @@ -0,0 +1,102 @@ +package DJabberd::Plugin::EntityTime; + +use warnings; +use strict; +use base 'DJabberd::Plugin'; + +use POSIX qw(strftime); + +our $logger = DJabberd::Log->get_logger(); + +=head1 NAME + +DJabberd::Plugin::EntityTime - Implements XEP-0090 and XEP-0202 + +=head1 VERSION + +Version 0.02 + +=cut + +our $VERSION = '0.02'; + +=head1 SYNOPSIS + +Implements XEP-0090 and XEP-0202 + + + + + +=cut + +=head2 register($self, $vhost) + +Register the vhost with the module. + +=cut + +sub register { + my ($self,$vhost) = @_; + my $private_cb = sub { + my ($vh, $cb, $iq) = @_; + unless ($iq->isa("DJabberd::IQ") and defined $iq->to) { + $cb->decline; + return; + } + unless ($iq->to eq $vhost->{server_name}) { + $cb->decline; + return; + } + if ($iq->signature eq 'get-{jabber:iq:time}query') { + $self->_get_time90($vh, $iq); + $cb->stop_chain; + return; + } elsif ($iq->signature eq 'get-{urn:xmpp:time}time') { + $self->_get_time202($vh, $iq); + $cb->stop_chain; + return; + } + $cb->decline; + }; + $vhost->register_hook("switch_incoming_client",$private_cb); + $vhost->register_hook("switch_incoming_server",$private_cb); + $vhost->add_feature("jabber:iq:time"); + $vhost->add_feature("urn:xmpp:time"); +} + +sub _get_time90 { + my ($self, $vh, $iq) = @_; + $logger->info('Getting time from : '.$iq->from_jid); + $iq->send_reply('result',qq() + .''.strftime("%Y%m%dT%H:%M:%S",gmtime).'' + .''.gmtime().'' + .''.strftime("%Z",gmtime).'' + .qq() ); +} + +sub _get_time202 { + my ($self, $vh, $iq) = @_; + $logger->info('Getting time from : '.$iq->from_jid); + my $zone = strftime("%z",gmtime); + $zone =~ s/(\d\d)(\d\d)$/$1:$2/; + $iq->send_reply('result',qq() ); +} + +=head1 AUTHOR + +Edward Rudd, C<< >> + +=head1 COPYRIGHT & LICENSE + +Copyright 2007 Edward Rudd, all rights reserved. + +This program is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. + +=cut + +1; # End of DJabberd::Plugin::EntityTime -- cgit v0.9.2