From a48352ada44a7a5dde9817383434759c9b5a6497 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sat, 3 Aug 2019 12:35:47 +0200 Subject: also show train direction on departure --- lib/Travelynx.pm | 56 ++++++++++++++++++++++++++++++++++++++++--- templates/_checked_in.html.ep | 10 +++++++- 2 files changed, 62 insertions(+), 4 deletions(-) diff --git a/lib/Travelynx.pm b/lib/Travelynx.pm index 82fa373..f508a4c 100755 --- a/lib/Travelynx.pm +++ b/lib/Travelynx.pm @@ -1744,7 +1744,7 @@ sub startup { my $journey = $db->select( 'in_transit_str', - [ 'arr_ds100', 'route' ], + [ 'arr_ds100', 'dep_ds100', 'route' ], { user_id => $uid } )->expand->hash; @@ -1911,6 +1911,27 @@ sub startup { )->wait; } + if ($is_departure) { + $self->get_dbdb_station_p( $journey->{dep_ds100} )->then( + sub { + my ($station_info) = @_; + + my $res = $db->select( 'in_transit', ['data'], + { user_id => $uid } ); + my $res_h = $res->expand->hash; + my $data = $res_h->{data} // {}; + + $data->{stationinfo_dep} = $station_info; + + $db->update( + 'in_transit', + { data => JSON->new->encode($data) }, + { user_id => $uid } + ); + } + )->wait; + } + if ( $journey->{arr_ds100} and not $is_departure ) { $self->get_dbdb_station_p( $journey->{arr_ds100} )->then( sub { @@ -2271,8 +2292,12 @@ sub startup { $self->helper( 'stationinfo_to_direction' => sub { - my ( $self, $platform_info, $wagonorder, $prev_stop ) = @_; + my ( $self, $platform_info, $wagonorder, $prev_stop, $next_stop ) + = @_; if ( $platform_info->{kopfgleis} ) { + if ($next_stop) { + return $platform_info->{direction} eq 'r' ? 'l' : 'r'; + } return $platform_info->{direction}; } elsif ( $prev_stop @@ -2280,6 +2305,13 @@ sub startup { { return $platform_info->{direction_from}{$prev_stop}; } + elsif ( $next_stop + and exists $platform_info->{direction_from}{$next_stop} ) + { + return $platform_info->{direction_from}{$next_stop} eq 'r' + ? 'l' + : 'r'; + } elsif ($wagonorder) { my $wr; eval { @@ -2349,6 +2381,7 @@ sub startup { $is_after = 1; } } + my $stop_after_dep = $route_after[0][0]; my $ts = $in_transit->{checkout_ts} // $in_transit->{checkin_ts}; @@ -2464,6 +2497,22 @@ sub startup { $ret->{journey_completion} = 0; } + my ($dep_platform_number) + = ( ( $ret->{dep_platform} // 0 ) =~ m{(\d+)} ); + if ( $dep_platform_number + and exists $in_transit->{data}{stationinfo_dep} + {$dep_platform_number} ) + { + $ret->{dep_direction} + = $self->stationinfo_to_direction( + $in_transit->{data}{stationinfo_dep} + {$dep_platform_number}, + $in_transit->{data}{wagonorder_dep}, + undef, + $stop_after_dep + ); + } + my ($arr_platform_number) = ( ( $ret->{arr_platform} // 0 ) =~ m{(\d+)} ); if ( $arr_platform_number @@ -2475,7 +2524,8 @@ sub startup { $in_transit->{data}{stationinfo_arr} {$arr_platform_number}, $in_transit->{data}{wagonorder_arr}, - $stop_before_dest + $stop_before_dest, + undef ); } diff --git a/templates/_checked_in.html.ep b/templates/_checked_in.html.ep index 7dce308..2e5569a 100644 --- a/templates/_checked_in.html.ep +++ b/templates/_checked_in.html.ep @@ -42,7 +42,15 @@ Ankunft in mehr als zwei Stunden % } % if ($journey->{departure_countdown} > 0 and $journey->{dep_platform}) { -
von Gleis <%= $journey->{dep_platform} %> + % if ($journey->{dep_direction} and $journey->{dep_direction} eq 'r') { +
Gleis <%= $journey->{dep_platform} %> ▶ + % } + % elsif ($journey->{dep_direction} and $journey->{dep_direction} eq 'l') { +
◀ Gleis <%= $journey->{dep_platform} %> + % } + % else { +
von Gleis <%= $journey->{dep_platform} %> + % } % } % if (my $wr = $journey->{wagonorder}) {
-- cgit v1.2.3