package Catalyst::Controller::Atompub::Base; use strict; use warnings; use Atompub::DateTime qw(datetime); use Atompub::MediaType qw(media_type); use Catalyst::Controller::Atompub; use HTTP::Status; use NEXT; use base qw(Catalyst::Controller); __PACKAGE__->mk_accessors(qw(info)); sub new { my($class, @args) = @_; my $self = $class->NEXT::new(@args); $self->info( Catalyst::Controller::Atompub::Info->instance($self) ); $self; } sub error { my($self, $c, @args) = @_; return if ! is_success $c->res->status && $c->res->body; my($status, $message) = @args > 1 ? @args : @args == 1 && $args[0] =~ /^([1-5]\d\d)\s*(.*)/ ? ($1, $2) : @args == 1 && $args[0] =~ /^(.*)/ ? ($2) : (); $status ||= RC_INTERNAL_SERVER_ERROR; $c->res->status($status); $message ||= status_message($status); my $report = "$status $message"; my $entry = XML::Atom::Entry->new; my $link = XML::Atom::Link->new; $link->rel('related'); # XXX via? $link->href($c->req->uri); $entry->add_link($link); $entry->updated(datetime->w3c); $entry->title($report); $entry->content($report); # XXX @type=text is better $c->res->body($entry->as_xml); $c->res->content_type(media_type('entry')); $c->log->error($report); return; } package Catalyst::Controller::Atompub::Info; use strict; use warnings; use Catalyst::Utils; use XML::Atom::Service; use base qw(Class::Accessor::Fast); __PACKAGE__->mk_accessors(qw(appclass)); my $Info; sub instance { my($class, $arg) = @_; $Info ||= bless { appclass => Catalyst::Utils::class2appclass($arg) }, $class; $Info; } sub get { my($self, $c, $class) = @_; return unless $class = $self->_fullclass($c, $class); return unless $self->_is_collection($c, $class); $self->{info}{$class} ||= $self->_make_collection($c, $class); } sub _fullclass { my($self, $c, $class) = @_; $class = ref $class || $class || return; my $appclass = $self->appclass; $class =~ /^$appclass\::/ ? $class : join('::', $appclass, $class ); } sub _is_collection { my($self, $c, $class) = @_; UNIVERSAL::isa $class, 'Catalyst::Controller::Atompub::Collection'; } sub _make_collection { my($self, $c, $class) = @_; my $suffix = Catalyst::Utils::class2classsuffix($class); my $config = $c->config->{$suffix}{collection}; my $coll = XML::Atom::Collection->new; $coll->href($self->_make_href($c, $class)); $coll->title($config->{title} || $class =~ /Controller::(.+)/); $coll->accept(@{ $config->{accept} }) if $config->{accept}; $coll->add_categories($self->_make_categories($c, $_)) for @{ $config->{categories} }; $coll; } sub _make_href { my($self, $c, $class) = @_; return unless $class = $self->_fullclass($c, $class); $c->req->base.$class->action_namespace($c); } sub _make_categories { my($self, $c, $config) = @_; my $cats = XML::Atom::Categories->new; $cats->href($config->{href}) if $config->{href}; $cats->fixed($config->{fixed}) if $config->{fixed}; $cats->scheme($config->{scheme}) if $config->{scheme}; my @cat = map { my $cat = XML::Atom::Category->new; $cat->term($_->{term}); $cat->scheme($_->{scheme}) if $_->{scheme}; $cat->label($_->{label}) if $_->{label}; $cat } @{ $config->{category} }; $cats->category(@cat); $cats; } 1; __END__ =head1 NAME Catalyst::Controller::Atompub::Base - A Catalyst controller for the Publishing Protocol =head1 DESCRIPTION L is a base class of L and L. =head1 METHODS =head2 $controller->new =head2 $controller->info An accessor for Collection information object. =head2 $controller->error($c, [$status, $message]) Sets an Entry Document containing error message in $c->response->body, and returns C. See L. =head1 ERROR HANDLING When something wrong happens, return with calling $controller->error method like: sub foo { my ($controller ,$c) = @_; return $controller->error($c, 404, "Entry does not exist") if is_something_wrong; } Then, Atompub server responds with an Entry Document including error message: HTTP/1.1 404 Not Found Content-Type: application/atom+xml;type=entry 2007-01-01T00:00:00Z 404 Entry does not exist
404 Entry does not exist
This default behavior can be changed by overriding the C method. =head1 SEE ALSO L L L L =head1 AUTHOR Takeru INOUE C<< >> =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.