/[Frey]/branches/zimbardo/lib/Frey/Web.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 /branches/zimbardo/lib/Frey/Web.pm

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

revision 625 by dpavlin, Sat Nov 29 17:48:54 2008 UTC revision 908 by dpavlin, Fri Jan 2 13:22:13 2009 UTC
# Line 3  use Moose::Role; Line 3  use Moose::Role;
3    
4  with 'Frey::Session';  with 'Frey::Session';
5    
 use Frey::Types;  
   
6  #use Continuity::Widget::DomNode;  #use Continuity::Widget::DomNode;
7  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
8  use Carp qw/confess cluck/;  use Carp qw/confess cluck carp/;
9  use File::Slurp;  use File::Slurp;
10    use Text::Tabs; # expand, unexpand
11    
12    use lib 'lib';
13    
14    use Frey::Types;
15    
16  use Frey::Bookmarklet;  use Frey::Bookmarklet;
17  use Frey::ClassBrowser;  use Frey::Class::Browser;
18  use Frey::INC;  use Frey::INC;
19    
20  use Frey::SVK;  use Frey::SVK;
21    
 use Text::Tabs; # expand, unexpand  
   
22  our @head;  our @head;
23  sub head { @head }  sub head { @head }
24    
# Line 25  has 'request_url' => ( Line 26  has 'request_url' => (
26          is => 'rw',          is => 'rw',
27          isa => 'Uri', coerce => 1,          isa => 'Uri', coerce => 1,
28          required => 1,          required => 1,
29  #       default => '/',          default => sub {
30                    carp "undefined request_url";
31                    '/';
32            },
33  );  );
34    
35  has 'title' => (  has 'title' => (
# Line 64  has 'html_dump_width' => ( Line 68  has 'html_dump_width' => (
68          is => 'rw',          is => 'rw',
69          isa => 'Int',          isa => 'Int',
70  #       required => 1, # FIXME we can't have required fields with defaults because Frey::Action isn't smart enough and asks for them  #       required => 1, # FIXME we can't have required fields with defaults because Frey::Action isn't smart enough and asks for them
71          default => 120,          default => 250,
72  );  );
73    
74  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
# Line 83  sub html_dump { Line 87  sub html_dump {
87          $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;          $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;
88          $dump = $self->html_escape( $dump );          $dump = $self->html_escape( $dump );
89          $dump =~ s{\Q...\E}{&hellip;}gs;          $dump =~ s{\Q...\E}{&hellip;}gs;
90  #       $dump =~ $self->editor_links( $dump ); # FIXME include this  #       $dump =~ $self->html_links( $dump ); # FIXME include this
91          return "<code>$dump</code>";          return "<code>$dump</code>";
92  }  }
93    
94  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }  sub popup    { my $self = shift; $self->popup_dropdown('popup',    @_); }
95  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }  sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }
96    
97  our $re_html = qr{<(?:!--.+?--|(\w+).+?/\1|[^>]+/)>}s; # relaxed html check for one semi-valid tag  our $re_html = qr{<(?:!--|(\w+)|[^>]+)/?>}s; # relaxed html check for one semi-valid tag
98    
99  sub popup_dropdown {  sub popup_dropdown {
100          my ( $self, $type, $name, $content, $full ) = @_;          my ( $self, $type, $name, $content, $full ) = @_;
# Line 112  sub popup_dropdown { Line 116  sub popup_dropdown {
116          }          }
117  }  }
118    
119  sub _inline_path {  sub _inline {
120          my ( $self, $path ) = @_;          my ( $self, $path ) = @_;
121          -s $path < $self->inline_smaller_than;          return unless defined $path;
122            warn "# _inline $path";
123            -e $path && -s $path < $self->inline_smaller_than && -s $path;
124  }  }
125    
126  sub _head_html {  sub _head_html {
# Line 123  sub _head_html { Line 129  sub _head_html {
129          foreach my $path ( @head ) {          foreach my $path ( @head ) {
130                  $path =~ s!^/!!;                  $path =~ s!^/!!;
131                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
132                          $out .= $self->_inline_path( $path ) ?                          my $size;
133                                  qq|<script type="text/javascript">\n/* inline $path */\n\n| . read_file($path) . qq|\n</script>| :                          $out .= $size = _inline( $path ) ?
134                                    qq|<script type="text/javascript">\n/* inline $path $size bytes */\n\n| . read_file($path) . qq|\n</script>| :
135                                  qq|<script type="text/javascript" src="/$path"></script>|;                                  qq|<script type="text/javascript" src="/$path"></script>|;
136                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
137                          $out .= $self->_inline_path( $path ) ?                          my $size;
138                                  qq|<style type="text/css">\n/* inline $path */\n\n| . read_file( $path ) . qq|\n</style>| :                          $out .= $size = _inline( $path ) ?
139                                    qq|<style type="text/css">\n/* inline $path $size bytes */\n\n| . read_file( $path ) . qq|\n</style>| :
140                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
141                  } elsif ( $path =~ m{<.+>}s ) {                  } elsif ( $path =~ m{<.+>}s ) {
142                          $out .= $path;                          $out .= $path;
# Line 170  sub add_head { Line 178  sub add_head {
178    
179  }  }
180    
181    sub _add_css_js {
182            my ( $self, $what, $content ) = @_;
183    
184            my $tag  = $what eq 'css' ? 'style'    : 'script';
185            my $type = $what eq 'css' ? 'text/css' : 'text/javascript';
186            my $head;
187    
188            my ( $package, $path, $line ) = caller(1);
189    
190            $content = "/$content" if -e $content;
191            if ( $content =~ $re_html ) {
192                    $head = qq|
193                            $content
194                            <!-- $type via $package at $path line $line -->
195                    |;
196            } elsif ( $content =~ m{^(/|https?://)} ) {
197                    if ( $what eq 'js' ) {
198                            $head = qq|
199                                    <$tag type="$type" src="$content">
200                                    /* $what via $package at $path line $line */
201                                    </$tag>
202                            |;
203                    } else {
204                            $head = qq|
205                                    <link rel="stylesheet" type="$type" href="$content">
206                                    <!-- $what via $package at $path line $line -->
207                            |;
208                    }
209            } else {
210                    $head = qq|
211                            <$tag type="$type">
212                            /* via $package at $path line $line */
213                            $content
214                            </$tag>
215                    |;
216            };
217            $self->add_head( $head );
218    }
219    
220  sub add_css {  sub add_css {
221          my ($self,$css) = @_;          my ($self,$css) = @_;
222          my ( $package, $path, $line ) = caller;          $self->_add_css_js( 'css', $css );
223          $self->add_head( qq|  }
224          <style type="text/css">  
225          /* via $package at $path line $line */  sub add_js {
226          $css          my ($self,$js) = @_;
227          </style>          $self->_add_css_js( 'js', $js );
         | );  
228  }  }
229    
230  our $reload_counter = 0;  our $reload_counter = 0;
# Line 203  sub page { Line 249  sub page {
249          my $self = shift;          my $self = shift;
250          my $a = {@_};          my $a = {@_};
251    
         warn "## page ",dump($a);  
   
252          $reload_counter++;          $reload_counter++;
253    
254          my $status_line = '';          my $status_line = '';
# Line 242  sub page { Line 286  sub page {
286                  qq|                  qq|
287                          <span class="right">                          <span class="right">
288                          <a title="reload $url"  href="/reload$url">reload</a>                          <a title="reload $url"  href="/reload$url">reload</a>
289                          <a title="$description" href="/exit$url">$exit</a>                          <a title="$description" href="/exit$url" target="exit">$exit</a>
290                          </span>                          </span>
291                  |;                  |;
292    
# Line 298  sub editor { Line 342  sub editor {
342          qq|>$class</a>|;          qq|>$class</a>|;
343  }  }
344    
345  =head2 editor_links  =head2 html_links
346    
347  Create HTML links to editor for perl error message  Create HTML links to editor for perl error message
348    
349    my $html = $self->editor_links( $error )    my $html = $self->html_links( $error )
350    
351  =cut  =cut
352    
353  sub editor_links {  sub html_links {
354          my ( $self, $error ) = @_;          my ( $self, $error ) = @_;
355    
356            $error = $self->strip_full_path( $error );
357    
358  #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back  #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back
359    
360            # perl's backtrace
361          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
362                  {at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;                  {at <a target="editor" href="/editor+$1+$2" title="vi $1 +$2">$1</a> line $2}gsm;
363    
364          $error =~ s{(via (?:package) "?)([\w:]+)("?)}          $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)}
365                  {$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;                  {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm
366            || # or anything that looks like "Class::Name"
367            $error =~ s{"(\w+(?:::\w+)+)"}
368                    {"<a target="$1" href="/$1" title="introspect $1">$1</a>"}gsm;
369    
370            # method error messages
371            # FIXME replace with link to Frey::Introspect data
372            $error =~ s{(method ")(\w+)(" via)}
373                    {$1<a target="$2" href="/Frey::Shell::Grep/as_markup?pattern=$2" title="grep $2">$2</a>$3}gsm;
374    
375            # link paths to editor
376            $error =~ s{((?:lib|t)/[\S]+)\s+(\d+\s+bytes)}
377                    {<a target="editor" href="/editor+$1+1" title="vi $1 [$2]">$1</a>}gsm;
378    
379            $error =~ s{(class ")([\w:]+)(")}
380                    {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm;
381    
382          return $error;          return $error;
383  }  }
384    
385    sub html_self {
386            my $self = shift;
387            my $html = $self;
388            $html =~ s{([\w:]+)=}{<a target="$1" href="/$1" title="introspect $1">$1</a>=}gsm;
389            return $html;
390    }
391    
392    =head2 error
393    
394    This method will return error to browser and backtrace unless
395    error message ends with LF C<\n> just like L<warn>
396    
397    =cut
398    
399  sub error {  sub error {
400          my $self = shift;          my $self = shift;
401          my $error = join(" ", @_);          my $error = join(" ", @_);
402    
403          my @backtrace = $self->backtrace;          my $fatal = '';
404          $error .= "\n\t" . join( "\n\t", @backtrace ) if @backtrace;          my $backtrace = '';
405    
406            if ( $error !~ m{\n$} ) {
407                    if ( my @backtrace = $self->backtrace ) {
408                            $backtrace =
409                                      "\n" . $self->html_self . "->error backtrace\n\t"
410                                    . $self->html_links( join( "\n\t", @backtrace ) )
411                                    ;
412                            $fatal = qq| frey-fatal|;
413                    }
414            }
415    
416          warn "ERROR: $error\n";          warn "ERROR: $error\n";
417          return          $self->add_icon('error');
418                  qq|<pre class="frey-error">|          $error = $self->html_links( $error );
419                  . $self->editor_links( $error ) .          return qq|<pre class="frey-error$fatal">$error $backtrace</pre>| ;
                 qq|</pre>|  
                 ;  
420  }  }
421    
422  =head1 Status line  =head1 Status line
# Line 370  Called at beginning of each request Line 454  Called at beginning of each request
454  sub clean_status {  sub clean_status {
455          my ($self) = shift;          my ($self) = shift;
456          @head = ( 'static/frey.css' );          @head = ( 'static/frey.css' );
         my $params = { request_url => $self->request_url };  
457          @status = (          @status = (
458                  { 'ClassBrowser' => Frey::ClassBrowser->new( %$params, usage_on_top => 0 )->as_markup },                  { 'ClassBrowser' => Frey::Class::Browser->new( usage_sort => 1, usage_on_top => 0 )->as_markup },
459                  { 'Bookmarklets' => Frey::Bookmarklet->new( %$params )->as_markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
460                  { 'INC' => Frey::INC->new( %$params )->as_markup },                  { 'INC' => Frey::INC->new->as_markup },
461          );          );
462          $icon_html = '';          $icon_html = '';
463  }  }
# Line 409  sub DEMOLISH { Line 492  sub DEMOLISH {
492    
493  sub icon_path {  sub icon_path {
494          my ($self,$class,$variant) = @_;          my ($self,$class,$variant) = @_;
495          my $icon = $class;  
496          $icon =~ s{::}{/}g;          sub icon_exists {
497          $icon .= "/$variant" if $variant;                  my $class = shift;
498          my $path = 'static/icons/' . $icon . '.png';                  $class =~ s{::}{/}g;
499          if ( -e $path ) {                  $class .= "/$variant" if $variant;
500                  warn "# $class from $self icon_path $path" if $self->debug;                  my $icon_path = 'static/icons/' . $class . '.png';
501                  return $path;                  return $icon_path if -e $icon_path;
502          } else {                  return;
503                  $self->TODO( "add $path icon for $class" );          }
504    
505            my $path = icon_exists( $class );
506            if ( ! $path ) {
507                    my $super_class = $class;
508                    while ( $super_class =~ s{::[^:]+$}{} && ! $path ) {
509                            $path = icon_exists( $super_class ) unless $super_class eq 'Frey'; # don't default on Frey icon
510                    }
511            }
512    
513            if ( ! $path ) {
514                    $self->TODO( "add icon for $class" . ( $variant ? " variant $variant" : '' ) );
515                  return undef;                  return undef;
516          }          }
517    
518            warn "# $class from $self icon_path $path" if $self->debug;
519            return $path;
520  }  }
521    
522  sub add_icon {  sub add_icon {
523          my ($self,$variant) = @_;          my ($self,$variant) = @_;
524    
525          my $class = ref($self);          my $class = $self->class if $self->can('class');
526          $class = $self->class if $self->can('class');          #$class ||= $self->title;
527            $class ||= ref($self);
528          my $icon_path = $self->icon_path( $class, $variant ) || return;          my $icon_path = $self->icon_path( $class, $variant ) || return;
529    
530          $icon_html .= qq|<link rel="icon" type="image/png" href="/$icon_path">|;          $icon_html .= qq|<link rel="icon" type="image/png" href="/$icon_path">|;
# Line 459  my $multiline_markers = { Line 557  my $multiline_markers = {
557          '"' => '"',          '"' => '"',
558  };  };
559    
560    =for later
561    
562  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';
563  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
564    
565    =cut
566    
567  sub log_path {  sub log_path {
568          $Frey::Bootstrap::log_path || warn "no log_path?";          $Frey::Bootstrap::log_path || die "no log_path?";
569    }
570    
571    our $pwd = `pwd`;
572    chomp $pwd;
573    
574    sub strip_full_path {
575            my ($self, $msg) = @_;
576            # Mojo seems to expand warn messages to full path which is annoying
577            $msg =~ s{/[^/]+/\.\./}{/}gs;
578            $msg =~ s{$pwd/*}{}gs;
579            return $msg;
580  }  }
581    
582    our $last_log_pos  = 0;
583    our $last_log_line = 0;
584    
585  sub warnings_html {  sub warnings_html {
586          my ($self,$level) = shift;          my ($self,$level) = shift;
587          $level ||= $self->debug,          $level ||= $self->debug,
# Line 474  sub warnings_html { Line 590  sub warnings_html {
590          my $max = 30;          my $max = 30;
591          my $pos = 0;          my $pos = 0;
592          my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines          my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
593          my $line = 0;          my $line = $last_log_line;
594          my $multiline_end;          my $multiline_end;
595    
596          # XXX do we really want to do this every time?          # XXX do we really want to do this every time?
# Line 488  sub warnings_html { Line 604  sub warnings_html {
604          }          }
605          $self->add_css( $css );          $self->add_css( $css );
606    
607          open(my $log, '<', $path) || die "can't open $path: $!";          open(my $log, '<', $path)    || die "can't open $path: $!";
608            seek($log, $last_log_pos, 0) || warn "can't seek: $!";
609          while(<$log>) {          while(<$log>) {
610                  chomp;                  chomp;
611                  $line++;                  $line++;
612    
613                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
614    
615                  my $style = '';                  my $style = '';
616    
617  =for filter  =for filter
# Line 517  sub warnings_html { Line 636  sub warnings_html {
636                  if ( m{^(#*)} ) {                  if ( m{^(#*)} ) {
637    
638                          my $level = $1;                          my $level = $1;
639                          my $msg = $_;                          my $msg = $self->strip_full_path( $_ );
640    
641                          my $spacer = ' ';                          my $spacer = ' ';
642                          my $real_msg = expand( $msg );                          my $real_msg = expand( $msg );
# Line 542  sub warnings_html { Line 661  sub warnings_html {
661                          $warnings[ $pos++ % $max ] = $msg;                          $warnings[ $pos++ % $max ] = $msg;
662                  }                  }
663          }          }
664          warn "log has $line lines tell position ",tell($log);          $last_log_pos = tell($log);
665            $last_log_line = $line;
666            warn "log has $line lines tell position $last_log_pos";
667          close($log) || die "can't close $path: $!";          close($log) || die "can't close $path: $!";
668    
669          my $size = -s $path;          my $size = -s $path;
# Line 556  sub warnings_html { Line 677  sub warnings_html {
677          return          return
678                  # need to wrap editor link into span so we can have links in warnings                  # need to wrap editor link into span so we can have links in warnings
679                    qq|<span class="frey-popup"><a target="editor" href="/editor+$path+$line" title="$path \| $size -> $s bytes \| $line -> $pos lines \| level $level">warn</a><code>|                    qq|<span class="frey-popup"><a target="editor" href="/editor+$path+$line" title="$path \| $size -> $s bytes \| $line -> $pos lines \| level $level">warn</a><code>|
680                  . $self->editor_links( $warnings )                  . $self->html_links( $warnings )
681                  . qq|</code></span></a>|                  . qq|</code></span>|
682                  ;                  ;
683  }  }
684    
# Line 574  sub backtrace { Line 695  sub backtrace {
695          my ($self) = @_;          my ($self) = @_;
696    
697          my @backtrace;          my @backtrace;
698          foreach ( 0 .. 5 ) {          foreach ( 1 .. 5 ) { # 0 = backtrace
699                  my (                  my (
700                          $package,$path,$line                          $package,$path,$line
701                          # subroutine hasargs                          # subroutine hasargs
# Line 583  sub backtrace { Line 704  sub backtrace {
704                  ) = caller($_) or last;                  ) = caller($_) or last;
705    
706                  push @backtrace,                  push @backtrace,
707                          qq|via $package at $path line $line|;                          qq|via "$package" at $path line $line|;
708          }          }
709          #warn "# backtrace: ", dump( @backtrace ) if @backtrace;          #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
710          return @backtrace;          return @backtrace;
711  }  }
712    
713    =head2 checkbox
714    
715    Generate checkbox html markup from some attribute
716    
717      my $html = $self->checkbox('attribute_name', $value);
718    
719    =cut
720    
721    sub checkbox {
722            my ($self,$name,$value) = @_;
723            my $checked = '';
724            my $all_checkboxes = eval { $self->$name };
725            warn "ERROR tried to get checkbox value for '$name' which is unknown: $@" if $@;
726            $all_checkboxes = [ $all_checkboxes ] unless ref($all_checkboxes) eq 'ARRAY'; # sigh, too chatty
727            $checked = ' checked' if grep { defined $_ && $_ eq $value } @$all_checkboxes;
728            warn "# checkbox $name $value $checked\t", $self->dump( $self->$name );
729            qq|<input name="$name" value="$value" type="checkbox"$checked>|;
730    }
731    
732    =head2 strip
733    
734    Strip whitespace around content
735    
736      my $stripped = strip('  no more whitespace around this   ');
737    
738    =cut
739    
740    sub strip {
741            my $t = shift;
742            $t =~ s{^\s+}{}gs;
743            $t =~ s{>\s+<}{><}gs;
744            $t =~ s{\s+$}{}gs;
745            return $t;
746    }
747    
748  1;  1;

Legend:
Removed from v.625  
changed lines
  Added in v.908

  ViewVC Help
Powered by ViewVC 1.1.26