record only requests with params
[MojoFacets.git] / lib / MojoFacets.pm
index dd80788..c80e748 100644 (file)
@@ -8,6 +8,28 @@ 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 ) {
+
+                       my $path = '/tmp/changes/';
+                       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 {
@@ -25,12 +47,11 @@ sub startup {
                        before_dispatch => sub {
                                my ($self, $c) = @_;
                                my $tx = $c->tx;
-                               # Do whatever you want with the transaction here
-                               if ( $tx->req->url->query ) {
-                                       warn "# before_dispatch url ",dump($tx->req->url);
-                               }
+                               save_tx( $self, $tx );
                        }
        );
 }
 
+
+
 1;