/[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

Contents of /branches/zimbardo/lib/Frey/Web.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 881 - (show annotations)
Fri Dec 19 14:10:03 2008 UTC (15 years, 4 months ago) by dpavlin
Original Path: trunk/lib/Frey/Web.pm
File size: 17291 byte(s)
fix warning
1 package Frey::Web;
2 use Moose::Role;
3
4 with 'Frey::Session';
5
6 #use Continuity::Widget::DomNode;
7 use Data::Dump qw/dump/;
8 use Carp qw/confess cluck carp/;
9 use File::Slurp;
10 use Text::Tabs; # expand, unexpand
11
12 use lib 'lib';
13
14 use Frey::Types;
15
16 use Frey::Bookmarklet;
17 use Frey::Class::Browser;
18 use Frey::INC;
19
20 use Frey::SVK;
21
22 our @head;
23 sub head { @head }
24
25 has 'request_url' => (
26 is => 'rw',
27 isa => 'Uri', coerce => 1,
28 required => 1,
29 default => sub {
30 carp "undefined request_url";
31 '/';
32 },
33 );
34
35 has 'title' => (
36 is => 'rw',
37 isa => 'Str',
38 lazy => 1,
39 default => sub {
40 my ($self) = @_;
41 ref($self);
42 },
43 );
44
45 has 'content_type' => (
46 is => 'rw',
47 isa => 'Str',
48 default => 'text/html',
49 documentation => 'Content-type header',
50 );
51
52 has 'dump_max_bytes' => (
53 is => 'rw',
54 isa => 'Int',
55 default => 4096,
56 documentation => 'maximum dump size sent to browser before truncation',
57 );
58
59 has 'inline_smaller_than' => (
60 is => 'rw',
61 isa => 'Int',
62 default => 10240,
63 documentation => 'inline JavaScript and CSS to reduce round-trips',
64 );
65
66 has 'html_dump_width' => (
67 documentation => 'crop longer lines in dumps',
68 is => 'rw',
69 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
71 default => 250,
72 );
73
74 my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
75 my $escape_re = join '|' => keys %escape;
76
77 sub html_escape {
78 my ( $self, $html ) = @_;
79 $html =~ s/($escape_re)/$escape{$1}/g;
80 return $html;
81 }
82
83 sub html_dump {
84 my ( $self, $dump ) = @_;
85 $dump = dump( $dump ) if ref($dump);
86 my $width = $self->html_dump_width;
87 $dump =~ s{(\n[^\n]{$width})([^\n]+?)([^\n]{5})}{\n$1...$3}gs;
88 $dump = $self->html_escape( $dump );
89 $dump =~ s{\Q...\E}{&hellip;}gs;
90 # $dump =~ $self->html_links( $dump ); # FIXME include this
91 return "<code>$dump</code>";
92 }
93
94 sub popup { my $self = shift; $self->popup_dropdown('popup', @_); }
95 sub dropdown { my $self = shift; $self->popup_dropdown('dropdown', @_); }
96
97 our $re_html = qr{<(?:!--|(\w+)|[^>]+)/?>}s; # relaxed html check for one semi-valid tag
98
99 sub popup_dropdown {
100 my ( $self, $type, $name, $content, $full ) = @_;
101
102 $content = $self->html_dump($content) if ref $content;
103
104 $content = qq|<span>$content</span>| unless $content =~ m{^\s*<(span|a|code).+?/\1>\s*};
105
106 $content =~ s{<span>(<code>[^<]+</code>)</span>}{$1} && $self->TODO("code wrapped in span");
107
108 warn "## $type [$name] = ", length( $content ), " bytes"; # if $self->debug; # FIXME
109
110 if ( $name =~ m{::} && $name !~ $re_html ) {
111 return qq|<a class="frey-$type" target="$name" href="/$name">$name $content</a>\n|;
112 } elsif ( $name =~ s{^\s*(<a)\s+}{$1 class="frey-$type"} ) {
113 return qq|$name $content\n|;
114 } else {
115 return qq|<span class="frey-$type">$name $content</span>\n|;
116 }
117 }
118
119 sub _inline {
120 my ( $self, $path ) = @_;
121 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 {
127 my $self = shift;
128 my $out = '';
129 foreach my $path ( @head ) {
130 $path =~ s!^/!!;
131 if ( $path =~ m/\.js$/ ) {
132 my $size;
133 $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>|;
136 } elsif ( $path =~ m/\.css$/ ) {
137 my $size;
138 $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">|;
141 } elsif ( $path =~ m{<.+>}s ) {
142 $out .= $path;
143 } else {
144 confess "don't know how to render $path";
145 }
146 $out .= "\n";
147 }
148 return $out;
149 }
150
151 =head2 add_head
152
153 $o->add_head( 'path/to/external.js' );
154
155 my $size = $o->add_head( 'path/to/external.css' );
156
157 $o->add_head( '<!-- html content -->' );
158
159 =cut
160
161 sub add_head {
162 my ( $self, $path ) = @_;
163 return if ! defined $path || $path eq '';
164 $path =~ s!^/!!;
165
166 if ( $path =~ $re_html ) {
167 push @head, $path;
168 } elsif ( -e $path ) {
169 if ( $path =~ m/\.(?:js|css)$/ ) {
170 push @head, $path;
171 } else {
172 confess "can't add_head( $path ) it's not js or css";
173 }
174 return -s $path;
175 } else {
176 confess "can't find $path: $!";
177 }
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 if ( $content =~ m{\.(js|css)} ) {
191 $content = "/$content" if -e $content;
192 if ( $content =~ $re_html ) {
193 $head = qq|
194 $content
195 <!-- $type via $package at $path line $line -->
196 |;
197 } elsif ( $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 {
221 my ($self,$css) = @_;
222 $self->_add_css_js( 'css', $css );
223 }
224
225 sub add_js {
226 my ($self,$js) = @_;
227 $self->_add_css_js( 'js', $js );
228 }
229
230 our $reload_counter = 0;
231
232
233 =head2 page
234
235 $self->page(
236 title => 'page title',
237 head => '<!-- optional head markup -->',
238 body => '<b>Page Body</b>',
239 );
240
241 =cut
242
243 our @status;
244 sub status { @status };
245
246 our $icon_html;
247
248 sub page {
249 my $self = shift;
250 my $a = {@_};
251
252 warn "## page ",dump($a);
253
254 $reload_counter++;
255
256 my $status_line = '';
257
258 foreach my $part ( @status ) {
259 foreach my $name ( keys %$part ) {
260 $status_line .= $self->popup( $name, $part->{$name} );
261 }
262 }
263
264 my $url = $self->request_url;
265 $url =~ s{\?reload=\d+}{};
266
267 my $body = $a->{body};
268 if ( ! $body ) {
269 my $run = $a->{run} || 'as_markup';
270 warn "# no body, invoke $self->$run on ", ref($self);
271 $body = $self->$run;
272 }
273 if ( $self->content_type !~ m{html} ) {
274 warn "# return only $self body ", $self->content_type;
275 return $body
276 } elsif ( ! defined $body ) {
277 warn "# no body";
278 $body = '<!-- no body -->';
279 }
280
281 $status_line .= $self->warnings_html;
282
283 my ($exit,$description) = ('exit','stop server');
284 ($exit,$description) = ('restart','restart server')
285 if $ENV{FREY_RESTART}; # tune labels on exit link
286
287 my $right =
288 qq|
289 <span class="right">
290 <a title="reload $url" href="/reload$url">reload</a>
291 <a title="$description" href="/exit$url" target="exit">$exit</a>
292 </span>
293 |;
294
295 my $svk = Frey::SVK->new;
296 my $info = $svk->info;
297 my $revision = $svk->info->{Revision} || '';
298 $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)};
299
300 $self->add_icon unless $icon_html;
301
302 my $html = join("\n",
303 qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
304 $self->_head_html,
305 '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',
306 '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
307 ( $icon_html || '<!-- no icon -->' ),
308 ( $a->{head} || '' ),
309 qq|
310 </head><body>
311 $body
312 <div class="frey-status-line">
313 <a href="/">Frey</a> $Frey::VERSION $revision
314 $status_line
315 $right
316 </div>
317 </body></html>
318 |,
319 );
320
321 warn "## >>> page ",length($html), " bytes\n" if $self->debug;
322
323 return $html;
324 }
325
326 =head2 editor
327
328 Create HTML editor link with optional line and title
329
330 my $html = $self->editor( $class, $line, $title );
331
332 =cut
333
334 sub editor {
335 my ( $self, $class, $line, $title ) = @_;
336 confess "need class" unless $class;
337 if ( ! defined $title ) {
338 $title = "edit $class";
339 $title .= " line $line" if $line;
340 }
341 $line ||= 1;
342 qq|<a target="editor" href="/editor+$class+$line"| .
343 ( $title ? qq| title="$title"| : '' ) .
344 qq|>$class</a>|;
345 }
346
347 =head2 html_links
348
349 Create HTML links to editor for perl error message
350
351 my $html = $self->html_links( $error )
352
353 =cut
354
355 sub html_links {
356 my ( $self, $error ) = @_;
357
358 $error = $self->strip_full_path( $error );
359
360 # $error =~ s[(bless\({\s+.+?\s+},\s+)("[^"]+")(\) at)][<span class="frey-dropdown">$1<code>$2</code>$3</span>]gs; # FIXME insert bless hiding back
361
362 # perl's backtrace
363 $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
364 {at <a target="editor" href="/editor+$1+$2" title="vi $1 +$2">$1</a> line $2}gsm;
365
366 $error =~ s{(via (?:package)\s+"?)([\w:]+)("?)}
367 {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm
368 || # or anything that looks like "Class::Name"
369 $error =~ s{"(\w+(?:::\w+)+)"}
370 {"<a target="$1" href="/$1" title="introspect $1">$1</a>"}gsm;
371
372 # method error messages
373 # FIXME replace with link to Frey::Introspect data
374 $error =~ s{(method ")(\w+)(" via)}
375 {$1<a target="$2" href="/Frey::Shell::Grep/as_markup?pattern=$2" title="grep $2">$2</a>$3}gsm;
376
377 # link paths to editor
378 $error =~ s{((?:lib|t)/[\S]+)\s+(\d+\s+bytes)}
379 {<a target="editor" href="/editor+$1+1" title="vi $1 [$2]">$1</a>}gsm;
380
381 $error =~ s{(class ")([\w:]+)(")}
382 {$1<a target="$2" href="/$2" title="introspect $2">$2</a>$3}gsm;
383
384 return $error;
385 }
386
387 sub html_self {
388 my $self = shift;
389 my $html = $self;
390 $html =~ s{([\w:]+)=}{<a target="$1" href="/$1" title="introspect $1">$1</a>=}gsm;
391 return $html;
392 }
393
394 =head2 error
395
396 This method will return error to browser and backtrace unless
397 error message ends with LF C<\n> just like L<warn>
398
399 =cut
400
401 sub error {
402 my $self = shift;
403 my $error = join(" ", @_);
404
405 my $fatal = '';
406 my $backtrace = '';
407
408 if ( $error !~ m{\n$} ) {
409 if ( my @backtrace = $self->backtrace ) {
410 $backtrace =
411 "\n" . $self->html_self . "->error backtrace\n\t"
412 . $self->html_links( join( "\n\t", @backtrace ) )
413 ;
414 $fatal = qq| frey-fatal|;
415 }
416 }
417
418 warn "ERROR: $error\n";
419 $self->add_icon('error');
420 $error = $self->html_links( $error );
421 return qq|<pre class="frey-error$fatal">$error $backtrace</pre>| ;
422 }
423
424 =head1 Status line
425
426 =head2 add_status
427
428 $self->add_status( { name => { some => 'data' } } );
429
430 $self->add_status( "append to last status popup" );
431
432 =cut
433
434 sub add_status {
435 my ( $self, $data ) = @_;
436 push @status, { 'X' => [ $self->backtrace ] };
437 if ( ref($data) ) {
438 push @status, $data;
439 } else {
440 if ( defined $status[ $#status ] ) {
441 $status[ $#status ]->{ '+' } = $data;
442 } else {
443 push @status, { '+' => $data };
444 }
445 }
446 }
447
448 =head2 clean_status
449
450 Called at beginning of each request
451
452 $self->clean_status;
453
454 =cut
455
456 sub clean_status {
457 my ($self) = shift;
458 @head = ( 'static/frey.css' );
459 @status = (
460 { 'ClassBrowser' => Frey::Class::Browser->new( usage_sort => 1, usage_on_top => 0 )->as_markup },
461 { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },
462 { 'INC' => Frey::INC->new->as_markup },
463 );
464 $icon_html = '';
465 }
466
467 =head2 status_parts
468
469 Dump all status line parts
470
471 $self->status_parts
472
473 =cut
474
475 sub status_parts {
476 warn "## status parts ", dump( map { keys %$_ } @status );
477 }
478
479 =for debug
480
481 sub DEMOLISH {
482 my ( $self ) = @_;
483 warn "## $self DEMOLISH status ", $#status + 1, " elements ", dump( map { keys %$_ } @status ) if @status;
484 }
485
486 =cut
487
488 =head2 add_icon
489
490 Frey::Foo->add_icon; # /static/icons/Frey/Foo.png
491 Frey::Foo->add_icon('warning'); # /static/icons/Frey/Foo/warning.png
492
493 =cut
494
495 sub icon_path {
496 my ($self,$class,$variant) = @_;
497
498 sub icon_exists {
499 my $class = shift;
500 $class =~ s{::}{/}g;
501 $class .= "/$variant" if $variant;
502 my $icon_path = 'static/icons/' . $class . '.png';
503 return $icon_path if -e $icon_path;
504 return;
505 }
506
507 my $path = icon_exists( $class );
508 if ( ! $path ) {
509 my $super_class = $class;
510 while ( $super_class =~ s{::[^:]+$}{} && ! $path ) {
511 $path = icon_exists( $super_class ) unless $super_class eq 'Frey'; # don't default on Frey icon
512 }
513 }
514
515 if ( ! $path ) {
516 $self->TODO( "add icon for $class" . ( $variant ? " variant $variant" : '' ) );
517 return undef;
518 }
519
520 warn "# $class from $self icon_path $path" if $self->debug;
521 return $path;
522 }
523
524 sub add_icon {
525 my ($self,$variant) = @_;
526
527 my $class = $self->class if $self->can('class');
528 #$class ||= $self->title;
529 $class ||= ref($self);
530 my $icon_path = $self->icon_path( $class, $variant ) || return;
531
532 $icon_html .= qq|<link rel="icon" type="image/png" href="/$icon_path">|;
533 warn "# using icon $icon_path";
534
535 =for later
536
537 # FIXME http://en.wikipedia.org/wiki/Favicon suggest just rel="icon" but that doesn't seem to work!
538 my $ico_path = $icon_path;
539 $ico_path =~ s{png$}{ico};
540 if ( ! -e $ico_path ) {
541 system "convert $icon_path $ico_path";
542 warn "# convert $icon_path $ico_path : $@";
543 }
544 $icon_html .= qq|<link rel="shortcut icon" type="image/x-icon" href="/$ico_path">| if -e $ico_path;
545
546 =cut
547
548 }
549
550 my $warn_colors = {
551 '#' => '#444',
552 '##' => '#888',
553 };
554
555 my $multiline_markers = {
556 '(' => ')',
557 '{' => '}',
558 '[' => ']',
559 '"' => '"',
560 };
561
562 =for later
563
564 my $multiline_re = '[\\' . join('\\', keys %$multiline_markers ) . ']';
565 warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
566
567 =cut
568
569 sub log_path {
570 $Frey::Bootstrap::log_path || die "no log_path?";
571 }
572
573 our $pwd = `pwd`;
574 chomp $pwd;
575
576 sub strip_full_path {
577 my ($self, $msg) = @_;
578 # Mojo seems to expand warn messages to full path which is annoying
579 $msg =~ s{/[^/]+/\.\./}{/}gs;
580 $msg =~ s{$pwd/*}{}gs;
581 return $msg;
582 }
583
584 our $last_log_pos = 0;
585 our $last_log_line = 0;
586
587 sub warnings_html {
588 my ($self,$level) = shift;
589 $level ||= $self->debug,
590 my $path = $self->log_path;
591
592 my $max = 30;
593 my $pos = 0;
594 my @warnings = ( '' x $max ); # XXX circualar buffer for 50 lines
595 my $line = $last_log_line;
596 my $multiline_end;
597
598 # XXX do we really want to do this every time?
599 my $css = qq|/* short css classes for levels */\n|;
600 my $level_to_class;
601 foreach ( keys %$warn_colors ) {
602 my $l = length($_);
603 my $class = 'l' . $l;
604 $css .= qq|.$class { color: $warn_colors->{$_} }\n|;
605 $level_to_class->{ $_ } = $class;
606 }
607 $self->add_css( $css );
608
609 open(my $log, '<', $path) || die "can't open $path: $!";
610 seek($log, $last_log_pos, 0) || warn "can't seek: $!";
611 while(<$log>) {
612 chomp;
613 $line++;
614
615 next if m{^\s+(Mojo|Class::MOP|Moose)::};
616
617 my $style = '';
618
619 =for filter
620
621 if ( $multiline_end ) {
622 if ( m{^\Q$multiline_end\E} || m{^\s.+\Q$multiline_end\E;$} ) {
623 # warn "## $line end of $multiline_end in '$_'\n";
624 undef $multiline_end;
625 } else {
626 # warn "## $line skipped\n";
627 }
628 } elsif ( m{^(#*)\s+} ) {
629 my $l = $1 ? length($1) : 0;
630 if ( $l > $level ) {
631 undef $multiline_end;
632 $multiline_end = $multiline_markers->{$1} if m{($multiline_re)$};
633 # warn "## $line start $1 .. $multiline_end level $l > $level for '$_'\n" if $multiline_end;
634 next;
635 }
636
637 =cut
638 if ( m{^(#*)} ) {
639
640 my $level = $1;
641 my $msg = $self->strip_full_path( $_ );
642
643 my $spacer = ' ';
644 my $real_msg = expand( $msg );
645 if ( length($real_msg) > $self->html_dump_width ) {
646
647 $real_msg = substr( $msg, 0, $self->html_dump_width );
648 $msg = unexpand( $real_msg );
649 $spacer = '&hellip;'
650 }
651
652 $msg = $self->html_escape( $msg );
653
654 if ( my $class = $level_to_class->{ $level } ) {
655 $msg = qq|<span class="$class">$msg</span>|;
656 }
657
658 #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
659 $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
660 . ( $spacer ? $spacer : '' )
661 . "\n"; # XXX <pre> needs this
662
663 $warnings[ $pos++ % $max ] = $msg;
664 }
665 }
666 $last_log_pos = tell($log);
667 $last_log_line = $line;
668 warn "log has $line lines tell position $last_log_pos";
669 close($log) || die "can't close $path: $!";
670
671 my $size = -s $path;
672
673 my $warnings = join("",
674 map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
675 );
676
677 my $s = length($warnings);
678
679 return
680 # need to wrap editor link into span so we can have links in warnings
681 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>|
682 . $self->html_links( $warnings )
683 . qq|</code></span>|
684 ;
685 }
686
687
688 =head2 backtrace
689
690 Show backtrace with links to editor
691
692 my @backtrace = $self->backtrace;
693
694 =cut
695
696 sub backtrace {
697 my ($self) = @_;
698
699 my @backtrace;
700 foreach ( 1 .. 5 ) { # 0 = backtrace
701 my (
702 $package,$path,$line
703 # subroutine hasargs
704 # wantarray evaltext is_require
705 # hints bitmask hinthash
706 ) = caller($_) or last;
707
708 push @backtrace,
709 qq|via "$package" at $path line $line|;
710 }
711 #warn "# backtrace: ", dump( @backtrace ) if @backtrace;
712 return @backtrace;
713 }
714
715 =head2 checkbox
716
717 Generate checkbox html markup from some attribute
718
719 my $html = $self->checkbox('attribute_name', $value);
720
721 =cut
722
723 sub checkbox {
724 my ($self,$name,$value) = @_;
725 my $checked = '';
726 my $all_checkboxes = eval { $self->$name };
727 warn "ERROR tried to get checkbox value for '$name' which is unknown: $@" if $@;
728 $all_checkboxes = [ $all_checkboxes ] unless ref($all_checkboxes) eq 'ARRAY'; # sigh, too chatty
729 $checked = ' checked' if grep { defined $_ && $_ eq $value } @$all_checkboxes;
730 warn "# checkbox $name $value $checked\t", $self->dump( $self->$name );
731 qq|<input name="$name" value="$value" type="checkbox"$checked>|;
732 }
733
734 =head2 strip
735
736 Strip whitespace around content
737
738 my $stripped = strip(' no more whitespace around this ');
739
740 =cut
741
742 sub strip {
743 my $t = shift;
744 $t =~ s{^\s+}{}gs;
745 $t =~ s{>\s+<}{><}gs;
746 $t =~ s{\s+$}{}gs;
747 return $t;
748 }
749
750 1;

  ViewVC Help
Powered by ViewVC 1.1.26