all values must be arrays
[MojoFacets.git] / lib / MojoFacets.pm
index 3455b95..9a5b315 100644 (file)
@@ -7,6 +7,38 @@ our $VERSION = '0.0001';
 
 use base 'Mojolicious';
 
+use Data::Dump qw(dump);
+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' ) {
+               if ( my $params = $tx->req->params ) {
+
+                       warn "# params ",dump($params);
+
+                       my $time = time();
+                       if ( my $time_travel = $params->param('time') ) {
+                               warn "# time-travel to $time_travel from ", $tx->remote_address;
+                               $time = $time_travel;
+                       }
+
+                       my $path = '/tmp/actions/';
+                       mkdir $path unless -e $path;
+                       $path .= sprintf '%.4f.%s', $time, join('.', @$parts);
+
+                       store $params, $path;
+                       warn "$path ", -s $path, " bytes\n";
+               }
+       }
+}
+
+
 # This method will run once at server start
 sub startup {
     my $self = shift;
@@ -15,7 +47,19 @@ sub startup {
     my $r = $self->routes;
 
     # Default route
-    $r->route('/:controller/:action/:id')->to('data#stats', id => 1);
+    $r->route('/:controller/:action/:id')->to('data#index', id => 1);
+
+#      $self->plugin( 'request_timer' );
+
+       $self->plugins->add_hook(
+                       before_dispatch => sub {
+                               my ($self, $c) = @_;
+                               my $tx = $c->tx;
+                               save_tx( $self, $tx );
+                       }
+       );
 }
 
+
+
 1;