/[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 460 by dpavlin, Wed Nov 19 17:57:48 2008 UTC revision 529 by dpavlin, Wed Nov 26 04:26:43 2008 UTC
# Line 1  Line 1 
1  package Frey::Web;  package Frey::Web;
2  use Moose::Role;  use Moose::Role;
3    
4    with 'Frey::Backtrace';
5    
6  use Frey::Types;  use Frey::Types;
7    
8  use Continuity::Widget::DomNode;  use Continuity::Widget::DomNode;
9  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
10  use Carp qw/confess/;  use Carp qw/confess cluck/;
11  use File::Slurp;  use File::Slurp;
12    
13  use Frey::Bookmarklet;  use Frey::Bookmarklet;
14  use Frey::ClassBrowser;  use Frey::ClassBrowser;
15    use Frey::SVK;
16    
17  has 'head' => (  has 'head' => (
18          is => 'rw',          is => 'rw',
# Line 17  has 'head' => ( Line 20  has 'head' => (
20          default => sub { [ 'static/frey.css' ] },          default => sub { [ 'static/frey.css' ] },
21  );  );
22    
 has 'status' => (  
         is => 'rw',  
         isa => 'ArrayRef[HashRef[Str]]',  
         lazy => 1,  
         default => sub { [  
                 { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },  
                 { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },  
         ] },  
 );  
   
23  has 'request_url' => (  has 'request_url' => (
24          is => 'rw',          is => 'rw',
25          isa => 'Uri', coerce => 1,          isa => 'Uri', coerce => 1,
# Line 47  has 'content_type' => ( Line 40  has 'content_type' => (
40          is => 'rw',          is => 'rw',
41          isa => 'Str',          isa => 'Str',
42          default => 'text/html',          default => 'text/html',
43            documentation => 'Content-type header',
44    );
45    
46    has 'dump_max_bytes' => (
47            is => 'rw',
48            isa => 'Int',
49            default => 4096,
50            documentation => 'Maximum dump size sent to browser before truncation',
51  );  );
52    
53  =head2 inline_smaller_than  =head2 inline_smaller_than
# Line 138  our $reload_counter = 0; Line 139  our $reload_counter = 0;
139    
140  =cut  =cut
141    
142    our @status;
143    sub status { @status };
144    
145    our $icon_html;
146    
147  sub page {  sub page {
148          my $self = shift;          my $self = shift;
149          my $a = {@_};          my $a = {@_};
150    
151            warn "## page ",dump($a);
152    
153          $reload_counter++;          $reload_counter++;
154    
155          my $status_line = '';          my $status_line = '';
156          foreach my $part ( @{ $self->status } ) {  
157                  if ( ref($part) ne 'HASH' ) {          unshift @status, { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup };
158                          warn "part not hash ",dump( $part ) ;          unshift @status, { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup };
159                          #$self->status( $part );  
160                          next;          foreach my $part ( @status ) {
                 }  
161                  foreach my $name ( keys %$part ) {                  foreach my $name ( keys %$part ) {
162                          my $content = $part->{$name};                          my $content = $part->{$name};
163                          if ( ref($content) ) {                          if ( ref($content) ) {
164                                  $content = '<code>' . dump($content) . '</code>';                                  $content = '<code>' . dump($content) . '</code>';
165                                  my $l = length($content);                                  my $l = length($content);
166                                  $content = qq|<span>$l bytes</span>| if $l > 1024;                                  $content = qq|<span>$l bytes</span>| if $l > $self->dump_max_bytes;
167                          } else {                          } else {
168                                  $content = qq|<span>$content</span>|;                                  $content = qq|<span>$content</span>|;
169                          }                          }
# Line 178  sub page { Line 185  sub page {
185                  $body = '<!-- no body -->';                  $body = '<!-- no body -->';
186          }          }
187    
188            my $warn_colors = {
189                    '#'  => '#444',
190                    '##' => '#888',
191            };
192    
193            $status_line
194                    .= qq|<span class="frey-popup">warn<span>|
195                    . $self->editor_links(
196                            join("", map {
197                                    warn "# $_";
198                                    my $style = '';
199                                    $style = $warn_colors->{$1}
200                                            ? ' style="color:' . $warn_colors->{$1} . '"'
201                                            : ''
202                                            if m{^(#+)};
203                                    qq|<tt$style>$_</tt><br/>|; # XXX <tt> should be <code> but CSS hates me
204                            } $self->warnings )
205                    )
206                    . qq|</span></span>|
207                    if $self->warnings;
208    
209            my      ($exit,$description) = ('exit','stop server');
210                    ($exit,$description) = ('restart','restart server')
211                    if $ENV{FREY_RESTART}; # tune labels on exit link
212    
213            my $right =
214                    qq|
215                            <span class="right">
216                            <a title="reload $url"  href="/reload$url">reload</a>
217                            <a title="$description" href="/exit$url">$exit</a>
218                            </span>
219                    |;
220    
221            my $info = Frey::SVK->info;
222            my $revision = Frey::SVK->info->{Revision} || '';
223            $revision = $1 if $info->{'Mirrored From'} =~ m{Rev\.\s+(\d+)};
224    
225            $self->add_icon unless $icon_html;
226    
227          my $html = join("\n",          my $html = join("\n",
228                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,                  qq|<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"><html><head>|,
229                  $self->_head_html,                  $self->_head_html,
230                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',                  '<title>' . ( $self->title || $a->{title} || ref($self) ) . '</title>',
231                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',                  '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">',
232                    ( $icon_html || '<!-- no icon -->' ),
233                  ( $a->{head} || '' ),                  ( $a->{head} || '' ),
234                  qq|                  qq|
235                  </head><body>                  </head><body>
236                  $body                  $body
237                  <div class="frey-status-line">                  <div class="frey-status-line">
238                          <a href="/">Frey</a> $Frey::VERSION                          <a href="/">Frey</a> $Frey::VERSION $revision
                         <a href="?reload=$reload_counter"><code>$url</code></a>  
239                          $status_line                          $status_line
240                            $right
241                  </div>                  </div>
242              </body></html>              </body></html>
243                  |,                  |,
# Line 201  sub page { Line 248  sub page {
248          return $html;          return $html;
249  }  }
250    
251    =head2 editor
252    
253    Create HTML editor link with optional line and title
254    
255      my $html = $self->editor( $class, $line, $title );
256    
257    =cut
258    
259    sub editor {
260            my ( $self, $class, $line, $title ) = @_;
261            confess "need class" unless $class;
262            if ( ! defined $title ) {
263                    $title  = "edit $class";
264                    $title .= " line $line" if $line;
265            }
266            $line  ||= 1;
267            qq|<a target="editor" href="/editor+$class+$line"| .
268            ( $title ? qq| title="$title"| : '' ) .
269            qq|>$class</a>|;
270    }
271    
272    =head2 editor_links
273    
274    Create HTML links to editor for perl error message
275    
276      my $html = $self->editor_links( $error )
277    
278    =cut
279    
280    sub editor_links {
281            my ( $self, $error ) = @_;
282    
283            $error =~ s{at\s+(\S+)\s+line\s+(\d+)}
284                    {at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;
285    
286            $error =~ s{(via package ")([\w:]+)(")}
287                    {$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;
288    
289            return $error;
290    }
291    
292  sub error {  sub error {
293          my $self = shift;          my $self = shift;
294          my $error = join(" ", @_);          my $error = join(" ", @_);
295    
296          my @backtrace;          my @backtrace = $self->backtrace;
297          foreach ( 0 .. 5 ) {          $error .= "\n\t" . join( "\n\t", @backtrace ) if @backtrace;
                 my @caller = caller($_) or last;  
                 my @description = ( qw/  
                         package filename line  
                         subroutine hasargs  
                         wantarray evaltext is_require  
                         hints bitmask hinthash  
                 /);  
                 push @backtrace, join(' ',  
                         map {  
                                 $description[$_] . ': ' . dump $caller[$_]  
                         } ( 0 .. $#caller )  
                 );  
         }  
         if ( @backtrace ) {  
                 warn "# append backtrace: ", dump( @backtrace );  
                 $error .= "\n\t" . join( "\n\t", @backtrace );  
         }  
298    
299          warn "ERROR: $error\n";          warn "ERROR: $error\n";
300          $error =~ s{at\s+(\S+)\s+line\s+(\d+)}{at <a target="editor" href="/editor+$1+$2">$1</a> line $2}gsm;          return
301          $error =~ s{(via package ")([\w:]+)(")}{$1<a target="editor" href="/editor+$2+1">$2</a>$3}gsm;                  qq|<pre class="frey-error">|
302          return qq|<pre class="frey-error">$error</pre>|;                  . $self->editor_links( $error ) .
303                    qq|</pre>|
304                    ;
305    }
306    
307    sub add_status {
308            my ( $self, $data ) = @_;
309            push @status, $data;
310    }
311    
312    sub clean_status {
313            @status = ();
314            $icon_html = '';
315    }
316    
317    sub status_parts {
318            warn "## status parts ", dump( map { keys %$_ } @status );
319    }
320    
321    sub DEMOLISH {
322            my ( $self ) = @_;
323            warn "## $self DEMOLISH status ", $#status + 1, " elements ", dump( map { keys %$_ } @status ) if @status;
324    }
325    
326    =head2 add_icon
327    
328      Frey::Foo->add_icon;            # /static/icons/Frey/Foo.png
329      Frey::Foo->add_icon('warning'); # /static/icons/Frey/Foo/warning.png
330    
331    =cut
332    
333    sub icon_path {
334            my ($self,$class,$variant) = @_;
335            my $icon = $class;
336            $icon =~ s{::}{/}g;
337            $icon .= "/$variant" if $variant;
338            my $path = 'static/icons/' . $icon . '.png';
339            if ( -e $path ) {
340                    warn "# $class from $self icon_path $path";
341                    return $path;
342            } else {
343                    warn "TODO: add $path icon for $class";
344                    return undef;
345            }
346    }
347    
348    sub add_icon {
349            my ($self,$variant) = @_;
350    
351            my $class = ref($self);
352            $class = $self->class if $self->can('class');
353            my $icon_path = $self->icon_path( $class, $variant ) || return;
354    
355            $icon_html .= qq|<link rel="icon" type="image/png" href="/$icon_path">|;
356            warn "# using icon $icon_path";
357    
358    =for later
359    
360            # FIXME http://en.wikipedia.org/wiki/Favicon suggest just rel="icon" but that doesn't seem to work!
361            my $ico_path = $icon_path;
362            $ico_path =~ s{png$}{ico};
363            if ( ! -e $ico_path ) {
364                    system "convert $icon_path $ico_path";
365                    warn "# convert $icon_path $ico_path : $@";
366            }
367            $icon_html .= qq|<link rel="shortcut icon" type="image/x-icon" href="/$ico_path">| if -e $ico_path;
368    
369    =cut
370    
371  }  }
372    
373  1;  1;

Legend:
Removed from v.460  
changed lines
  Added in v.529

  ViewVC Help
Powered by ViewVC 1.1.26