/[Frey]/trunk/lib/Frey/Run.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/Frey/Run.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 517 by dpavlin, Tue Nov 25 14:15:34 2008 UTC revision 934 by dpavlin, Tue Jan 6 00:22:56 2009 UTC
# Line 1  Line 1 
1  package Frey::Run;  package Frey::Run;
2  use Moose;  use Moose;
3  #extends 'Frey::ClassLoader';  #extends 'Frey::Class::Loader';
4  extends 'Frey::Action';  extends 'Frey::Action';
 with 'Frey::Web';  
 with 'Frey::Escape';  
5  with 'Frey::Session';  with 'Frey::Session';
6    
7  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
 use Frey::View::Dumper;  
8  use JSON;  use JSON;
9  use YAML;  use YAML;
10    
11    use lib 'lib';
12    use Frey::View::Dumper;
13    
14  =head1 NAME  =head1 NAME
15    
16  Frey::Run - display required form field for Class and run it  Frey::Run - display required form field for Class and run it
# Line 27  L<Frey::Action> which creates form for p Line 27  L<Frey::Action> which creates form for p
27  =cut  =cut
28    
29  use Moose::Util::TypeConstraints;  use Moose::Util::TypeConstraints;
30    use Frey::Class::Loader; # class_runnable_re
31    
32  subtype 'Runnable'  subtype 'Runnable'
33          => as 'Str',          => as 'Str',
34          => where sub { m{^as_} };          => where sub { Frey::Class::Loader::class_runnable_re };
35    
36  sub formats_available { qw/html js json yaml yml/ }  sub formats_available { qw/html js json yaml yml/ }
37  enum 'Formats' => formats_available;  enum 'Formats' => formats_available;
# Line 59  has 'format' => ( Line 60  has 'format' => (
60          default => 'html',          default => 'html',
61  );  );
62    
63    has 'request_url' => (
64            documentation => 'Take url from params if not specified',
65            is => 'rw',
66            isa => 'Uri', coerce => 1,
67            lazy => 1,
68            default => sub {
69                    my $self = shift;
70                    $self->params->{request_url};
71            },
72    );
73    
74  sub html {  sub html {
75          my ( $self ) = @_;          my ( $self ) = @_;
76    
77          my ($html,$body,$data);          my ($html,$body,$data);
78    
79            my $current_status;
80            $current_status->{$_}++ foreach $self->status;
81    
82          eval {          eval {
83                  my $class = $self->class;                  my $class = $self->class;
84                  $self->load_class( $class );                  $self->load_class( $class );
85    
86                  if ( $body = $self->params_form ) {                  if ( my $form = $self->params_form ) {
87                            $html = $self->page( body => $form );
88                          warn "got required params form for $class ", $self->run, " format: ", $self->format;                          warn "got required params form for $class ", $self->run, " format: ", $self->format;
89                  } else {                  } else {
90    
91                          $self->usage->{ $class }++;                          $self->usage->{ $class }++;
92    
93    =begin remove
94    
95                          my $o;                          my $o;
96                          my ( $meta, $is_role, $instance ) = $self->class_meta( $class );                          my ( $meta, $is_role, $instance ) = $self->class_meta( $class );
97                          if ( $is_role ) {                          if ( $is_role ) {
98                                  $o = $instance;                                  $o = $instance;
99                                    if ( $o->can('add_status') ) {
100                                            $self->TODO("missing add_status in $o");
101                                            Frey::Web->meta->apply( $o );
102                                            warn "# apply Frey::Web to $class instance $o";
103                                    }
104                          } else {                          } else {
105                                  $o = $self->new_frey_class( $class, $self->params );                                  $o = $self->new_frey_class( $class, $self->params );
106                          }                          }
107    =cut
108    
109                            my $o = $self->new_frey_class( $class, $self->params );
110                          $o->depends if $o->can('depends');                          $o->depends if $o->can('depends');
111    
112                          my @status;                          if ( $self->run =~ m{as_markup} ) {
113                                    $html = $o->page( run => $self->run );
114                          push @status, { $self->editor( $class ) => $self->params } if $o->can('status');                          } elsif ( $self->run =~ m{(.*as_sponge)} ) {
115                                    $data = $o->$1;
                         if ( $self->run eq 'as_markup' && ! $o->can('page') ) {  
                                 warn "## using ",ref($o), "->as_markup";  
                                 $body = $o->as_markup unless $html;  
                                 warn ">>> markup $class ",length( $body ), " ", $html ? 'html' : 'body', " bytes";  
                         } elsif ( $self->run eq 'as_sponge' ) {  
                                 $data = $o->as_sponge;  
116                                  confess "invalid data from sponge = ", dump( $data ) unless ref($data) eq 'HASH';                                  confess "invalid data from sponge = ", dump( $data ) unless ref($data) eq 'HASH';
117                                  if ( $self->format eq 'html' ) {                                  if ( $self->format eq 'html' ) {
118                                          my $rows = $#{ $data->{rows} } + 1;                                          my $rows = $#{ $data->{rows} } + 1;
# Line 102  sub html { Line 122  sub html {
122                                          $body .= '<tr><th>' . join('</th><th>', @{$data->{NAME}} ) . '</th></tr>';                                          $body .= '<tr><th>' . join('</th><th>', @{$data->{NAME}} ) . '</th></tr>';
123                                          $body .= '<tr><td>' . join('</td><td>', @$_ ) . '</td></tr>' foreach @{ $data->{rows} };                                          $body .= '<tr><td>' . join('</td><td>', @$_ ) . '</td></tr>' foreach @{ $data->{rows} };
124                                          $body .= '</table>';                                          $body .= '</table>';
125                                            
126                                            delete( $data->{rows} ); # too much dumplication
127                                            $body .= Frey::View::Dumper->new( data => $data )->as_markup if $data;
128                                  }                                  }
129                          } elsif ( $self->run eq 'as_data' ) {                          } elsif ( $self->run =~ m{(as_data|sql)} ) {
130                                  $data = $o->as_data;                                  my $run = $self->run;
131                                    $data = $o->$run;
132                                    confess "no data for $class->$run" unless defined $data;
133                                    $self->add_status( { $self->run => $data } );
134                          } else {                          } else {
135                                  $body = $self->error( "IGNORE: $class ", $o->dump );                                  $body = $self->error( "IGNORE: $class ", $o->dump );
136                          }                          }
# Line 112  sub html { Line 138  sub html {
138                          if ( defined $data ) {                          if ( defined $data ) {
139                                  $html .= to_json( $data ) if $self->format =~ m{js(on)?};                                  $html .= to_json( $data ) if $self->format =~ m{js(on)?};
140                                  $html .= Dump( $data )    if $self->format =~ m{ya?ml};                                  $html .= Dump( $data )    if $self->format =~ m{ya?ml};
                                 push @status, { 'data' => $data };  
141                          }                          }
142                          if ( ! $html ) {                          if ( ! $html ) {
143                                  $body  = Frey::View::Dumper->new( data => $body )->as_markup if ref $body;                                  $body  = Frey::View::Dumper->new( data => $body )->as_markup if ref $body;
144                                  $body .= Frey::View::Dumper->new( data => $data )->as_markup if defined $data;                                  $body .= Frey::View::Dumper->new( data => $data )->as_markup if defined $data && ! defined $body;
145                          }                          }
146    
147                          warn "# status ",dump(@status);                          $o->title( $class );
148    
149                          if ( $self->run eq 'as_markup' && $o->can('page') ) {                          $html = $o->page( body => $body ) if $body && !$html;
150                                  $o->add_status($_) foreach @status;                          $self->content_type( $o->content_type );
151                                  $html = $o->page;  
152                                  warn "got ", length($html), "for page";                          confess "no html output for $class ", $o->dump unless defined $html;
153                          } else {  
154                                  $self->add_status($_) foreach @status;                          if ( $o->can('status') ) {
155                                    foreach ( $o->status ) {
156                                            next if $current_status->{$_}++;
157                                            $self->add_status( $_ );
158                                            warn "# run add_status: ", $self->dump( $_ );
159                                    }
160                          }                          }
                 };  
161    
                 if ( ref($body) eq 'HASH' ) {  
                         $html = $self->page( %$body );  
                         warn "WARNING: old calling method which is depriciated";  
                 } elsif ( $body && ! $html ) {  
                         $html = $self->page( title => $self->class . ' run', body => $body );  
162                  };                  };
163    
164          };          };
165    
166          $html = $self->page( title => $self->class, body => $self->error( $@ ) ) if $@;          $self->status_parts;
167    
168            if ( $@ ) {
169                    my $error = $@;
170                    my $o = Frey->new;
171                    $o->{request_url} = $self->request_url; # sigh, this is dynamic languge, right?
172                    Frey::Web->meta->apply( $o );
173                    $html = $o->page( body => $self->error( $error, undef ) );
174            }
175    
176            warn $self->class, " produced ", length($html), " bytes of ", $self->content_type;
177    
178          return $html;          return $html;
179  }  }

Legend:
Removed from v.517  
changed lines
  Added in v.934

  ViewVC Help
Powered by ViewVC 1.1.26