X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lib%2FMaypole%2FModel%2FBase.pm;h=d5d325c6dfaaf374414ac728ec9f894e9b2de1a3;hb=78ca407e1a819f514cbb45f0dbd085411066ab54;hp=d0e9ba81670c357160685195b205736513712b0a;hpb=d3a3498e58b23918b3311da94f706bbfe2a576ee;p=maypole.git diff --git a/lib/Maypole/Model/Base.pm b/lib/Maypole/Model/Base.pm index d0e9ba8..d5d325c 100644 --- a/lib/Maypole/Model/Base.pm +++ b/lib/Maypole/Model/Base.pm @@ -4,11 +4,22 @@ use strict; use Maypole::Constants; use attributes (); +# don't know why this is a global - drb our %remember; -sub MODIFY_CODE_ATTRIBUTES { $remember{ $_[1] } = $_[2]; () } +sub MODIFY_CODE_ATTRIBUTES +{ + shift; # class name not used + my ($coderef, @attrs) = @_; + + $remember{$coderef} = \@attrs; + + # previous version took care to return an empty array, not sure why, + # but shall cargo cult it until know better + return; +} -sub FETCH_CODE_ATTRIBUTES { $remember{ $_[1] } || () } +sub FETCH_CODE_ATTRIBUTES { @{ $remember{$_[1]} || [] } } sub process { my ( $class, $r ) = @_; @@ -18,6 +29,7 @@ sub process { $r->{template} = $method; my $obj = $class->fetch_objects($r); $r->objects([$obj]) if $obj; + $class->$method( $r, $obj, @{ $r->{args} } ); } @@ -121,6 +133,9 @@ Empty Action. Empty Action. +=item index + +Empty Action, calls list if provided with a table. =back @@ -136,6 +151,14 @@ sub view : Exported { sub edit : Exported { } +sub index : Exported { + my ( $self, $r ) = @_; + if ($r->table) { + $r->template("list"); + return $self->list($r); + } +} + =pod Also, see the exported commands in C. @@ -178,17 +201,40 @@ Defaults to checking if the sub has the C<:Exported> attribute. =cut sub is_public { - my ( $self, $action ) = @_; + my ( $self, $action, $attrs ) = @_; my $cv = $self->can($action); - return 0 unless $cv; - my $attrs = join " ", (attributes::get($cv) || ()); + warn "is_public failed . action is $action. self is $self" and return 0 unless $cv; + + my %attrs = (ref $attrs) ? %$attrs : map {$_ => 1} $self->method_attrs($action,$cv) ; + do { - warn "$action not exported" if Maypole->debug; - return 0; - } unless $attrs =~ /\bExported\b/i; + warn "is_public failed. $action not exported. attributes are : ", %attrs; + return 0; + } unless $attrs{Exported}; return 1; } + + +=head2 method_attrs + +Returns the list of attributes defined for a method. Maypole itself only +defines the C attribute. + +=cut + +sub method_attrs { + my ($class, $method, $cv) = @_; + + $cv ||= $class->can($method); + + return unless $cv; + + my @attrs = attributes::get($cv); + + return @attrs; +} + =head2 related This can go either in the master model class or in the individual