summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2019-06-17 20:59:57 +0200
committerDaniel Friesel <derf@finalrewind.org>2019-06-17 20:59:57 +0200
commit0bbdd768f44abae452802df7cf9fc88876dac338 (patch)
tree5aceab20983bea404e0acaa0349373bf1bc33bd2
parentc35548e9091929bcff9476086fa7df042f08a99d (diff)
prepare for wagon order support
-rwxr-xr-xlib/Travelynx.pm86
-rw-r--r--lib/Travelynx/Command/work.pm4
2 files changed, 77 insertions, 13 deletions
diff --git a/lib/Travelynx.pm b/lib/Travelynx.pm
index 4f6e839..4a94b02 100755
--- a/lib/Travelynx.pm
+++ b/lib/Travelynx.pm
@@ -414,7 +414,7 @@ sub startup {
return ( undef, 'INSERT failed: ' . $@ );
}
$self->add_route_timestamps( $self->current_user->{id},
- $train );
+ $train, 1 );
$self->run_hook( $self->current_user->{id}, 'checkin' );
return ( $train, undef );
}
@@ -530,7 +530,7 @@ sub startup {
'checkout' => sub {
my ( $self, $station, $force, $uid ) = @_;
- my $db = $self->pg->db;
+ my $db = $self->pg->db;
my $status = $self->get_departures( $station, 120, 120 );
$uid //= $self->current_user->{id};
my $user = $self->get_user_status($uid);
@@ -677,7 +677,7 @@ sub startup {
return ( 0, undef );
}
$self->run_hook( $uid, 'update' );
- $self->add_route_timestamps( $self->current_user->{id}, $train );
+ $self->add_route_timestamps( $self->current_user->{id}, $train, 0 );
return ( 1, undef );
}
);
@@ -1423,8 +1423,8 @@ sub startup {
return {};
}
- my $uid = $opt{uid} // $self->current_user->{id};
- my $year = $opt{year} // 0;
+ my $uid = $opt{uid} // $self->current_user->{id};
+ my $year = $opt{year} // 0;
my $month = $opt{month} // 0;
# Assumption: If the stats cache contains an entry it is up-to-date.
@@ -1538,6 +1538,40 @@ sub startup {
);
$self->helper(
+ 'get_wagonorder_p' => sub {
+ my ( $self, $ts, $train_no ) = @_;
+ my $api_ts = $ts->strftime('%Y%m%d%H%M');
+ my $url
+ = "https://www.apps-bahn.de/wr/wagenreihung/1.0/${train_no}/${api_ts}";
+
+ my $cache = $self->app->cache_iris_main;
+ my $promise = Mojo::Promise->new;
+
+ if ( my $content = $cache->thaw($url) ) {
+ $promise->resolve($content);
+ return $promise;
+ }
+
+ $self->ua->request_timeout(5)->get_p($url)->then(
+ sub {
+ my ($tx) = @_;
+ my $body = decode( 'utf-8', $tx->res->body );
+
+ my $json = JSON->new->decode($body);
+ $cache->freeze( $url, $json );
+ $promise->resolve($json);
+ }
+ )->catch(
+ sub {
+ my ($err) = @_;
+ $promise->reject($err);
+ }
+ )->wait;
+ return $promise;
+ }
+ );
+
+ $self->helper(
'get_hafas_json_p' => sub {
my ( $self, $url ) = @_;
@@ -1648,7 +1682,7 @@ sub startup {
$self->helper(
'add_route_timestamps' => sub {
- my ( $self, $uid, $train ) = @_;
+ my ( $self, $uid, $train, $is_departure ) = @_;
$uid //= $self->current_user->{id};
@@ -1771,7 +1805,17 @@ sub startup {
$extra_data->{him_msg} = $traininfo2->{messages};
- $db->update(
+ my $res = $db->select( 'in_transit', ['data'],
+ { user_id => $uid } );
+ my $res_h = $res->expand->hash;
+ if ( $res_h
+ and $res_h->{data}
+ and $res_h->{data}{wagonorder} )
+ {
+ $extra_data->{wagonorder} = $res_h->{data}{wagonorder};
+ }
+
+ return $db->update_p(
'in_transit',
{
route => JSON->new->encode($route),
@@ -1780,6 +1824,26 @@ sub startup {
{ user_id => $uid }
);
}
+ )->then(
+ sub {
+ if ($is_departure) {
+ return $self->get_wagonorder_p( $train->sched_departure,
+ $train->train_no );
+ }
+ return Mojo::Promise->reject;
+ }
+ )->then(
+ sub {
+ my ($wagonorder) = @_;
+
+ $extra_data->{wagonorder} = $wagonorder;
+
+ $db->update(
+ 'in_transit',
+ { data => JSON->new->encode($extra_data) },
+ { user_id => $uid }
+ );
+ }
)->wait;
}
);
@@ -1814,7 +1878,7 @@ sub startup {
my ( $self, %opt ) = @_;
my $uid = $opt{uid} // $self->current_user->{id};
- my $db = $opt{db} // $self->pg->db;
+ my $db = $opt{db} // $self->pg->db;
my $journey = $db->select( 'in_transit', ['checkout_station_id'],
{ user_id => $uid } )->hash;
@@ -1845,11 +1909,11 @@ sub startup {
'get_connection_targets' => sub {
my ( $self, %opt ) = @_;
- my $uid = $opt{uid} //= $self->current_user->{id};
+ my $uid = $opt{uid} //= $self->current_user->{id};
my $threshold = $opt{threshold}
// DateTime->now( time_zone => 'Europe/Berlin' )
->subtract( months => 4 );
- my $db = $opt{db} //= $self->pg->db;
+ my $db = $opt{db} //= $self->pg->db;
my $min_count = $opt{min_count} // 3;
my $dest_id;
@@ -1896,7 +1960,7 @@ sub startup {
'get_connecting_trains' => sub {
my ( $self, %opt ) = @_;
- my $uid = $opt{uid} //= $self->current_user->{id};
+ my $uid = $opt{uid} //= $self->current_user->{id};
my $use_history = $self->account_use_history($uid);
my ( $ds100, $exclude_via, $exclude_train_id, $exclude_before );
diff --git a/lib/Travelynx/Command/work.pm b/lib/Travelynx/Command/work.pm
index 3e7df72..6970918 100644
--- a/lib/Travelynx/Command/work.pm
+++ b/lib/Travelynx/Command/work.pm
@@ -66,7 +66,7 @@ sub run {
},
{ user_id => $uid }
);
- $self->app->add_route_timestamps( $uid, $train );
+ $self->app->add_route_timestamps( $uid, $train, 1 );
}
};
if ($@) {
@@ -113,7 +113,7 @@ sub run {
},
{ user_id => $uid }
);
- $self->app->add_route_timestamps( $uid, $train );
+ $self->app->add_route_timestamps( $uid, $train, 0 );
}
elsif ( $entry->{real_arr_ts} ) {
$self->app->log->debug(" - checking out");