1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
package DBInfoscreen::Controller::Map;
use Mojo::Base 'Mojolicious::Controller';
use Mojo::JSON qw(decode_json);
use Mojo::Promise;
use Encode qw(decode);
my $dbf_version = qx{git describe --dirty} || 'experimental';
chomp $dbf_version;
sub get_hafas_polyline_p {
my ( $self, $trip_id, $line ) = @_;
my $url
= "https://2.db.transport.rest/trips/${trip_id}?lineName=${line}&polyline=true";
my $cache = $self->app->cache_iris_main;
my $promise = Mojo::Promise->new;
say $url;
if ( my $content = $cache->thaw($url) ) {
$promise->resolve($content);
return $promise;
}
$self->ua->request_timeout(5)
->get_p(
$url => { 'User-Agent' => "dbf.finalrewind.org/${dbf_version}" } )
->then(
sub {
my ($tx) = @_;
my $body = decode( 'utf-8', $tx->res->body );
my $json = decode_json($body);
my @coordinate_list;
for my $feature ( @{ $json->{polyline}{features} } ) {
if ( exists $feature->{geometry}{coordinates} ) {
push( @coordinate_list, $feature->{geometry}{coordinates} );
}
#if ($feature->{type} eq 'Feature') {
# say "Feature " . $feature->{properties}{name};
#}
}
my $ret = {
name => $json->{line}{name} // '?',
polyline => [@coordinate_list],
stopovers => $json->{stopovers},
};
$cache->freeze( $url, $ret );
$promise->resolve($ret);
}
)->catch(
sub {
my ($err) = @_;
$promise->reject($err);
}
)->wait;
return $promise;
}
sub route {
my ($self) = @_;
my $trip_id = $self->stash('tripid');
my $line_no = $self->stash('lineno');
$self->render_later;
$self->get_hafas_polyline_p( $trip_id, $line_no )->then(
sub {
my ($pl) = @_;
my @polyline = @{ $pl->{polyline} };
my @line_pairs;
my @station_coordinates;
for my $i ( 1 .. $#polyline ) {
push(
@line_pairs,
[
[ $polyline[ $i - 1 ][1], $polyline[ $i - 1 ][0] ],
[ $polyline[$i][1], $polyline[$i][0] ]
]
);
}
for my $stop ( @{ $pl->{stopovers} // [] } ) {
push(
@station_coordinates,
[
[
$stop->{stop}{location}{latitude},
$stop->{stop}{location}{longitude}
],
$stop->{stop}{name}
]
);
}
$self->render(
'route_map',
title => $pl->{name},
hide_opts => 1,
with_map => 1,
polyline_groups => [
{
polylines => \@line_pairs,
color => '#00838f',
opacity => 0.6,
fit_bounds => 1,
}
],
station_coordinates => [@station_coordinates],
);
}
)->catch(
sub {
my ($err) = @_;
$self->render(
'route_map',
title => "Fehler",
hide_opts => 1,
);
}
)->wait;
}
1;
|