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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
|
package AnyEvent::XMPP::Ext::Version;
use AnyEvent::XMPP::Namespaces qw/xmpp_ns/;
use AnyEvent::XMPP::Util qw/simxml/;
use AnyEvent::XMPP::Ext;
use strict;
our @ISA = qw/AnyEvent::XMPP::Ext/;
=head1 NAME
AnyEvent::XMPP::Ext::Version - Software version
=head1 SYNOPSIS
use AnyEvent::XMPP::Ext::Version;
my $version = AnyEvent::XMPP::Ext::Version->new;
$version->set_name ("My client");
$version->set_version ("0.3");
$version->set_os (`uname -a`);
$disco->enable_feature ($version->disco_feature);
=head1 DESCRIPTION
This module defines an extension to provide the abilities
to answer to software version requests and to request software
version from other entities.
See also XEP-0092
This class is derived from L<AnyEvent::XMPP::Ext> and can be added as extension to
objects that implement the L<AnyEvent::XMPP::Extendable> interface or derive from
it.
=head1 METHODS
=over 4
=item B<new (%args)>
Creates a new software version handle.
=cut
sub new {
my $this = shift;
my $class = ref($this) || $this;
my $self = bless { @_ }, $class;
$self->init;
$self
}
sub disco_feature { xmpp_ns ('version') }
sub init {
my ($self) = @_;
$self->set_name ("AnyEvent::XMPP");
$self->set_version ("$AnyEvent::XMPP::VERSION");
$self->{cb_id} = $self->reg_cb (
iq_get_request_xml => sub {
my ($self, $con, $node, $handled) = @_;
if ($self->handle_query ($con, $node)) {
$$handled = 1;
}
}
);
}
=item B<set_name ($name)>
This method sets the software C<$name> string, the default is "AnyEvent::XMPP".
=cut
sub set_name {
my ($self, $name) = @_;
$self->{name} = $name;
}
=item B<set_version ($version)>
This method sets the software C<$version> string that is replied.
The default is C<$AnyEvent::XMPP::VERSION>.
=cut
sub set_version {
my ($self, $version) = @_;
$self->{version} = $version;
}
=item B<set_os ($os)>
This method sets the operating system string C<$os>. If you pass
undef the string will be removed.
The default is no operating system string at all.
You may want to pass something like this:
$version->set_os (`uname -s -r -m -o`);
=cut
sub set_os {
my ($self, $os) = @_;
$self->{os} = $os;
delete $self->{os} unless defined $os;
}
sub version_result {
my ($self) = @_;
(
{ name => 'name' , childs => [ $self->{name} ] },
{ name => 'version', childs => [ $self->{version} ] },
(defined $self->{os}
? { name => 'os', childs => [ $self->{os} ] }
: ()
),
)
}
sub handle_query {
my ($self, $con, $node) = @_;
if (my ($q) = $node->find_all ([qw/version query/])) {
my @result = $self->version_result;
$con->reply_iq_result (
$node, {
defns => 'version',
node => {
ns => 'version', name => 'query', childs => [
@result
]
}
}
);
return 1
}
()
}
sub _version_from_node {
my ($node) = @_;
my (@vers) = $node->find_all ([qw/version query/], [qw/version version/]);
my (@name) = $node->find_all ([qw/version query/], [qw/version name/]);
my (@os) = $node->find_all ([qw/version query/], [qw/version os/]);
my $v = {};
$v->{jid} = $node->attr ('from');
$v->{version} = $vers[0]->text if @vers;
$v->{name} = $name[0]->text if @name;
$v->{os} = $os[0]->text if @os;
$v
}
=item B<request_version ($con, $dest, $cb)>
This method sends a version request to C<$dest> on the connection C<$con>.
C<$cb> is the callback that will be called if either an error occured or
the result was received. The callback will also be called after the default IQ
timeout for the connection C<$con>.
The second argument for the callback will be either undef if no error occured
or a L<AnyEvent::XMPP::Error::IQ> error.
The first argument will be a hash reference with the following fields:
=over 4
=item jid
The JID of the entity this version reply belongs to.
=item version
The software version string of the entity.
=item name
The software name of the entity.
=item os
The operating system of the entity, which might be undefined if none
was provided.
=back
Here an example of the structure of the hash reference:
{
jid => 'juliet@capulet.com/balcony',
name => 'Exodus',
version => '0.7.0.4',
os => 'Windows-XP 5.01.2600',
}
=cut
sub request_version {
my ($self, $con, $dest, $cb) = @_;
$con->send_iq (get => {
defns => 'version',
node => { ns => 'version', name => 'query' }
}, sub {
my ($n, $e) = @_;
if ($e) {
$cb->(undef, $e);
} else {
$cb->(_version_from_node ($n), undef);
}
}, to => $dest);
}
sub DESTROY {
my ($self) = @_;
$self->unreg_cb ($self->{cb_id})
}
=back
=head1 AUTHOR
Robin Redeker, C<< <elmex at ta-sa.org> >>, JID: C<< <elmex at jabber.org> >>
=head1 COPYRIGHT & LICENSE
Copyright 2007, 2008 Robin Redeker, 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;
|