/[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 588 by dpavlin, Fri Nov 28 15:07:03 2008 UTC revision 819 by dpavlin, Fri Dec 12 18:01:02 2008 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;
# Line 22  sub head { @head } Line 25  sub head { @head }
25  has 'request_url' => (  has 'request_url' => (
26          is => 'rw',          is => 'rw',
27          isa => 'Uri', coerce => 1,          isa => 'Uri', coerce => 1,
28          default => '/',          required => 1,
29            default => sub {
30                    carp "undefined request_url";
31                    '/';
32            },
33  );  );
34    
35  has 'title' => (  has 'title' => (
# Line 61  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 => 128,          default => 250,
72  );  );
73    
74  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
# Line 80  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+).+?/\1|[^>]+/?)>}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 98  sub popup_dropdown { Line 105  sub popup_dropdown {
105    
106          $content =~ s{<span>(<code>[^<]+</code>)</span>}{$1} && $self->TODO("code wrapped in span");          $content =~ s{<span>(<code>[^<]+</code>)</span>}{$1} && $self->TODO("code wrapped in span");
107    
108          warn "## $type [$name] = ", length( $content ), " bytes" if $self->debug;          warn "## $type [$name] = ", length( $content ), " bytes"; # if $self->debug; # FIXME
109    
110          if ( $name =~ m{::} && $name !~ $re_html ) {          if ( $name =~ m{::} && $name !~ $re_html ) {
111                  return qq|<a class="frey-$type" target="$name" href="/$name">$name $content</a>\n|;                  return qq|<a class="frey-$type" target="$name" href="/$name">$name $content</a>\n|;
# Line 121  sub _head_html { Line 128  sub _head_html {
128                  $path =~ s!^/!!;                  $path =~ s!^/!!;
129                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
130                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
131                                  qq|<!-- $path --><script type="text/javascript">\n| . read_file($path) . qq|\n</script>| :                                  qq|<script type="text/javascript">\n/* inline $path */\n\n| . read_file($path) . qq|\n</script>| :
132                                  qq|<script type="text/javascript" src="/$path"></script>|;                                  qq|<script type="text/javascript" src="/$path"></script>|;
133                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
134                          $out .= $self->_inline_path( $path ) ?                          $out .= $self->_inline_path( $path ) ?
135                                  qq|<!-- $path --><style type="text/css">\n| . read_file( $path ) . qq|\n</style>| :                                  qq|<style type="text/css">\n/* inline $path */\n\n| . read_file( $path ) . qq|\n</style>| :
136                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
137                  } elsif ( $path =~ m{<.+>}s ) {                  } elsif ( $path =~ m{<.+>}s ) {
138                          $out .= $path;                          $out .= $path;
# Line 178  sub add_css { Line 185  sub add_css {
185          | );          | );
186  }  }
187    
188    sub add_js {
189            my ($self,$js) = @_;
190            my ( $package, $path, $line ) = caller;
191    
192            if ( $js =~ m{http.*\.js} ) {
193                    $self->add_head( qq|
194                            <script type="text/javascript" src="$js">
195                            /* via $package at $path line $line */
196                            </script>
197                    |);
198            } else {
199                    $self->add_head( qq|
200                            <script type="text/javascript">
201                            /* via $package at $path line $line */
202                            $js
203                            </script>
204                    | );
205            };
206    }
207    
208  our $reload_counter = 0;  our $reload_counter = 0;
209    
210    
# Line 216  sub page { Line 243  sub page {
243          $url =~ s{\?reload=\d+}{};          $url =~ s{\?reload=\d+}{};
244    
245          my $body = $a->{body};          my $body = $a->{body};
246          $body ||= $self->as_markup if $self->can('as_markup');          if ( ! $body ) {
247                    my $run = $a->{run} || 'as_markup';
248                    warn "# no body, invoke $self->$run on ", ref($self);
249                    eval {
250                            $body = $self->$run;
251                    };
252                    $body = $self->error( $@, '' ) if $@;
253            }
254          if ( $self->content_type !~ m{html} ) {          if ( $self->content_type !~ m{html} ) {
255                  warn "# return only $self body ", $self->content_type;                  warn "# return only $self body ", $self->content_type;
256                  return $body                  return $body
# Line 235  sub page { Line 269  sub page {
269                  qq|                  qq|
270                          <span class="right">                          <span class="right">
271                          <a title="reload $url"  href="/reload$url">reload</a>                          <a title="reload $url"  href="/reload$url">reload</a>
272                          <a title="$description" href="/exit$url">$exit</a>                          <a title="$description" href="/exit$url" target="exit">$exit</a>
273                          </span>                          </span>
274                  |;                  |;
275    
# Line 291  sub editor { Line 325  sub editor {
325          qq|>$class</a>|;          qq|>$class</a>|;
326  }  }
327    
328  =head2 editor_links  =head2 html_links
329    
330  Create HTML links to editor for perl error message  Create HTML links to editor for perl error message
331    
332    my $html = $self->editor_links( $error )    my $html = $self->html_links( $error )
333    
334  =cut  =cut
335    
336  sub editor_links {  sub html_links {
337          my ( $self, $error ) = @_;          my ( $self, $error ) = @_;
338    
339            $error = $self->strip_full_path( $error );
340    
341    #       $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back
342    
343            # perl's backtrace
344          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
345                  {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;
346    
347          $error =~ s{(via (?:package) "?)([\w:]+)("?)}          $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)}
348                  {$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
349            || # or anything that looks like "Class::Name"
350            $error =~ s{"(\w+(?:::\w+)+)"}
351                    {"<a target="$1" href="/$1" title="introspect $1">$1</a>"}gsm;
352    
353            # method error messages
354            # FIXME replace with link to Frey::Introspect data
355            $error =~ s{(method ")(\w+)(" via)}
356                    {$1<a target="$2" href="/Frey::Shell::Grep/as_markup?pattern=$2" title="grep $2">$2</a>$3}gsm;
357    
358            # link paths to editor
359            $error =~ s{((?:lib|t)/[\S]+)\s+(\d+\s+bytes)}
360                    {<a target="editor" href="/editor+$1+1" title="vi $1 [$2]">$1</a>}gsm;
361    
362            $error =~ s{(class ")([\w:]+)(")}
363                    {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm;
364    
365          return $error;          return $error;
366  }  }
367    
368    =head2 error
369    
370    This method will return error to browser and backtrace unless
371    error message ends with LF C<\n> just like L<warn>
372    
373    =cut
374    
375  sub error {  sub error {
376          my $self = shift;          my $self = shift;
377          my $error = join(" ", @_);          my $error = join(" ", @_);
378    
379          my @backtrace = $self->backtrace;          my $fatal = '';
380          $error .= "\n\t" . join( "\n\t", @backtrace ) if @backtrace;  
381            if ( $error !~ m{\n$} ) {
382                    if ( my @backtrace = $self->backtrace ) {
383                            $error .= "\n\t" . join( "\n\t", @backtrace );
384                            $fatal = qq| frey-fatal|;
385                    }
386            }
387    
388          warn "ERROR: $error\n";          warn "ERROR: $error\n";
389          return          return
390                  qq|<pre class="frey-error">|                  qq|<pre class="frey-error$fatal">|
391                  . $self->editor_links( $error ) .                  . $self->html_links( $error ) .
392                  qq|</pre>|                  qq|</pre>|
393                  ;                  ;
394  }  }
# Line 362  sub clean_status { Line 429  sub clean_status {
429          my ($self) = shift;          my ($self) = shift;
430          @head = ( 'static/frey.css' );          @head = ( 'static/frey.css' );
431          @status = (          @status = (
432                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },                  { 'ClassBrowser' => Frey::Class::Browser->new( usage_sort => 1, usage_on_top => 0 )->as_markup },
433                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
434                  { 'INC' => Frey::INC->new->as_markup },                  { 'INC' => Frey::INC->new->as_markup },
435          );          );
436          $icon_html = '';          $icon_html = '';
437  }  }
# Line 399  sub DEMOLISH { Line 466  sub DEMOLISH {
466    
467  sub icon_path {  sub icon_path {
468          my ($self,$class,$variant) = @_;          my ($self,$class,$variant) = @_;
469          my $icon = $class;  #       $class ||= $self->title;
470          $icon =~ s{::}{/}g;  
471          $icon .= "/$variant" if $variant;          sub icon_exists {
472          my $path = 'static/icons/' . $icon . '.png';                  my $class = shift;
473          if ( -e $path ) {                  $class =~ s{::}{/}g;
474                  warn "# $class from $self icon_path $path" if $self->debug;                  $class .= "/$variant" if $variant;
475                  return $path;                  my $icon_path = 'static/icons/' . $class . '.png';
476          } else {                  return $icon_path if -e $icon_path;
477                  $self->TODO( "add $path icon for $class" );                  return;
478            }
479    
480            my $path = icon_exists( $class );
481            if ( ! $path ) {
482                    my $super_class = $class;
483                    while ( $super_class =~ s{::[^:]+$}{} && ! $path ) {
484                            $path = icon_exists( $super_class ) unless $super_class eq 'Frey'; # don't default on Frey icon
485                    }
486            }
487    
488            if ( ! $path ) {
489                    $self->TODO( "add icon for $class" . ( $variant ? " variant $variant" : '' ) );
490                  return undef;                  return undef;
491          }          }
492    
493            warn "# $class from $self icon_path $path" if $self->debug;
494            return $path;
495  }  }
496    
497  sub add_icon {  sub add_icon {
# Line 449  my $multiline_markers = { Line 531  my $multiline_markers = {
531          '"' => '"',          '"' => '"',
532  };  };
533    
534    =for later
535    
536  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';  my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';
537  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
538    
539    =cut
540    
541  sub log_path {  sub log_path {
542          $Frey::Bootstrap::log_path || warn "no log_path?";          $Frey::Bootstrap::log_path || die "no log_path?";
543    }
544    
545    our $pwd = `pwd`;
546    chomp $pwd;
547    
548    sub strip_full_path {
549            my ($self, $msg) = @_;
550            # Mojo seems to expand warn messages to full path which is annoying
551            $msg =~ s{/[^/]+/\.\./}{/}gs;
552            $msg =~ s{$pwd/*}{}gs;
553            return $msg;
554  }  }
555    
556    our $last_log_pos  = 0;
557    our $last_log_line = 0;
558    
559  sub warnings_html {  sub warnings_html {
560          my ($self,$level) = shift;          my ($self,$level) = shift;
561          $level ||= $self->debug,          $level ||= $self->debug,
562          my $path = $self->log_path;          my $path = $self->log_path;
563    
564          my $max = 50;          my $max = 30;
565          my $pos = 0;          my $pos = 0;
566          my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines          my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
567          my $line = 0;          my $line = $last_log_line;
568          my $multiline_end;          my $multiline_end;
569    
570          open(my $log, '<', $path) || die "can't open $path: $!";          # XXX do we really want to do this every time?
571            my $css = qq|/* short css classes for levels */\n|;
572            my $level_to_class;
573            foreach ( keys %$warn_colors ) {
574                    my $l = length($_);
575                    my $class = 'l' . $l;
576                    $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
577                    $level_to_class->{ $_ } = $class;
578            }
579            $self->add_css( $css );
580    
581            open(my $log, '<', $path)    || die "can't open $path: $!";
582            seek($log, $last_log_pos, 0) || warn "can't seek: $!";
583          while(<$log>) {          while(<$log>) {
584                  chomp;                  chomp;
585                  $line++;                  $line++;
586    
587                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
588    
589                  my $style = '';                  my $style = '';
590    
591  =for filter  =for filter
# Line 493  sub warnings_html { Line 607  sub warnings_html {
607                          }                          }
608    
609  =cut  =cut
610                  if ( m{^(#*)\s+} ) { # FIXME                  if ( m{^(#*)} ) {
611    
612                          $style = $warn_colors->{$1}                          my $level = $1;
613                                  ? ' style="color:' . $warn_colors->{$1} . '"'                          my $msg = $self->strip_full_path( $_ );
                                 : '';  
614    
                         my $msg = $self->html_escape( $_ );  
615                          my $spacer = ' ';                          my $spacer = ' ';
616                          if ( length($msg) > $self->html_dump_width ) {                          my $real_msg = expand( $msg );
617                                  $msg = substr( $msg, 0, $self->html_dump_width );                          if ( length($real_msg) > $self->html_dump_width ) {
618                                    
619                                    $real_msg = substr( $msg, 0, $self->html_dump_width );
620                                    $msg = unexpand( $real_msg );
621                                  $spacer = '&hellip;'                                  $spacer = '&hellip;'
622                          }                          }
623                          $warnings[ $pos++ % $max ]  
624                                  = $msg                          $msg = $self->html_escape( $msg );
625  #                               = ( $style ? qq|<span$style>$msg</span>| : $msg )  
626                                  . $spacer                          if ( my $class = $level_to_class->{ $level } ) {
627                                  . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">+$line</a><br/>|;                                  $msg = qq|<span class="$class">$msg</span>|;
628                          # FIXME <tt> should be <code> but CSS hates me                          }
629    
630                            #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
631                            $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
632                                    . ( $spacer ? $spacer : '' )
633                                    . "\n"; # XXX <pre> needs this
634    
635                            $warnings[ $pos++ % $max ] = $msg;
636                  }                  }
637          }          }
638            $last_log_pos = tell($log);
639            $last_log_line = $line;
640            warn "log has $line lines tell position $last_log_pos";
641          close($log) || die "can't close $path: $!";          close($log) || die "can't close $path: $!";
642    
643          my $size = -s $path;          my $size = -s $path;
644    
645          my $warnings = join('',          my $warnings = join("",
646                  map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. $max                  map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
647          );          );
648    
649          my $s = length($warnings);          my $s = length($warnings);
650    
651          return          return
652                  # need to wrap into span so we can have links in warnings                  # need to wrap editor link into span so we can have links in warnings
653                    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>|
654                  . $warnings                  . $self->html_links( $warnings )
655  #               . $self->editor_links( $warnings )                  . qq|</code></span>|
                 . qq|</code></span></a>|  
656                  ;                  ;
657  }  }
658    
# Line 554  sub backtrace { Line 678  sub backtrace {
678                  ) = caller($_) or last;                  ) = caller($_) or last;
679    
680                  push @backtrace,                  push @backtrace,
681                          qq|via $package at $path line $line|;                          qq|via "$package" at $path line $line|;
682          }          }
683          warn "# backtrace: ", dump( @backtrace ) if @backtrace;          #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
684          return @backtrace;          return @backtrace;
685  }  }
686    
687    =head2 checkbox
688    
689    Generate checkbox html markup from some attribute
690    
691      my $html = $self->checkbox('attribute_name', $value);
692    
693    =cut
694    
695    sub checkbox {
696            my ($self,$name,$value) = @_;
697            my $checked = '';
698            my $all_checkboxes = eval { $self->$name };
699            warn "ERROR tried to get checkbox value for '$name' which is unknown: $@" if $@;
700            $all_checkboxes = [ $all_checkboxes ] unless ref($all_checkboxes) eq 'ARRAY'; # sigh, too chatty
701            $checked = ' checked' if grep { defined $_ && $_ eq $value } @$all_checkboxes;
702            warn "# checkbox $name $value $checked\t", $self->dump( $self->$name );
703            qq|<input name="$name" value="$value" type="checkbox"$checked>|;
704    }
705    
706    =head2 strip
707    
708    Strip whitespace around content
709    
710      my $stripped = strip('  no more whitespace around this   ');
711    
712    =cut
713    
714    sub strip {
715            my $t = shift;
716            $t =~ s{^\s+}{}gs;
717            $t =~ s{>\s+<}{><}gs;
718            $t =~ s{\s+$}{}gs;
719            return $t;
720    }
721    
722  1;  1;

Legend:
Removed from v.588  
changed lines
  Added in v.819

  ViewVC Help
Powered by ViewVC 1.1.26