--- /dev/null
+package Catalyst::Plugin::Sitemap;
+
+use strict;
+use warnings;
+
+use Moose::Role;
+
+no warnings qw/uninitialized/;
+
+use Search::Sitemap;
+use List::Util qw/ first /;
+
+sub sitemap {
+ my $self = shift;
+
+ my $sitemap = Search::Sitemap->new;
+ $sitemap->pretty(1);
+
+ for my $controller ( $self->controller(qr//) ) {
+ ACTION:
+ for my $a ( $controller->get_action_methods ) {
+
+ my $action = $controller->action_for( $a->name );
+
+ my $attr = $action->attributes->{Sitemap} or next ACTION;
+
+ die "more than one attribute 'Sitemap' for sub ",
+ $a->fully_qualified_name
+ if @$attr > 1;
+
+ my @attr = split /\s*(?:,|=>)\s*/, $attr->[0];
+
+ my %uri_params;
+
+ if ( @attr == 1 ) {
+ if ( $attr[0] eq '*' ) {
+ my $sitemap_method = $action->name . "_sitemap";
+
+ if ( $controller->can($sitemap_method) ) {
+ $controller->$sitemap_method( $self, $sitemap );
+ next ACTION;
+ }
+ }
+
+ if ( $attr[0] + 0 > 0 ) {
+ # it's a number
+ $uri_params{priority} = $attr[0];
+ }
+
+ }
+ elsif ( @attr > 0 ) {
+ %uri_params = @attr;
+ }
+
+ $uri_params{loc} = $self->uri_for_action( $action->private_path );
+
+ $sitemap->add( \%uri_params );
+
+ next ACTION;
+ }
+
+ }
+
+ return $sitemap->xml;
+}
+
+1;
+
+__END__
+
+ways I can do it
+
+is Sitemap( <yadah> ) ? => use it as is
+else => has <action>_sitemap? => use it
+else => use the uri directly
+
+
+sitemap => sub {
+ my ( $self, $c, $sitemap ) = @_;
+
+ ...
+};
+
+sub action_sitemap {
+ my ( $self, $c, $sitemap ) = @_;
+}
+
+sub do_stuff :Local :Sitemap {
+}
--- /dev/null
+package TestApp::Controller::Root;
+
+use strict;
+use warnings;
+
+use parent 'Catalyst::Controller';
+
+sub sitemap : Path('/sitemap') {
+ my ( $self, $c ) = @_;
+
+ $c->res->body( $c->sitemap );
+}
+
+sub alone :Path('/alone') :Sitemap { }
+
+sub with_priority :Path('/with_priority') :Sitemap(0.75) { }
+
+sub with_function :Path('/with_function') :Sitemap(*) { }
+
+sub with_function_sitemap {
+ $_[2]->add( 'http://localhost/with_function' );
+}
+
+sub with_args :Path('/with_args')
+ :Sitemap( lastmod => 2010-09-27, changefreq => daily )
+ {}
+
+
+1;
+
+
+
+
+
+
--- /dev/null
+
+use strict;
+use warnings;
+
+use Test::More tests => 4; # last test to print
+
+use lib 't/lib';
+
+use Catalyst::Test 'TestApp';
+
+my $xml = request('/sitemap')->content;
+
+$xml =~ s/\s+//g;
+
+like $xml, qr{<url><loc>http://localhost/alone</loc></url>}, ':Sitemap';
+like $xml, qr{<url><loc>http://localhost/with_function</loc></url>},
+ ':Sitemap(*)';
+like $xml,
+ qr{<url><loc>http://localhost/with_priority</loc><priority>0.75</priority></url>},
+ ':Sitemap(0.75)';
+
+like $xml,
+ qr{<url><loc>http://localhost/with_args</loc><lastmod>2010-09-27</lastmod><changefreq>daily</changefreq></url>},
+ ':Sitemap(lotsa stuff)';
+