# Copyright (c) 2004 Timothy Appnel # http://www.timaoutloud.org/ # This code is released under the Artistic License. # # XML::Atom::Syndication - simple lightweight client for # consuming Atom syndication feeds. # package XML::Atom::Syndication; use strict; use vars qw( $VERSION $atomic ); $VERSION = '0.03'; use XML::Parser; sub instance { return $atomic if $atomic; $atomic = __PACKAGE__->new; } sub new { my $a = bless { }, $_[0]; $a->{__parser} = XML::Parser->new( Style => 'Elemental', Elemental=>{ Element=>'XML::Atom::Syndication::Element', Document => 'XML::Atom::Syndication::Document', Characters => 'XML::Atom::Syndication::Characters'}, Namespaces=>1 ); $a; } sub get { require LWP::Simple; unless ($_[2]) { my $atom = LWP::Simple::get($_[1]); return $_[0]->{__parser}->parse($atom); } else { LWP::Simple::mirror($_[1],$_[2]); return $_[0]->{__parser}->parsefile( $_[2] ); } } sub parse { $_[0]->{__parser}->parse($_[1]); } sub parse_file { $_[0]->{__parser}->parsefile($_[1]); } sub xpath_namespace { shift; XML::Atom::Syndication::Element->xpath_namespace(@_); } 1; __END__ =begin =head1 NAME XML::Atom::Syndication - a simple lightweight client for consuming Atom syndication feeds. =head1 SYNOPSIS #!/usr/bin/perl -w use XML::Atom::Syndication; my $atomic = XML::Atom::Syndication->instance; my $doc = $atomic->get('http://www.timaoutloud.org/xml/atom.xml'); my($feed_title)= $doc->query('/feed/title'); print $feed_title->text_value."\n\n"; foreach ($doc->query('//entry')) { print $_->query('title')->text_value."\n"; print $_->query('summary')->text_value."\n"; print $_->query('link/@href')."\n\n"; } XML::Atom::Syndication->xpath_namespace('tima','http://www.timaoutloud.org/'); print XML::Atom::Syndication->xpath_namespace('http://www.timaoutloud.org/')."\n"; print XML::Atom::Syndication->xpath_namespace('tima')."\n"; =head1 DESCRIPTION While the real strength of the Atom effort is the API and its unified format, retreiving feeds over HTTP and consuming their contents, similar like with RSS, will be a common use. The module endeavors to provide developers with a package that is simple, lightweight and easy install. Development began with two primary goals: =over 4 =item To create something simpler and more lightweight then using L for the specific and common purpose of fetching Atom feeds. =item To see how quickly and easily I could cobble together such a package with existing modules. =back The latter of these goals will be less of a focus going forward. That experiment has run its course. It went together quite easier and having developed the L and L modules, Atom data is much easier to process and use. While keeping things simple was a priority, the XPath online interface may be a bit too spartan. Going forward, refining this interface so it is easier to work with will be a priority. (Feedback is appreciated.) This interface is still somewhat in flux and is subject to change. =head1 METHODS =item XML::Atom::Syndication->instance Returns the XML::Atom::Syndication singleton. =item $instance->parse($text|IO_HANDLE) Pass through to the C method of the L instance being used by the client. Returns the root L object for the feed. =item $instance->parse_file(FILE_HANDLE) Pass through to the C method of the L instance being used by the client. Returns the root L object for the feed. =item $instance->get($url[,$file]) A method for fetching an Atom feed and parsing it. If an optional file name is provided, the method will mirror the feed to the file system location that is specified. Like the C methods, returns the root L object for the feed. =item $XML::Atom::Syndication->xpath_namespace($prefix,$uri) =item $XML::Atom::Syndication->xpath_namespace($prefix) =item $XML::Atom::Syndication->xpath_namespace($uri) A class method accessor to the XPath namespace mappings. XPath query namespaces declarations are independant of the document it is querying. By default this module contains the followiing declarations: (default/no prefix) http://purl.org/atom/ns# dc http://purl.org/dc/elements/1.1/ dcterms http://purl.org/dc/terms/ sy http://purl.org/rss/1.0/modules/syndication/ trackback http://madskills.com/public/xml/rss/module/trackback/ xhtml http://www.w3.org/1999/xhtml/ xml http://www.w3.org/XML/1998/namespace/ To add or modify a mapping, call this method with the prefix and then URI to be registered. To lookup the associated URI of a prefix just pass in the prefix string. If a URI is passed in then the associated prefix is returned. In either case C will be returned if no value has been set. =head1 DEPENDENCIES L, L, L, L =head1 SEE ALSO L, L, L, L AtomEnabled Alliance - http://www.atomenabled.org/ atom-syntax mailing list - http://www.imc.org/atom-syntax/ =head1 BUGS =item * Handling of unregistered XPath namespaces is incorrect. =item * Will complain if C call in C fails. =head1 TO DO =over 4 =item * Refine the interface. Feedback appreciated. =item * Implement auto-discovery C method. =item * Implement a means of passing through unescaped content markup if desired. (This would be helpful with unescaped content blocks.) Or perhaps an as_xml method using XML::Generator? =item * Implement means of LWP status/error reporting with C. =item * Implement ETag support within C. L C only uses last-modified headers which are not always available with dynamic content. =back =head1 LICENSE The software is released under the Artistic License. The terms of the Artistic License are described at L. =head1 AUTHOR & COPYRIGHT Except where otherwise noted, XML::Atom::Syndication is Copyright 2004, Timothy Appnel, cpan@timaoutloud.org. All rights reserved. =cut =end