/usr/share/perl5/Net/XMPP.pm is in libnet-xmpp-perl 1.02-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 | ###############################################################################
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
# Copyright (C) 1998-2004 Jabber Software Foundation http://jabber.org/
#
###############################################################################
package Net::XMPP;
=head1 NAME
Net::XMPP - XMPP Perl Library
=head1 SYNOPSIS
Net::XMPP provides a Perl user with access to the Extensible
Messaging and Presence Protocol (XMPP).
For more information about XMPP visit:
http://www.xmpp.org
=head1 DESCRIPTION
Net::XMPP is a convenient tool to use for any perl script that would
like to utilize the XMPP Instant Messaging protocol. While not a
client in and of itself, it provides all of the necessary back-end
functions to make a CGI client or command-line perl client feasible
and easy to use. Net::XMPP is a wrapper around the rest of the
official Net::XMPP::xxxxxx packages.
There is are example scripts in the example directory that provide you
with examples of very simple XMPP programs.
NOTE: The parser that XML::Stream::Parser provides, as are most Perl
parsers, is synchronous. If you are in the middle of parsing a packet
and call a user defined callback, the Parser is blocked until your
callback finishes. This means you cannot be operating on a packet,
send out another packet and wait for a response to that packet. It
will never get to you. Threading might solve this, but as of this
writing threading in Perl is not quite up to par yet. This issue will
be revisted in the future.
=head1 EXAMPLES
use Net::XMPP;
my $client = new Net::XMPP::Client();
=head1 METHODS
The Net::XMPP module does not define any methods that you will call
directly in your code. Instead you will instantiate objects that call
functions from this module to do work. The three main objects that
you will work with are the Message, Presence, and IQ modules. Each one
corresponds to the Jabber equivalent and allows you get and set all
parts of those packets.
There are a few functions that are the same across all of the objects:
=head2 Retrieval functions
GetXML() - returns the XML string that represents the data contained
in the object.
$xml = $obj->GetXML();
GetChild() - returns an array of Net::XMPP::Stanza objects
GetChild(namespace) that represent all of the stanzas in the object
that are namespaced. If you specify a namespace
then only stanza objects with that XMLNS are
returned.
@xObj = $obj->GetChild();
@xObj = $obj->GetChild("my:namespace");
GetTag() - return the root tag name of the packet.
GetTree() - return the XML::Stream::Node object that contains the data.
See XML::Stream::Node for methods you can call on this
object.
=head2 Creation functions
NewChild(namespace) - creates a new Net::XMPP::Stanza object with
NewChild(namespace,tag) the specified namespace and root tag of
whatever the namespace says its root tag
should be. Optionally you may specify
another root tag if the default is not
desired, or the namespace requres you to set
one.
$xObj = $obj->NewChild("my:namespace");
$xObj = $obj->NewChild("my:namespace","foo");
ie. <foo xmlns='my:namespace'...></foo>
InsertRawXML(string) - puts the specified string raw into the XML
packet that you call this on.
$message->InsertRawXML("<foo></foo>")
<message...>...<foo></foo></message>
$x = $message->NewChild(..);
$x->InsertRawXML("test");
$query = $iq->GetChild(..);
$query->InsertRawXML("test");
ClearRawXML() - removes the raw XML from the packet.
=head2 Removal functions
RemoveChild() - removes all of the namespaces child elements
RemoveChild(namespace) from the object. If a namespace is provided,
then only the children with that namespace are
removed.
=head2 Test functions
DefinedChild() - returns 1 if there are any known namespaced
DefinedChild(namespace) stanzas in the packet, 0 otherwise.
Optionally you can specify a namespace and
determine if there are any stanzas with that
namespace.
$test = $obj->DefinedChild();
$test = $obj->DefinedChild("my:namespace");
=head1 PACKAGES
For more information on each of these packages, please see the man page
for each one.
=head2 Net::XMPP::Client
This package contains the code needed to communicate with an XMPP
server: login, wait for messages, send messages, and logout. It uses
XML::Stream to read the stream from the server and based on what kind
of tag it encounters it calls a function to handle the tag.
=head2 Net::XMPP::Protocol
A collection of high-level functions that Client uses to make their
lives easier. These methods are inherited by the Client.
=head2 Net::XMPP::JID
The XMPP IDs consist of three parts: user id, server, and resource.
This module gives you access to those components without having to
parse the string yourself.
=head2 Net::XMPP::Message
Everything needed to create and read a <message/> received from the
server.
=head2 Net::XMPP::Presence
Everything needed to create and read a <presence/> received from the
server.
=head2 Net::XMPP::IQ
IQ is a wrapper around a number of modules that provide support for
the various Info/Query namespaces that XMPP recognizes.
=head2 Net::XMPP::Stanza
This module represents a namespaced stanza that is used to extend a
<message/>, <presence/>, and <iq/>.
The man page for Net::XMPP::Stanza contains a listing of all supported
namespaces, and the methods that are supported by the objects that
represent those namespaces.
=head2 Net::XMPP::Namespaces
XMPP allows for any stanza to be extended by any bit of XML. This
module contains all of the internals for defining the XMPP based
extensions defined by the IETF. The documentation for this module
explains more about how to add your own custom namespace and have it
be supported.
=head1 AUTHOR
Ryan Eatmon
Currently maintained by Eric Hacker.
=head1 BUGS
Probably. There is at least one issue with XLM::Stream providing different node
structures depending on how the node is created. Net::XMPP should now be able to
handle this, but who knows what else lurks.
=head1 COPYRIGHT
This module is free software, you can redistribute it and/or modify it
under the LGPL.
=cut
require 5.005;
use strict;
use XML::Stream 1.22 qw( Node );
use Time::Local;
use Carp;
use Digest::SHA;
use Authen::SASL;
use MIME::Base64;
use POSIX;
use vars qw( $AUTOLOAD $VERSION $PARSING );
$VERSION = "1.02";
use Net::XMPP::Debug;
use Net::XMPP::JID;
use Net::XMPP::Namespaces;
use Net::XMPP::Stanza;
use Net::XMPP::Message;
use Net::XMPP::IQ;
use Net::XMPP::Presence;
use Net::XMPP::Protocol;
use Net::XMPP::Client;
##############################################################################
#
# printData - debugging function to print out any data structure in an
# organized manner. Very useful for debugging XML::Parser::Tree
# objects. This is a private function that will only exist in
# in the development version.
#
##############################################################################
sub printData
{
print &sprintData(@_);
}
##############################################################################
#
# sprintData - debugging function to build a string out of any data structure
# in an organized manner. Very useful for debugging
# XML::Parser::Tree objects and perl hashes of hashes.
#
# This is a private function.
#
##############################################################################
sub sprintData
{
return &XML::Stream::sprintData(@_);
}
##############################################################################
#
# GetTimeStamp - generic funcion for getting a timestamp.
#
##############################################################################
sub GetTimeStamp
{
my($type,$time,$length) = @_;
return "" if (($type ne "local") && ($type ne "utc") && !($type =~ /^(local|utc)delay(local|utc|time)$/));
$length = "long" unless defined($length);
my ($sec,$min,$hour,$mday,$mon,$year,$wday);
if ($type =~ /utcdelay/)
{
($year,$mon,$mday,$hour,$min,$sec) = ($time =~ /^(\d\d\d\d)(\d\d)(\d\d)T(\d\d)\:(\d\d)\:(\d\d)$/);
$mon--;
($type) = ($type =~ /^utcdelay(.*)$/);
$time = timegm($sec,$min,$hour,$mday,$mon,$year);
}
if ($type =~ /localdelay/)
{
($year,$mon,$mday,$hour,$min,$sec) = ($time =~ /^(\d\d\d\d)(\d\d)(\d\d)T(\d\d)\:(\d\d)\:(\d\d)$/);
$mon--;
($type) = ($type =~ /^localdelay(.*)$/);
$time = timelocal($sec,$min,$hour,$mday,$mon,$year);
}
return $time if ($type eq "time");
($sec,$min,$hour,$mday,$mon,$year,$wday) =
localtime(((defined($time) && ($time ne "")) ? $time : time)) if ($type eq "local");
($sec,$min,$hour,$mday,$mon,$year,$wday) =
gmtime(((defined($time) && ($time ne "")) ? $time : time)) if ($type eq "utc");
return sprintf("%d%02d%02dT%02d:%02d:%02d",($year + 1900),($mon+1),$mday,$hour,$min,$sec) if ($length eq "stamp");
$wday = ('Sun','Mon','Tue','Wed','Thu','Fri','Sat')[$wday];
my $month = ('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec')[$mon];
$mon++;
return sprintf("%3s %3s %02d, %d %02d:%02d:%02d",$wday,$month,$mday,($year + 1900),$hour,$min,$sec) if ($length eq "long");
return sprintf("%3s %d/%02d/%02d %02d:%02d",$wday,($year + 1900),$mon,$mday,$hour,$min) if ($length eq "normal");
return sprintf("%02d:%02d:%02d",$hour,$min,$sec) if ($length eq "short");
return sprintf("%02d:%02d",$hour,$min) if ($length eq "shortest");
}
##############################################################################
#
# GetHumanTime - convert seconds, into a human readable time string.
#
##############################################################################
sub GetHumanTime
{
my $seconds = shift;
my $minutes = 0;
my $hours = 0;
my $days = 0;
my $weeks = 0;
while ($seconds >= 60) {
$minutes++;
if ($minutes == 60) {
$hours++;
if ($hours == 24) {
$days++;
if ($days == 7) {
$weeks++;
$days -= 7;
}
$hours -= 24;
}
$minutes -= 60;
}
$seconds -= 60;
}
my $humanTime;
$humanTime .= "$weeks week " if ($weeks == 1);
$humanTime .= "$weeks weeks " if ($weeks > 1);
$humanTime .= "$days day " if ($days == 1);
$humanTime .= "$days days " if ($days > 1);
$humanTime .= "$hours hour " if ($hours == 1);
$humanTime .= "$hours hours " if ($hours > 1);
$humanTime .= "$minutes minute " if ($minutes == 1);
$humanTime .= "$minutes minutes " if ($minutes > 1);
$humanTime .= "$seconds second " if ($seconds == 1);
$humanTime .= "$seconds seconds " if ($seconds > 1);
$humanTime = "none" if ($humanTime eq "");
return $humanTime;
}
1;
|