allow dash in filename.encoding.csv
[MojoFacets.git] / lib / MojoFacets.pm
index 5e91832..c2ef3d4 100644 (file)
@@ -12,24 +12,33 @@ use Storable;
 use Time::HiRes qw(time);
 
 
-sub save_tx {
-       my ($self,$tx) = @_;
-       warn "# before_dispatch req ",dump($tx->req->url, $tx->req->params);
-       my $parts = $tx->req->url->path->parts;
-       warn "## parts ",dump( $parts );
-       if ( $parts->[0] eq 'data' ) {
-
-               my $path = '/tmp/changes/';
-               mkdir $path unless -e $path;
-               $path .= sprintf '%.4f.%s', time(), join('.', @$parts);
-               store $tx->req->params, $path;
-       #       $self->log->info( "$path ", -s $path, " bytes\n" );
-               warn "$path ", -s $path, " bytes\n";
+sub save_action {
+       my ($self) = @_;
+#      warn "## before_dispatch req ",dump($tx->req->url, $tx->req->params);
+       my $path = $self->req->url->path;
+       if ( $path =~ m{/data/} ) {
+               if ( my $params = $self->req->params ) {
+
+                       my $time = time();
+                       if ( my $time_travel = $params->param('time') ) {
+                               warn "# time-travel to $time_travel\n";
+                               $time = $time_travel;
+                       }
+
+                       my $actions_path = '/tmp/actions/';
+                       mkdir $actions_path unless -e $actions_path;
+                       $path =~ s{/}{.}g;
+                       $actions_path .= sprintf '%.4f%s', $time, $path;
 
+                       my $array = $params->params;
+                       if ( @$array ) {
+                               store $array, $actions_path;
+                               warn "SAVE $actions_path ", -s $actions_path, " bytes params = ", dump($array), $/;
+                       }
+               }
        }
 }
 
-
 # This method will run once at server start
 sub startup {
     my $self = shift;
@@ -38,17 +47,23 @@ sub startup {
     my $r = $self->routes;
 
     # Default route
-    $r->route('/:controller/:action/:id')->to('data#index', id => 1);
+    $r->route('/:controller/:action/:id')->to('data#index', id => 0);
 
 #      $self->plugin( 'request_timer' );
 
-       $self->plugins->add_hook(
-                       before_dispatch => sub {
-                               my ($self, $c) = @_;
-                               my $tx = $c->tx;
-                               save_tx( $self, $tx );
+       $self->hook(
+                       after_dispatch => sub {
+                               my ($self) = @_;
+                               save_action( $self );
                        }
        );
+
+       eval 'use MojoFacets::Plugin::NYTProf';
+       if ( $@ ) {
+               warn "profile disabled: ",substr($@,0,40) if $@;
+       } else {
+               MojoFacets::Plugin::NYTProf->register( $self );
+       }
 }