summaryrefslogtreecommitdiff
path: root/lib/DBInfoscreen/Controller
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2022-10-29 13:04:01 +0200
committerDaniel Friesel <derf@finalrewind.org>2022-10-29 13:04:01 +0200
commitdaa8cc5a72bd10d732912595bf0ca2ad3bf167c4 (patch)
tree1455129763e0070dc77ec5880b1c32f64b7d2abe /lib/DBInfoscreen/Controller
parent3f4fc57ba097ce969031ab1a1398d4bb657ca056 (diff)
use T-S-DE-HAFAS for train details
Diffstat (limited to 'lib/DBInfoscreen/Controller')
-rw-r--r--lib/DBInfoscreen/Controller/Stationboard.pm229
1 files changed, 94 insertions, 135 deletions
diff --git a/lib/DBInfoscreen/Controller/Stationboard.pm b/lib/DBInfoscreen/Controller/Stationboard.pm
index d0d4c13..de1f5e5 100644
--- a/lib/DBInfoscreen/Controller/Stationboard.pm
+++ b/lib/DBInfoscreen/Controller/Stationboard.pm
@@ -698,64 +698,62 @@ sub render_train {
$self->hafas->get_route_timestamps_p( train => $result )->then(
sub {
- my ( $route_ts, $route_info, $trainsearch ) = @_;
+ my ( $route_ts, $journey ) = @_;
- $departure->{trip_id} = $trainsearch->{trip_id};
+ $departure->{trip_id} = $journey->id;
# If a train number changes on the way, IRIS routes are incomplete,
# whereas HAFAS data has all stops -> merge HAFAS stops into IRIS
# stops. This is a rare case, one point where it can be observed is
# the TGV service at Frankfurt/Karlsruhe/Mannheim.
- if ( $route_info
- and my @hafas_stations = @{ $route_info->{stations} // [] } )
- {
- if ( my @iris_stations = @{ $departure->{route_pre_diff} } ) {
- my @missing_pre;
- for my $station (@hafas_stations) {
- if (
- List::MoreUtils::any { $_->{name} eq $station }
- @iris_stations
- )
+ my @hafas_stations = $journey->route;
+ if ( my @iris_stations = @{ $departure->{route_pre_diff} } ) {
+ my @missing_pre;
+ for my $station (@hafas_stations) {
+ if (
+ List::MoreUtils::any { $_->{name} eq $station->{name} }
+ @iris_stations
+ )
+ {
+ unshift(
+ @{ $departure->{route_pre_diff} },
+ @missing_pre
+ );
+ last;
+ }
+ push(
+ @missing_pre,
{
- unshift(
- @{ $departure->{route_pre_diff} },
- @missing_pre
- );
- last;
+ name => $station->{name},
+ hafas => 1
}
+ );
+ }
+ }
+ if ( my @iris_stations = @{ $departure->{route_post_diff} } ) {
+ my @missing_post;
+ for my $station ( reverse @hafas_stations ) {
+ if (
+ List::MoreUtils::any { $_->{name} eq $station->{name} }
+ @iris_stations
+ )
+ {
push(
- @missing_pre,
- {
- name => $station,
- hafas => 1
- }
+ @{ $departure->{route_post_diff} },
+ @missing_post
);
+ last;
}
- }
- if ( my @iris_stations = @{ $departure->{route_post_diff} } ) {
- my @missing_post;
- for my $station ( reverse @hafas_stations ) {
- if (
- List::MoreUtils::any { $_->{name} eq $station }
- @iris_stations
- )
+ unshift(
+ @missing_post,
{
- push(
- @{ $departure->{route_post_diff} },
- @missing_post
- );
- last;
+ name => $station->{name},
+ hafas => 1
}
- unshift(
- @missing_post,
- {
- name => $station,
- hafas => 1
- }
- );
- }
+ );
}
}
+
if ($route_ts) {
if ( $route_ts->{ $result->station }{rt_bogus} ) {
@@ -770,53 +768,30 @@ sub render_train {
{
$elem->{$key} = $route_ts->{ $elem->{name} }{$key};
}
- if ( $elem->{rt_bogus} ) {
- $departure->{partially_missing_realtime} = 1;
- }
}
}
- if ( $route_info and @{ $route_info->{messages} // [] } ) {
- my $him = $route_info->{messages};
- my @him_messages;
- $departure->{messages}{him} = $him;
- for my $message ( @{$him} ) {
- if ( $message->{display} ) {
- push(
- @him_messages,
- [
- $message->{header}, { text => $message->{lead} }
- ]
- );
- if ( $message->{lead} =~ m{zuginfo.nrw/?\?msg=(\d+)} ) {
- push(
- @{ $departure->{links} },
- [
- "Großstörung",
- "https://zuginfo.nrw/?msg=$1"
- ]
- );
- }
- }
+
+ my @him_messages;
+ for my $message ( $journey->messages ) {
+ if ( not $message->code ) {
+ push( @him_messages,
+ [ $message->short // q{}, { text => $message->text } ]
+ );
}
- for my $message ( @{ $departure->{moreinfo} // [] } ) {
- my $m = $message->[1];
- @him_messages
- = grep { $_->[0] !~ m{Information\. $m\.$} }
- @him_messages;
+ }
+ for my $m (@him_messages) {
+ if ( $m->[0] =~ s{: Information.}{:} ) {
+ $m->[1]{icon} = 'info_outline';
}
- for my $m (@him_messages) {
- if ( $m->[0] =~ s{: Information.}{: } ) {
- $m->[1]{icon} = 'info_outline';
- }
- elsif ( $m->[0] =~ s{: (?:Großs|S)törung.}{: } ) {
- $m->[1]{icon} = 'warning';
- }
- elsif ( $m->[0] =~ s{: Bauarbeiten.}{: } ) {
- $m->[1]{icon} = 'build';
- }
+ elsif ( $m->[0] =~ s{: Störung.}{: } ) {
+ $m->[1]{icon} = 'warning';
+ }
+ elsif ( $m->[0] =~ s{: Bauarbeiten.}{: } ) {
+ $m->[1]{icon} = 'build';
}
- unshift( @{ $departure->{moreinfo} }, @him_messages );
+ $m->[0] =~ s{(?!<)->}{ → };
}
+ unshift( @{ $departure->{moreinfo} }, @him_messages );
}
)->catch(
sub {
@@ -1029,73 +1004,58 @@ sub train_details {
my $linetype = 'bahn';
$self->hafas->get_route_timestamps_p(
- train_req => "${train_type} $train_no" )->then(
+ train_type => $train_type,
+ train_no => $train_no
+ )->then(
sub {
- my ( $route_ts, $route_info, $trainsearch ) = @_;
+ my ( $route_ts, $journey ) = @_;
- $res->{trip_id} = $trainsearch->{trip_id};
+ $res->{trip_id} = $journey->id;
- if ( not defined $trainsearch->{trainClass} ) {
+ if ( not defined $journey->class ) {
$linetype = 'ext';
}
- elsif ( $trainsearch->{trainClass} <= 2 ) {
+ elsif ( $journey->class <= 2 ) {
$linetype = 'fern';
}
- elsif ( $trainsearch->{trainClass} <= 8 ) {
+ elsif ( $journey->class <= 8 ) {
$linetype = 'bahn';
}
- elsif ( $trainsearch->{trainClass} <= 16 ) {
+ elsif ( $journey->class <= 16 ) {
$linetype = 'sbahn';
}
- $res->{origin} = $route_info->{stations}[0];
- $res->{destination} = $route_info->{stations}[-1];
+ $res->{origin} = $journey->route_start;
+ $res->{destination} = $journey->route_end;
$res->{route_post_diff}
- = [ map { { name => $_ } } @{ $route_info->{stations} } ];
-
- if ($route_ts) {
- for my $elem ( @{ $res->{route_post_diff} } ) {
- for my $key ( keys %{ $route_ts->{ $elem->{name} } // {} } )
- {
- $elem->{$key} = $route_ts->{ $elem->{name} }{$key};
- }
+ = [ map { { name => $_->{name} } } $journey->route ];
+ for my $elem ( @{ $res->{route_post_diff} } ) {
+ for my $key ( keys %{ $route_ts->{ $elem->{name} } // {} } ) {
+ $elem->{$key} = $route_ts->{ $elem->{name} }{$key};
}
}
- if ( $route_info and @{ $route_info->{messages} // [] } ) {
- my $him = $route_info->{messages};
- my @him_messages;
- for my $message ( @{$him} ) {
- if ( $message->{display} ) {
- push(
- @him_messages,
- [
- $message->{header}, { text => $message->{lead} }
- ]
- );
- if ( $message->{lead} =~ m{zuginfo.nrw/?\?msg=(\d+)} ) {
- push(
- @{ $res->{links} },
- [
- "Großstörung",
- "https://zuginfo.nrw/?msg=$1"
- ]
- );
- }
- }
+ my @him_messages;
+ for my $message ( $journey->messages ) {
+ if ( not $message->code ) {
+ push( @him_messages,
+ [ $message->short // q{}, { text => $message->text } ]
+ );
}
- for my $m (@him_messages) {
- if ( $m->[0] =~ s{: Information.}{:} ) {
- $m->[1]{icon} = 'info_outline';
- }
- elsif ( $m->[0] =~ s{: Störung.}{: } ) {
- $m->[1]{icon} = 'warning';
- }
- elsif ( $m->[0] =~ s{: Bauarbeiten.}{: } ) {
- $m->[1]{icon} = 'build';
- }
+ }
+ for my $m (@him_messages) {
+ if ( $m->[0] =~ s{: Information.}{:} ) {
+ $m->[1]{icon} = 'info_outline';
+ }
+ elsif ( $m->[0] =~ s{: Störung.}{: } ) {
+ $m->[1]{icon} = 'warning';
+ }
+ elsif ( $m->[0] =~ s{: Bauarbeiten.}{: } ) {
+ $m->[1]{icon} = 'build';
}
+ }
+ if (@him_messages) {
$res->{moreinfo} = [@him_messages];
}
@@ -1106,8 +1066,6 @@ sub train_details {
icetype => $self->app->ice_type_map->{ $res->{train_no} },
details => {}, #$departure->{composition} // {},
dt_now => DateTime->now( time_zone => 'Europe/Berlin' ),
-
- #station_name => "FIXME",#$station_name,
);
}
)->catch(
@@ -1116,7 +1074,8 @@ sub train_details {
if ($e) {
$self->render(
'exception',
- exception => $e,
+ message => $e,
+ exception => undef,
snapshot => {}
);
}