X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FXML%2FFeed%2FAtom.pm;h=d6fa5221f45744521f0f555e208047cb9926bd38;hb=33d4cb3f33502990083b6f240b0764c77d62444a;hp=135e36788897dbbd12f7b6beac97823ee7d3fc23;hpb=c4d4c98e2bc6450743a68f5014a853960fe62117;p=catagits%2FXML-Feed.git diff --git a/lib/XML/Feed/Atom.pm b/lib/XML/Feed/Atom.pm index 135e367..d6fa522 100644 --- a/lib/XML/Feed/Atom.pm +++ b/lib/XML/Feed/Atom.pm @@ -9,9 +9,14 @@ use XML::Atom::Util qw( iso2dt ); use List::Util qw( first ); use DateTime::Format::W3CDTF; +use XML::Atom::Entry; +XML::Atom::Entry->mk_elem_accessors(qw( lat long ), ['http://www.w3.org/2003/01/geo/wgs84_pos#']); + sub init_empty { - my $feed = shift; - $feed->{atom} = XML::Atom::Feed->new(Version => 1.0); + my ($feed, %args) = @_; + $args{'Version'} ||= '1.0'; + + $feed->{atom} = XML::Atom::Feed->new(%args); $feed; } @@ -38,10 +43,33 @@ sub link { $l ? $l->href : undef; } } + +sub self_link { + my $feed = shift; + if (@_) { + my $uri = shift; + $feed->{atom}->add_link({type => "application/atom+xml", rel => "self", href => $uri}); + return $uri; + } + else + { + my $l = + first + { !defined $_->rel || $_->rel eq 'self' } + $feed->{atom}->link; + ; + + return $l ? $l->href : undef; + } +} + sub description { shift->{atom}->tagline(@_) } sub copyright { shift->{atom}->copyright(@_) } sub language { shift->{atom}->language(@_) } sub generator { shift->{atom}->generator(@_) } +sub id { shift->{atom}->id(@_) } +sub updated { shift->{atom}->updated(@_) } +sub add_link { shift->{atom}->add_link(@_) } sub author { my $feed = shift; @@ -59,7 +87,9 @@ sub modified { if (@_) { $feed->{atom}->modified(DateTime::Format::W3CDTF->format_datetime($_[0])); } else { - $feed->{atom}->modified ? iso2dt($feed->{atom}->modified) : undef; + return iso2dt($feed->{atom}->modified) if $feed->{atom}->modified; + return iso2dt($feed->{atom}->updated) if $feed->{atom}->updated; + return undef; } } @@ -73,8 +103,9 @@ sub entries { } sub add_entry { - my $feed = shift; - my($entry) = @_; + my $feed = shift; + my $entry = shift || return; + $entry = $feed->_convert_entry($entry); $feed->{atom}->add_entry($entry->unwrap); } @@ -96,6 +127,9 @@ sub init_empty { } sub title { shift->{entry}->title(@_) } +sub source { shift->{entry}->source(@_) } +sub updated { shift->{entry}->updated(@_) } + sub link { my $entry = shift; if (@_) { @@ -110,20 +144,46 @@ sub link { sub summary { my $entry = shift; if (@_) { - $entry->{entry}->summary(ref($_[0]) eq 'XML::Feed::Content' ? - $_[0]->body : $_[0]); + my %param; + if (ref($_[0]) eq 'XML::Feed::Content') { + %param = (Body => $_[0]->body); + } else { + %param = (Body => $_[0]); + } + $entry->{entry}->summary(XML::Atom::Content->new(%param, Version => 1.0)); } else { - XML::Feed::Content->wrap({ type => 'html', - body => $entry->{entry}->summary }); + my $s = $entry->{entry}->summary; + # map Atom types to MIME types + my $type = ($s && ref($s) eq 'XML::Feed::Content') ? $s->type : undef; + if ($type) { + $type = 'text/html' if $type eq 'xhtml' || $type eq 'html'; + $type = 'text/plain' if $type eq 'text'; + } + my $body = $s; + if (defined $s && ref($s) eq 'XML::Feed::Content') { + $body = $s->body; + } + XML::Feed::Content->wrap({ type => $type, + body => $body }); } } +my %types = ( + 'text/xhtml' => 'xhtml', + 'text/html' => 'html', + 'text/plain' => 'text', +); + sub content { my $entry = shift; if (@_) { my %param; if (ref($_[0]) eq 'XML::Feed::Content') { - %param = (Body => $_[0]->body); + if (defined $_[0]->type && defined $types{$_[0]->type}) { + %param = (Body => $_[0]->body, Type => $types{$_[0]->type}); + } else { + %param = (Body => $_[0]->body); + } } else { %param = (Body => $_[0]); } @@ -150,7 +210,8 @@ sub category { $entry->{entry}->add_category({ term => $_[0] }); } else { my $category = $entry->{entry}->category; - $category ? ($category->label || $category->term) : $entry->{entry}->get($ns, 'subject'); + my @return = $category ? ($category->label || $category->term) : $entry->{entry}->getlist($ns, 'subject'); + return wantarray? @return : $return[0]; } } @@ -181,7 +242,27 @@ sub modified { if (@_) { $entry->{entry}->modified(DateTime::Format::W3CDTF->format_datetime($_[0])) if $_[0]; } else { - $entry->{entry}->modified ? iso2dt($entry->{entry}->modified) : undef; + return iso2dt($entry->{entry}->modified) if $entry->{entry}->modified; + return iso2dt($entry->{entry}->updated) if $entry->{entry}->updated; + return undef; + } +} + +sub lat { + my $entry = shift; + if (@_) { + $entry->{entry}->lat($_[0]) if $_[0]; + } else { + $entry->{entry}->lat; + } +} + +sub long { + my $entry = shift; + if (@_) { + $entry->{entry}->long($_[0]) if $_[0]; + } else { + $entry->{entry}->long; } }