From 04ba3427ff50977a9b4ed791749da01b0358c008 Mon Sep 17 00:00:00 2001 From: Matthew Connelly Date: Fri, 27 Nov 2015 18:15:20 +0000 Subject: [PATCH] code and syntactic cleanup --- lib/App/WerePaste.pm | 61 +++++++++++++++++++++++++++++++------------- 1 file changed, 43 insertions(+), 18 deletions(-) diff --git a/lib/App/WerePaste.pm b/lib/App/WerePaste.pm index 0f732d9..5005d24 100644 --- a/lib/App/WerePaste.pm +++ b/lib/App/WerePaste.pm @@ -9,14 +9,15 @@ use Dancer2::Plugin::DBIC qw/schema/; use DateTime; use Data::UUID; -my $nextexpunge = 0; - +# Application startup sub DeploySchema { # we override sigwarn to prevent warnings from showing up when the schema has previously been deployed # TODO: find a way to mute only the deploy warning here, should any other warnings somehow arise local $SIG{__WARN__} = sub {}; eval { schema->deploy; }; } + +# Data transformation sub DateTimeToQueryable { my $dt = DateTime->now(time_zone => config->{tz}); $dt->add(@_) if scalar @_; @@ -28,16 +29,25 @@ sub ExpirationToDate { return undef if $expire and $expire->{never}; return DateTimeToQueryable(%{ $expire }); } + +# Data generation sub GetUUID { my $uuid = Data::UUID->new->create_str; $uuid =~ s/\-//g; return lc $uuid; } + +# Data removal +my $nextexpunge = 0; sub CheckExpiry { return unless time > $nextexpunge; - $nextexpunge = time+30; - schema->resultset('Paste')->search({expiration => { '<' => DateTimeToQueryable() }})->delete_all; + $nextexpunge = time+15; + schema->resultset('Paste')->search( { + expiration => { '<' => DateTimeToQueryable() } + } )->delete_all; } + +# Data validation sub ValidateParams { my $params = shift; return undef unless $params->{code}; @@ -48,12 +58,22 @@ sub ValidateParams { return undef unless $params->{expiration} =~ /^([a-z]+:[0-9]+)(:[a-z]+:[0-9]+)*$/ or not $params->{expiration}; return 1; } + +# Data retrieval sub GetPaste { my $params = shift; my $id = lc $params->{id}; return undef unless $id =~ /^[a-f0-9]*$/; - return schema->resultset('Paste')->single({ id => $id }); + return schema->resultset('Paste')->single( { id => $id } ); } +sub PresentPaste { + my $params = shift; my $tt = shift; + my $paste = GetPaste($params) or return undef; + content_type 'text/plain' and return $paste->code unless $tt; + return template "$tt.tt", { paste => $paste }; +} + +# Data storage sub StorePaste { my $params = shift; my ($lang,$html) = PygmentsHighlight(lang => $params->{lang}, code => $params->{code}); @@ -69,26 +89,31 @@ sub StorePaste { }) or return undef; return $id; } +sub ReceivePaste { + my $params = shift; + return send_error('Submitted paste is not valid. Check your post title and language, and try again.', 400) + unless ValidateParams $params; + return send_error('Unfortunately, the paste could not be saved.', 503) + unless my $id = StorePaste $params; + return redirect "/$id"; +} # Startup -DeploySchema(); +DeploySchema; # Hooks -hook 'before' => sub { CheckExpiry(); }; +hook 'before' => sub { CheckExpiry; }; + # Routes -#get get '/' => sub { template 'index.tt'; }; -get '/:id' => sub { my $paste=GetPaste(scalar params 'route') or pass; template 'show.tt', { paste => $paste }; }; -get '/:id/copy' => sub { my $paste=GetPaste(scalar params 'route') or pass; template 'index.tt', { paste => $paste }; }; -get '/:id/raw' => sub { my $paste=GetPaste(scalar params 'route') or pass; content_type 'text/plain'; return $paste->code; }; +get '/:id' => sub { return PresentPaste scalar(params 'route'), 'show' || pass; }; +get '/:id/copy' => sub { return PresentPaste scalar(params 'route'), 'index' || pass; }; +get '/:id/raw' => sub { return PresentPaste scalar params 'route' || pass; }; + #post -post '/' => sub { - my $p = params 'body'; - ValidateParams($p) or return send_error('Submitted paste is not valid. Check your post title and language, and try again.', 400); - my $id = StorePaste($p) or return redirect '/503.html'; - return redirect "/$id"; -}; -#default +post '/' => sub { return ReceivePaste scalar params 'body'; }; + +# Default catch-all route any qr/.*/ => sub { return send_error('What you seek cannot be found here.', 404); }; 1;