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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
|
package Travel::Status::DE::EFA;
use strict;
use warnings;
use 5.010;
use utf8;
our $VERSION = '3.01';
use Carp qw(confess cluck);
use DateTime;
use DateTime::Format::Strptime;
use Encode qw(encode);
use JSON;
use Travel::Status::DE::EFA::Departure;
use Travel::Status::DE::EFA::Info;
use Travel::Status::DE::EFA::Line;
use Travel::Status::DE::EFA::Services;
use Travel::Status::DE::EFA::Stop;
use Travel::Status::DE::EFA::Trip;
use LWP::UserAgent;
sub new_p {
my ( $class, %opt ) = @_;
my $promise = $opt{promise}->new;
my $self;
eval { $self = $class->new( %opt, async => 1 ); };
if ($@) {
return $promise->reject($@);
}
$self->{promise} = $opt{promise};
$self->post_with_cache_p->then(
sub {
my ($content) = @_;
$self->{response} = $self->{json}->decode($content);
if ( $self->{developer_mode} ) {
say $self->{json}->pretty->encode( $self->{response} );
}
$self->check_for_ambiguous();
if ( $self->{errstr} ) {
$promise->reject( $self->{errstr} );
return;
}
$promise->resolve($self);
return;
}
)->catch(
sub {
my ($err) = @_;
$promise->reject($err);
return;
}
)->wait;
return $promise;
}
sub new {
my ( $class, %opt ) = @_;
$opt{timeout} //= 10;
if ( $opt{timeout} <= 0 ) {
delete $opt{timeout};
}
if (
not( $opt{coord}
or $opt{name}
or $opt{stopfinder}
or $opt{stopseq}
or $opt{from_json} )
)
{
confess('You must specify a name');
}
if ( $opt{type}
and not( $opt{type} =~ m{ ^ (?: stop | stopID | address | poi ) $ }x ) )
{
confess('type must be stop, stopID, address, or poi');
}
if ( $opt{service} ) {
if ( my $service
= Travel::Status::DE::EFA::Services::get_service( $opt{service} ) )
{
$opt{efa_url} = $service->{url};
if ( $opt{coord} ) {
$opt{efa_url} .= '/XML_COORD_REQUEST';
}
elsif ( $opt{stopfinder} ) {
$opt{efa_url} .= '/XML_STOPFINDER_REQUEST';
}
elsif ( $opt{stopseq} ) {
$opt{efa_url} .= '/XML_STOPSEQCOORD_REQUEST';
}
else {
$opt{efa_url} .= '/XML_DM_REQUEST';
}
$opt{time_zone} //= $service->{time_zone};
}
}
$opt{time_zone} //= 'Europe/Berlin';
if ( not $opt{efa_url} ) {
confess('service or efa_url must be specified');
}
my $dt = $opt{datetime} // DateTime->now( time_zone => $opt{time_zone} );
## no critic (RegularExpressions::ProhibitUnusedCapture)
## no critic (Variables::ProhibitPunctuationVars)
if ( $opt{time}
and $opt{time} =~ m{ ^ (?<hour> \d\d? ) : (?<minute> \d\d ) $ }x )
{
$dt->set(
hour => $+{hour},
minute => $+{minute}
);
}
elsif ( $opt{time} ) {
confess('Invalid time specified');
}
if (
$opt{date}
and $opt{date} =~ m{ ^ (?<day> \d\d? ) [.] (?<month> \d\d? ) [.]
(?<year> \d{4} )? $ }x
)
{
if ( $+{year} ) {
$dt->set(
day => $+{day},
month => $+{month},
year => $+{year}
);
}
else {
$dt->set(
day => $+{day},
month => $+{month}
);
}
}
elsif ( $opt{date} ) {
confess('Invalid date specified');
}
my $self = {
cache => $opt{cache},
response => $opt{from_json},
developer_mode => $opt{developer_mode},
efa_url => $opt{efa_url},
service => $opt{service},
strp_stopseq => DateTime::Format::Strptime->new(
pattern => '%Y%m%d %H:%M',
time_zone => $opt{time_zone},
),
strp_stopseq_s => DateTime::Format::Strptime->new(
pattern => '%Y%m%d %H:%M:%S',
time_zone => $opt{time_zone},
),
json => JSON->new->utf8,
};
if ( $opt{coord} ) {
# outputFormat => 'JSON' returns invalid JSON
$self->{post} = {
coord => sprintf( '%.7f:%.7f:%s',
$opt{coord}{lon}, $opt{coord}{lat}, 'WGS84[DD.ddddd]' ),
radius_1 => 1320,
type_1 => 'STOP',
coordListOutputFormat => 'list',
max => 30,
inclFilter => 1,
outputFormat => 'rapidJson',
};
}
elsif ( $opt{stopfinder} ) {
# filter: 2 (stop) | 4 (street) | 8 (address) | 16 (crossing) | 32 (poi) | 64 (postcod)
$self->{post} = {
locationServerActive => 1,
type_sf => 'any',
name_sf => $opt{stopfinder}{name},
anyObjFilter_sf => 2,
coordOutputFormat => 'WGS84[DD.DDDDD]',
outputFormat => 'JSON',
};
}
elsif ( $opt{stopseq} ) {
# outputFormat => 'JSON' also works; leads to different output
$self->{post} = {
line => $opt{stopseq}{stateless},
stop => $opt{stopseq}{stop_id},
tripCode => $opt{stopseq}{key},
date => $opt{stopseq}{date},
coordOutputFormat => 'WGS84[DD.DDDDD]',
outputFormat => 'rapidJson',
useRealtime => '1',
};
}
else {
$self->{post} = {
language => 'de',
mode => 'direct',
outputFormat => 'JSON',
type_dm => $opt{type} // 'stop',
useProxFootSearch => $opt{proximity_search} ? '1' : '0',
useRealtime => '1',
itdDateDay => $dt->day,
itdDateMonth => $dt->month,
itdDateYear => $dt->year,
itdTimeHour => $dt->hour,
itdTimeMinute => $dt->minute,
name_dm => encode( 'UTF-8', $opt{name} ),
};
}
if ( $opt{place} ) {
$self->{post}{placeInfo_dm} = 'invalid';
$self->{post}{placeState_dm} = 'empty';
$self->{post}{place_dm} = encode( 'UTF-8', $opt{place} );
}
if ( $opt{full_routes} ) {
$self->{post}->{depType} = 'stopEvents';
$self->{post}->{includeCompleteStopSeq} = 1;
$self->{want_full_routes} = 1;
}
bless( $self, $class );
if ( $opt{user_agent} ) {
$self->{ua} = $opt{user_agent};
}
else {
my %lwp_options = %{ $opt{lwp_options} // { timeout => 10 } };
$self->{ua} = LWP::UserAgent->new(%lwp_options);
$self->{ua}->env_proxy;
}
if ( $self->{cache} ) {
$self->{cache_key}
= $self->{efa_url} . '?'
. join( '&',
map { $_ . '=' . $self->{post}{$_} } sort keys %{ $self->{post} } );
}
if ( $opt{async} ) {
return $self;
}
if ( $self->{developer_mode} ) {
say 'POST ' . $self->{efa_url};
while ( my ( $key, $value ) = each %{ $self->{post} } ) {
printf( "%30s = %s\n", $key, $value );
}
}
if ( not $self->{response} ) {
my ( $response, $error ) = $self->post_with_cache;
if ($error) {
$self->{errstr} = $error;
return $self;
}
$self->{response} = $self->{json}->decode($response);
}
if ( $self->{developer_mode} ) {
say $self->{json}->pretty->encode( $self->{response} );
}
$self->check_for_ambiguous();
return $self;
}
sub post_with_cache {
my ($self) = @_;
my $cache = $self->{cache};
my $url = $self->{efa_url};
if ( $self->{developer_mode} ) {
say 'POST ' . ( $self->{cache_key} // $url );
}
if ($cache) {
my $content = $cache->thaw( $self->{cache_key} );
if ($content) {
if ( $self->{developer_mode} ) {
say ' cache hit';
}
return ( ${$content}, undef );
}
}
if ( $self->{developer_mode} ) {
say ' cache miss';
}
my $reply = $self->{ua}->post( $url, $self->{post} );
if ( $reply->is_error ) {
return ( undef, $reply->status_line );
}
my $content = $reply->content;
if ($cache) {
$cache->freeze( $self->{cache_key}, \$content );
}
return ( $content, undef );
}
sub post_with_cache_p {
my ($self) = @_;
my $cache = $self->{cache};
my $url = $self->{efa_url};
if ( $self->{developer_mode} ) {
say 'POST ' . ( $self->{cache_key} // $url );
}
my $promise = $self->{promise}->new;
if ($cache) {
my $content = $cache->thaw( $self->{cache_key} );
if ($content) {
if ( $self->{developer_mode} ) {
say ' cache hit';
}
return $promise->resolve( ${$content} );
}
}
if ( $self->{developer_mode} ) {
say ' cache miss';
}
$self->{ua}->post_p( $url, form => $self->{post} )->then(
sub {
my ($tx) = @_;
if ( my $err = $tx->error ) {
$promise->reject(
"POST $url returned HTTP $err->{code} $err->{message}");
return;
}
my $content = $tx->res->body;
if ($cache) {
$cache->freeze( $self->{cache_key}, \$content );
}
$promise->resolve($content);
return;
}
)->catch(
sub {
my ($err) = @_;
$promise->reject($err);
return;
}
)->wait;
return $promise;
}
sub errstr {
my ($self) = @_;
return $self->{errstr};
}
sub name_candidates {
my ($self) = @_;
if ( $self->{name_candidates} ) {
return @{ $self->{name_candidates} };
}
return;
}
sub place_candidates {
my ($self) = @_;
if ( $self->{place_candidates} ) {
return @{ $self->{place_candidates} };
}
return;
}
sub check_for_ambiguous {
my ($self) = @_;
my $json = $self->{response};
if ( $json->{departureList} ) {
return;
}
for my $m ( @{ $json->{dm}{message} // [] } ) {
if ( $m->{name} eq 'error' and $m->{value} eq 'name list' ) {
$self->{errstr} = "ambiguous name parameter";
$self->{name_candidates}
= [ map { $_->{name} } @{ $json->{dm}{points} // [] } ];
return;
}
if ( $m->{name} eq 'error' and $m->{value} eq 'place list' ) {
$self->{errstr} = "ambiguous name parameter";
$self->{place_candidates}
= [ map { $_->{name} } @{ $json->{dm}{points} // [] } ];
return;
}
}
return;
}
sub stop {
my ($self) = @_;
if ( $self->{stop} ) {
return $self->{stop};
}
my $point = $self->{response}{dm}{points}{point};
my $place = $point->{ref}{place};
$self->{stop} = Travel::Status::DE::EFA::Stop->new(
place => $place,
full_name => $point->{name},
name => $point->{name} =~ s{\Q$place\E,? ?}{}r,
id => $point->{stateless},
);
return $self->{stop};
}
sub stops {
my ($self) = @_;
if ( $self->{stops} ) {
return @{ $self->{stops} };
}
my $stops = $self->{response}{dm}{itdOdvAssignedStops} // [];
if ( ref($stops) eq 'HASH' ) {
$stops = [$stops];
}
my @stops;
for my $stop ( @{$stops} ) {
push(
@stops,
Travel::Status::DE::EFA::Stop->new(
place => $stop->{place},
name => $stop->{name},
full_name => $stop->{nameWithPlace},
id => $stop->{stopID},
)
);
}
$self->{stops} = \@stops;
return @stops;
}
sub infos {
my ($self) = @_;
if ( $self->{infos} ) {
return @{ $self->{infos} };
}
for my $info ( @{ $self->{response}{dm}{points}{point}{infos} // [] } ) {
push(
@{ $self->{infos} },
Travel::Status::DE::EFA::Info->new( json => $info )
);
}
return @{ $self->{infos} // [] };
}
sub lines {
my ($self) = @_;
if ( $self->{lines} ) {
return @{ $self->{lines} };
}
for my $line ( @{ $self->{response}{servingLines}{lines} // [] } ) {
push( @{ $self->{lines} }, $self->parse_line($line) );
}
return @{ $self->{lines} // [] };
}
sub parse_line {
my ( $self, $line ) = @_;
my $mode = $line->{mode} // {};
return Travel::Status::DE::EFA::Line->new(
type => $mode->{product},
name => $mode->{name},
number => $mode->{number},
direction => $mode->{destination},
valid => $mode->{timetablePeriod},
mot => $mode->{product},
operator => $mode->{diva}{operator},
identifier => $mode->{diva}{globalId},
,
);
}
sub results {
my ($self) = @_;
if ( $self->{results} ) {
return @{ $self->{results} };
}
if ( $self->{post}{coord} ) {
return $self->results_coord;
}
elsif ( $self->{post}{name_sf} ) {
return $self->results_stopfinder;
}
else {
return $self->results_dm;
}
}
sub results_coord {
my ($self) = @_;
my $json = $self->{response};
my @results;
for my $stop ( @{ $json->{locations} // [] } ) {
push(
@results,
Travel::Status::DE::EFA::Stop->new(
place => $stop->{parent}{name},
full_name => $stop->{properties}{STOP_NAME_WITH_PLACE},
distance_m => $stop->{properties}{distance},
name => $stop->{name},
id => $stop->{id},
)
);
}
$self->{results} = \@results;
return @results;
}
sub results_stopfinder {
my ($self) = @_;
my $json = $self->{response};
my @results;
for my $stop ( @{ $json->{stopFinder}{points} // [] } ) {
push(
@results,
Travel::Status::DE::EFA::Stop->new(
place => $stop->{ref}{place},
full_name => $stop->{name},
name => $stop->{object},
id => $stop->{stateless},
stop_id => $stop->{ref}{gid},
)
);
}
$self->{results} = \@results;
return @results;
}
sub results_dm {
my ($self) = @_;
my $json = $self->{response};
my @results;
for my $departure ( @{ $json->{departureList} // [] } ) {
push(
@results,
Travel::Status::DE::EFA::Departure->new(
json => $departure,
strp_stopseq => $self->{strp_stopseq},
strp_stopseq_s => $self->{strp_stopseq_s}
)
);
}
@results = map { $_->[0] }
sort { $a->[1] <=> $b->[1] }
map { [ $_, $_->countdown ] } @results;
$self->{results} = \@results;
return @results;
}
sub result {
my ($self) = @_;
return Travel::Status::DE::EFA::Trip->new( json => $self->{response} );
}
# static
sub get_service_ids {
return Travel::Status::DE::EFA::Services::get_service_ids(@_);
}
# static
sub get_service {
return Travel::Status::DE::EFA::Services::get_service(@_);
}
1;
__END__
=head1 NAME
Travel::Status::DE::EFA - unofficial EFA departure monitor
=head1 SYNOPSIS
use Travel::Status::DE::EFA;
my $status = Travel::Status::DE::EFA->new(
service => 'VRR',
name => 'Essen Helenenstr'
);
for my $d ($status->results) {
printf(
"%s %-8s %-5s %s\n",
$d->datetime->strftime('%H:%M'),
$d->platform_name, $d->line, $d->destination
);
}
=head1 VERSION
version 3.01
=head1 DESCRIPTION
Travel::Status::DE::EFA is an unofficial interface to EFA-based departure
monitors.
It reports all upcoming tram/bus/train departures at a given place.
=head1 METHODS
=over
=item my $status = Travel::Status::DE::EFA->new(I<%opt>)
Requests the departures as specified by I<opts> and returns a new
Travel::Status::DE::EFA object. B<service> and B<name> are
mandatory. Dies if the wrong I<opts> were passed.
Arguments:
=over
=item B<service> => I<name>
EFA service. See C<< efa-m --list >> for known services.
If you found a service not listed there, please notify
E<lt>derf+efa@finalrewind.orgE<gt>.
=item B<place> => I<place>
Name of the place/city
=item B<type> => B<address>|B<poi>|B<stop>|B<stopID>
Type of the following I<name>. B<poi> means "point of interest". Defaults to
B<stop> (stop/station name).
=item B<name> => I<name>
address / poi / stop name to list departures for.
=item B<datetime> => I<DateTime object>
Request departures for the date/time specified by I<DateTime object>.
Default: now.
=item B<efa_encoding> => I<encoding>
Some EFA servers do not correctly specify their response encoding. If you
observe encoding issues, you can manually specify it here. Example:
iso-8859-15.
=item B<full_routes> => B<0>|B<1>
If true: Request full routes for all departures from the backend. This
enables the B<route_pre>, B<route_post> and B<route_interesting> accessors in
Travel::Status::DE::EFA::Departure(3pm).
=item B<proximity_search> => B<0>|B<1>
If true: Show departures for stops in the proximity of the requested place
as well.
=item B<timeout> => I<seconds>
Request timeout, the argument is passed on to LWP::UserAgent(3pm).
Default: 10 seconds. Set to 0 or a negative value to disable it.
=back
=item my $status_p = Travel::Status::DE::EFA->new_p(I<%opt>)
Returns a promise that resolves into a Travel::Status::DE::EFA instance
($status) on success and rejects with an error message on failure. In addition
to the arguments of B<new>, the following mandatory arguments must be set.
=over
=item B<promise> => I<promises module>
Promises implementation to use for internal promises as well as B<new_p> return
value. Recommended: Mojo::Promise(3pm).
=item B<user_agent> => I<user agent>
User agent instance to use for asynchronous requests. The object must implement
a B<post_p> function. Recommended: Mojo::UserAgent(3pm).
=back
=item $status->errstr
In case of an HTTP request or EFA error, returns a string describing it. If
none occured, returns undef.
=item $status->lines
Returns a list of Travel::Status::DE::EFA::Line(3pm) objects, each one
describing one line servicing the selected station.
=item $status->name_candidates
Returns a list of B<name> candidates if I<name> is ambiguous. Returns
nothing (undef / empty list) otherwise.
=item $status->place_candidates
Returns a list of B<place> candidates if I<place> is ambiguous. Returns
nothing (undef / empty list) otherwise.
=item $status->stop
Returns a Travel::Status::DE::EFA::Stop(3pm) instance describing the requested
stop.
=item $status->stops
In case the requested place/name is served by multiple stops and the backend
provides a list of those: returns a list of Travel::Status::DE::EFA::Stop(3pm)
instances describing each of them. Returns an empty list otherwise.
=item $status->results
Returns a list of Travel::Status::DE::EFA::Departure(3pm) objects, each one describing
one departure.
=item Travel::Status::DE::EFA::get_service_ids()
Returns the list of supported services (backends).
=item Travel::Status::DE::EFA::get_service(I<service>)
Returns a hashref describing the requested I<service> ID with the following keys.
=over
=item B<name> => I<string>
Provider name, e.g. Verkehrsverbund Oberelbe.
=item B<url> => I<string>
Backend base URL.
=item B<homepage> => I<string> (optional)
Provider homepage.
=item B<languages> => I<arrayref> (optional)
Supportde languages, e.g. de, en.
=item B<coverage> => I<hashref>
Area in which the service provides near-optimal coverage. Typically, this
means a (nearly) complete list of departures and real-time data. The
hashref contains two optional keys: B<area> (GeoJSON) and B<regions> (list of
strings, e.g. "DE" or "CH-BE").
=back
=back
=head1 DIAGNOSTICS
None.
=head1 DEPENDENCIES
=over
=item * Class::Accessor(3pm)
=item * DateTime(3pm)
=item * DateTime::Format::Strptime(3pm)
=item * JSON(3pm)
=item * LWP::UserAgent(3pm)
=back
=head1 BUGS AND LIMITATIONS
The API is not exposed completely.
=head1 SEE ALSO
efa-m(1), Travel::Status::DE::EFA::Departure(3pm).
=head1 AUTHOR
Copyright (C) 2011-2024 by Birte Kristina Friesel E<lt>derf@finalrewind.orgE<gt>
=head1 LICENSE
This module is licensed under the same terms as Perl itself.
|