summaryrefslogtreecommitdiff
path: root/index.pl
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2019-03-19 21:23:06 +0100
committerDaniel Friesel <derf@finalrewind.org>2019-03-19 21:23:06 +0100
commit531f3b0a68ace87dc514a1350971b647c39633b5 (patch)
tree825851172475d5a19cf2593a99a803648fdf45b3 /index.pl
parent01df965d66fa7223e98036908ed4f60dda5942f8 (diff)
show cancelled trains in history
Diffstat (limited to 'index.pl')
-rwxr-xr-xindex.pl33
1 files changed, 27 insertions, 6 deletions
diff --git a/index.pl b/index.pl
index 0f5622b..8cd45dd 100755
--- a/index.pl
+++ b/index.pl
@@ -808,6 +808,11 @@ helper 'get_user_travels' => sub {
else {
$query->execute($uid);
}
+ my @match_actions = ( $action_type{checkout}, $action_type{checkin} );
+ if ( $opt{cancelled} ) {
+ @match_actions
+ = ( $action_type{cancelled_to}, $action_type{cancelled_from} );
+ }
my @travels;
my $prev_action = 0;
@@ -823,7 +828,9 @@ helper 'get_user_travels' => sub {
$raw_route = decode( 'UTF-8', $raw_route );
$raw_messages = decode( 'UTF-8', $raw_messages );
- if ( $action == $action_type{checkout} ) {
+ if ( $action == $match_actions[0]
+ or ( $opt{checkout_epoch} and $raw_ts == $opt{checkout_epoch} ) )
+ {
push(
@travels,
{
@@ -843,8 +850,13 @@ helper 'get_user_travels' => sub {
}
);
}
- elsif ( $action == $action_type{checkin}
- and $prev_action == $action_type{checkout} )
+ elsif (
+ (
+ $action == $match_actions[1]
+ and $prev_action == $match_actions[0]
+ )
+ or ( $opt{checkin_epoch} and $raw_ts == $opt{checkin_epoch} )
+ )
{
my $ref = $travels[-1];
$ref->{from_name} = $name;
@@ -866,6 +878,11 @@ helper 'get_user_travels' => sub {
}
$ref->{messages} = [ reverse @parsed_messages ];
}
+ if ( $opt{checkin_epoch}
+ and $action == $action_type{cancelled_from} )
+ {
+ $ref->{cancelled} = 1;
+ }
}
$prev_action = $action;
}
@@ -1442,17 +1459,21 @@ get '/account' => sub {
get '/history' => sub {
my ($self) = @_;
+ my $cancelled = $self->param('cancelled') ? 1 : 0;
$self->respond_to(
- json => { json => [ $self->get_user_travels ] },
- any => { template => 'history' }
+ json =>
+ { json => [ $self->get_user_travels( cancelled => $cancelled ) ] },
+ any => { template => 'history' }
);
};
get '/history.json' => sub {
my ($self) = @_;
+ my $cancelled = $self->param('cancelled') ? 1 : 0;
- $self->render( json => [ $self->get_user_travels ] );
+ $self->render(
+ json => [ $self->get_user_travels( cancelled => $cancelled ) ] );
};
get '/journey/:id' => sub {