package XML::Atom::Service; use warnings; use strict; use Carp; use XML::Atom; use XML::Atom::Workspace; use XML::Atom::Collection; use base qw( XML::Atom::Thing ); use version; our $VERSION = qv('0.12.0'); sub element_name { 'service' } sub element_ns { 'http://www.w3.org/2007/app' } __PACKAGE__->mk_object_list_accessor( 'workspace' => 'XML::Atom::Workspace', 'workspaces', ); sub XML::Atom::Client::getService { my $client = shift; my($uri) = @_; return $client->error("Must pass a ServiceURI before retrieving service document") unless $uri; my $req = HTTP::Request->new(GET => $uri); my $res = $client->make_request($req); return $client->error("Error on GET $uri: " . $res->status_line) unless $res->code == 200; my $service = XML::Atom::Service->new(Stream => \$res->content) or return $client->error(XML::Atom::Service->errstr); $service; } 1; __END__ =head1 NAME XML::Atom::Service - Atom Service Document object =head1 SYNOPSIS use XML::Atom::Service; use XML::Atom::Categories; my $categories = XML::Atom::Categories->new; $categories->href('http://example.com/cats/forMain.cats'); $categories->add_category($category); my $collection = XML::Atom::Collection->new; $collection->href('http://example.org/reilly/main'); $collection->title('My Blog Entries'); $collection->categories($categories); my $workspace = XML::Atom::Workspace->new; $workspace->title('Main Site'); $workspace->add_collection($collection); my $service = XML::Atom::Service->new; $service->add_workspace($workspace); my $xml = $service->as_xml; ## Get lists of the workspace, collection, and categories elements. my @workspace = $service->workspace; my @collection = $workspace[0]->collection; my @categories = $collection[0]->categories; ## Get service document by using XML::Atom::Client use XML::Atom::Client; my $client = XML::Atom::Client->new; my $service = $client->getService($service_uri); =head1 DESCRIPTION For authoring to commence, a client needs to first discover the capabilities and locations of the available collections. Service Documents are designed to support this discovery process. They describe the location and capabilities of one or more Collection. The Service Document is defined in "The Atom Publishing Protocol," IETF Internet-Draft. =head1 METHODS =head2 XML::Atom::Service->new([ $stream ]) Creates a new Service Document object, and if I<$stream> is supplied, fills it with the data specified by I<$stream>. Automatically handles autodiscovery if I<$stream> is a URI (see below). Returns the new I object. On failure, returns C. I<$stream> can be any one of the following: =over 4 =item * Reference to a scalar This is treated as the XML body of the feed. =item * Scalar This is treated as the name of a file containing the Service Document XML. =item * Filehandle This is treated as an open filehandle from which the Service Document XML can be read. =item * URI object This is treated as a URI, and the Service Document XML will be retrieved from the URI. =back =head2 $service->workspace If called in scalar context, returns an I object corresponding to the first IworkspaceE> element found in the Service Document. If called in list context, returns a list of I objects corresponding to all of the IworkspaceE> elements found in the Service Document. =head2 $service->add_workspace($workspace) Adds the workspace I<$workspace>, which must be an I object, to the Service Document as a new IworkspaceE> element. For example: my $workspace = XML::Atom::Workspace->new; $workspace->title('Foo Bar'); $service->add_workspace($workspace); =head2 $service->element_name =head2 $service->element_ns =head2 XML::Atom::Client::getService($service_uri) Retrieves the service document at $service_uri. Returns an XML::Atom::Service object representing the service document returned from the server. =head1 SEE ALSO L L =head1 AUTHOR Takeru INOUE, Etakeru.inoue _ gmail.comE =head1 LICENCE AND COPYRIGHT Copyright (c) 2007, Takeru INOUE C<< >>. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L. =head1 DISCLAIMER OF WARRANTY BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. =cut