summaryrefslogtreecommitdiff
path: root/index.pl
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2015-09-26 16:08:33 +0200
committerDaniel Friesel <derf@finalrewind.org>2015-09-26 16:08:33 +0200
commite1e714f3e7b95640ee7b9ac6f20314857fd4c32a (patch)
tree212607ba13c08d0806312898bbc1ced26eff6678 /index.pl
parentf12b977e9996439d8fc7d5987ca9581b07966a2d (diff)
support ALL the HAFAS backends
Diffstat (limited to 'index.pl')
-rw-r--r--index.pl21
1 files changed, 20 insertions, 1 deletions
diff --git a/index.pl b/index.pl
index f1d9fad..5e792aa 100644
--- a/index.pl
+++ b/index.pl
@@ -32,6 +32,9 @@ my %default = (
my @efa_services
= map { $_->{shortname} } Travel::Status::DE::EFA::get_efa_urls();
+my @hafas_services
+ = map { $_->{shortname} } Travel::Status::DE::HAFAS::get_services();
+
sub log_api_access {
my $counter = 1;
if ( -r $ENV{VRRFAKEDISPLAY_STATS} ) {
@@ -56,6 +59,9 @@ sub get_results {
if ( not defined $backend or $backend eq 'vrr' ) {
$backend = 'efa.VRR';
}
+ if ( $backend and $backend eq 'db' ) {
+ $backend = 'hafas.DB';
+ }
if ( $backend =~ s{ [.] (.+) $ }{}x ) {
$sub_backend = $1;
@@ -66,6 +72,12 @@ sub get_results {
errstr => "efa sub-backend '$sub_backend' not supported"
};
}
+ if ( $backend eq 'hafas' and not $sub_backend ~~ \@hafas_services ) {
+ return {
+ results => [],
+ errstr => "hafas sub-backend '$sub_backend' not supported"
+ };
+ }
}
my $sstr = ("${backend} _ ${stop} _ ${city}");
@@ -78,10 +90,11 @@ sub get_results {
log_api_access();
}
my $status;
- if ( $backend eq 'db' ) {
+ if ( $backend eq 'hafas' ) {
$status = Travel::Status::DE::HAFAS->new(
station => "${stop}, ${city}",
excluded_mots => [qw[ice ic_ec d regio]],
+ service => $sub_backend,
);
}
elsif ( $backend eq 'aseag' ) {
@@ -519,6 +532,12 @@ helper 'efa_service_list' => sub {
return @efa_services;
};
+helper 'hafas_service_list' => sub {
+ my $self = shift;
+
+ return @hafas_services;
+};
+
get '/_redirect' => sub {
my $self = shift;
my $city = $self->param('city') // q{};