/usr/share/perl5/XML/Feed.pm is in libxml-feed-perl 0.46+dfsg-1.
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 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 | # $Id$
package XML::Feed;
use strict;
use base qw( Class::ErrorHandler );
use Feed::Find;
use URI::Fetch;
use LWP::UserAgent;
use Carp;
use Module::Pluggable search_path => "XML::Feed::Format",
require => 1,
sub_name => 'formatters';
our $VERSION = '0.46';
our $MULTIPLE_ENCLOSURES = 0;
our @formatters;
BEGIN {
@formatters = __PACKAGE__->formatters;
}
sub new {
my $class = shift;
my $format = shift || 'Atom';
my $format_class = 'XML::Feed::Format::' . $format;
eval "use $format_class";
Carp::croak("Unsupported format $format: $@") if $@;
my $feed = bless {}, join('::', __PACKAGE__, "Format", $format);
$feed->init_empty(@_) or return $class->error($feed->errstr);
$feed;
}
sub init_empty { 1 }
sub parse {
my $class = shift;
my($stream, $specified_format) = @_;
return $class->error("Stream parameter is required") unless $stream;
my $feed = bless {}, $class;
my $xml = '';
if (UNIVERSAL::isa($stream, 'URI')) {
my $ua = LWP::UserAgent->new;
$ua->env_proxy; # force allowing of proxies
my $res = URI::Fetch->fetch($stream, UserAgent => $ua)
or return $class->error(URI::Fetch->errstr);
return $class->error("This feed has been permanently removed")
if $res->status == URI::Fetch::URI_GONE();
$xml = $res->content;
} elsif (ref($stream) eq 'SCALAR') {
$xml = $$stream;
} elsif (ref($stream)) {
while (read($stream, my($chunk), 8192)) {
$xml .= $chunk;
}
} else {
open my $fh, $stream
or return $class->error("Can't open $stream: $!");
while (read $fh, my($chunk), 8192) {
$xml .= $chunk;
}
close $fh;
}
return $class->error("Can't get feed XML content from $stream")
unless $xml;
my $format;
if ($specified_format) {
$format = $specified_format;
} else {
$format = $feed->identify_format(\$xml) or return $class->error($feed->errstr);
}
my $format_class = join '::', __PACKAGE__, "Format", $format;
eval "use $format_class";
return $class->error("Unsupported format $format: $@") if $@;
bless $feed, $format_class;
$feed->init_string(\$xml) or return $class->error($feed->errstr);
$feed;
}
sub identify_format {
my $feed = shift;
my($xml) = @_;
foreach my $class (@formatters) {
my ($name) = ($class =~ m!([^:]+)$!);
# TODO ugly
my $tmp = $$xml;
return $name if eval { $class->identify(\$tmp) };
return $feed->error($@) if $@;
}
return $feed->error("Cannot detect feed type");
}
sub _get_first_tag {
my $class = shift;
my ($xml) = @_;
## Auto-detect feed type based on first element. This is prone
## to breakage, but then again we don't want to parse the whole
## feed ourselves.
my $tag;
while ($$xml =~ /<(\S+)/sg) {
(my $t = $1) =~ tr/a-zA-Z0-9:\-\?!//cd;
my $first = substr $t, 0, 1;
$tag = $t, last unless $first eq '?' || $first eq '!';
}
die ("Cannot find first element") unless $tag;
$tag =~ s/^.*://;
return $tag;
}
sub find_feeds {
my $class = shift;
my($uri) = @_;
my @feeds = Feed::Find->find($uri)
or return $class->error(Feed::Find->errstr);
@feeds;
}
sub convert {
my $feed = shift;
my($format) = @_;
my $new = XML::Feed->new($format);
for my $field (qw( title link description language author copyright modified generator )) {
my $val = $feed->$field();
next unless defined $val;
$new->$field($val);
}
for my $entry ($feed->entries) {
$new->add_entry($entry->convert($format));
}
$new;
}
sub splice {
my $feed = shift;
my($other) = @_;
my %ids = map { $_->id => 1 } $feed->entries;
for my $entry ($other->entries) {
$feed->add_entry($entry) unless $ids{$entry->id}++;
}
}
sub _convert_entry {
my $feed = shift;
my $entry = shift;
my $feed_format = ref($feed); $feed_format =~ s!^XML::Feed::Format::!!;
my $entry_format = ref($entry); $entry_format =~ s!^XML::Feed::Entry::Format::!!;
return $entry if $entry_format eq $feed_format;
return $entry->convert($feed_format);
}
sub base;
sub format;
sub title;
sub link;
sub self_link;
sub description;
sub language;
sub author;
sub copyright;
sub modified;
sub generator;
sub add_entry;
sub entries;
sub as_xml;
sub id;
sub tagline { shift->description(@_) }
sub items { $_[0]->entries }
1;
__END__
=head1 NAME
XML::Feed - Syndication feed parser and auto-discovery
=head1 SYNOPSIS
use XML::Feed;
my $feed = XML::Feed->parse(URI->new('http://example.com/atom.xml'))
or die XML::Feed->errstr;
print $feed->title, "\n";
for my $entry ($feed->entries) {
}
## Find all of the syndication feeds on a given page, using
## auto-discovery.
my @feeds = XML::Feed->find_feeds('http://example.com/');
=head1 DESCRIPTION
I<XML::Feed> is a syndication feed parser for both RSS and Atom feeds. It
also implements feed auto-discovery for finding feeds, given a URI.
I<XML::Feed> supports the following syndication feed formats:
=over 4
=item * RSS 0.91
=item * RSS 1.0
=item * RSS 2.0
=item * Atom
=back
The goal of I<XML::Feed> is to provide a unified API for parsing and using
the various syndication formats. The different flavors of RSS and Atom
handle data in different ways: date handling; summaries and content;
escaping and quoting; etc. This module attempts to remove those differences
by providing a wrapper around the formats and the classes implementing
those formats (I<XML::RSS> and I<XML::Atom::Feed>). For example, dates are
handled differently in each of the above formats. To provide a unified API for
date handling, I<XML::Feed> converts all date formats transparently into
I<DateTime> objects, which it then returns to the caller.
=head1 USAGE
=head2 XML::Feed->new($format)
Creates a new empty I<XML::Feed> object using the format I<$format>.
$feed = XML::Feed->new('Atom');
$feed = XML::Feed->new('RSS');
$feed = XML::Feed->new('RSS', version => '0.91');
=head2 XML::Feed->parse($stream)
=head2 XML::Feed->parse($stream, $format)
Parses a syndication feed identified by I<$stream>. I<$stream> can be any
one of the following:
=over 4
=item * Scalar reference
A reference to string containing the XML body of the feed.
=item * Filehandle
An open filehandle from which the feed XML will be read.
=item * File name
The name of a file containing the feed XML.
=item * URI object
A URI from which the feed XML will be retrieved.
=back
I<$format> allows you to override format guessing.
=head2 XML::Feed->find_feeds($uri)
Given a URI I<$uri>, use auto-discovery to find all of the feeds linked
from that page (using I<E<lt>linkE<gt>> tags).
Returns a list of feed URIs.
=head2 XML::Feed->identify_format($xml)
Given the xml of a feed return what format it is in (C<Atom>, or some version of C<RSS>).
=head2 $feed->convert($format)
Converts the I<XML::Feed> object into the I<$format> format, and returns
the new object.
=head2 $feed->splice($other_feed)
Splices in all of the entries from the feed I<$other_feed> into I<$feed>,
skipping posts that are already in I<$feed>.
=head2 $feed->format
Returns the format of the feed (C<Atom>, or some version of C<RSS>).
=head2 $feed->title([ $title ])
The title of the feed/channel.
=head2 $feed->base([ $base ])
The url base of the feed/channel.
=head2 $feed->link([ $uri ])
The permalink of the feed/channel.
=head2 $feed->tagline([ $tagline ])
The description or tagline of the feed/channel.
=head2 $feed->description([ $description ])
Alias for I<$feed-E<gt>tagline>.
=head2 $feed->author([ $author ])
The author of the feed/channel.
=head2 $feed->language([ $language ])
The language of the feed.
=head2 $feed->copyright([ $copyright ])
The copyright notice of the feed.
=head2 $feed->modified([ $modified ])
A I<DateTime> object representing the last-modified date of the feed.
If present, I<$modified> should be a I<DateTime> object.
=head2 $feed->generator([ $generator ])
The generator of the feed.
=head2 $feed->self_link ([ $uri ])
The Atom Self-link of the feed:
L<http://validator.w3.org/feed/docs/warning/MissingAtomSelfLink.html>
A string.
=head2 $feed->entries
A list of the entries/items in the feed. Returns an array containing
I<XML::Feed::Entry> objects.
=head2 $feed->items
A synonym for I<$feed->entries>.
=head2 $feed->add_entry($entry)
Adds an entry to the feed. I<$entry> should be an I<XML::Feed::Entry>
object in the correct format for the feed.
=head2 $feed->as_xml
Returns an XML representation of the feed, in the format determined by
the current format of the I<$feed> object.
=head1 PACKAGE VARIABLES
=over 4
=item C<$XML::Feed::Format::RSS::PREFERRED_PARSER>
If you want to use another RSS parser class than XML::RSS (default), you can
change the class by setting C<$PREFERRED_PARSER> variable in the
XML::Feed::Format::RSS package.
$XML::Feed::Format::RSS::PREFERRED_PARSER = "XML::RSS::LibXML";
B<Note:> this will only work for parsing feeds, not creating feeds.
B<Note:> Only C<XML::RSS::LibXML> version 0.3004 is known to work at the moment.
=item C<$XML::Feed::MULTIPLE_ENCLOSURES>
Although the RSS specification states that there can be at most one enclosure per item
some feeds break this rule.
If this variable is set then C<XML::Feed> captures all of them and makes them available as a list.
Otherwise it returns the last enclosure parsed.
B<Note:> C<XML::RSS> version 1.44 is needed for this to work.
=back
=cut
=head1 VALID FEEDS
For reference, this cgi script will create valid, albeit nonsensical feeds
(according to C<http://feedvalidator.org> anyway) for Atom 1.0 and RSS 0.90,
0.91, 1.0 and 2.0.
#!perl -w
use strict;
use CGI;
use CGI::Carp qw(fatalsToBrowser);
use DateTime;
use XML::Feed;
my $cgi = CGI->new;
my @args = ( $cgi->param('format') || "Atom" );
push @args, ( version => $cgi->param('version') ) if $cgi->param('version');
my $feed = XML::Feed->new(@args);
$feed->id("http://".time.rand()."/");
$feed->title('Test Feed');
$feed->link($cgi->url);
$feed->self_link($cgi->url( -query => 1, -full => 1, -rewrite => 1) );
$feed->modified(DateTime->now);
my $entry = XML::Feed::Entry->new();
$entry->id("http://".time.rand()."/");
$entry->link("http://example.com");
$entry->title("Test entry");
$entry->summary("Test summary");
$entry->content("Foo");
$entry->modified(DateTime->now);
$entry->author('test@example.com (Testy McTesterson)');
$feed->add_entry($entry);
my $mime = ("Atom" eq $feed->format) ? "application/atom+xml" : "application/rss+xml";
print $cgi->header($mime);
print $feed->as_xml;
=head1 LICENSE
I<XML::Feed> is free software; you may redistribute it and/or modify it
under the same terms as Perl itself.
=head1 AUTHOR & COPYRIGHT
Except where otherwise noted, I<XML::Feed> is Copyright 2004-2008
Six Apart, cpan@sixapart.com. All rights reserved.
=head1 SUBVERSION
The latest version of I<XML::Feed> can be found at
http://code.sixapart.com/svn/XML-Feed/trunk/
=cut
|