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
|
package Travel::Status::DE::DBRIS::JourneyAtStop;
use strict;
use warnings;
use 5.020;
use parent 'Class::Accessor';
our $VERSION = '0.04';
Travel::Status::DE::DBRIS::JourneyAtStop->mk_ro_accessors(
qw(type dep sched_dep rt_dep delay is_cancelled line stop_eva id platform rt_platform destination via via_last
train_short train_mid train_long train maybe_train_no maybe_line_no
)
);
sub new {
my ( $obj, %opt ) = @_;
my $json = $opt{json};
my $strptime = $opt{strptime_obj};
my $ref = {
type => $json->{verkehrmittel}{kurzText},
line => $json->{verkehrmittel}{mittelText},
train => $json->{verkehrmittel}{name},
train_short => $json->{verkehrmittel}{kurzText},
train_mid => $json->{verkehrmittel}{mittelText},
train_long => $json->{verkehrmittel}{langText},
id => $json->{journeyId},
stop_eva => $json->{bahnhofsId},
destination => $json->{terminus},
platform => $json->{gleis},
rt_platform => $json->{ezGleis},
via => $json->{ueber},
via_last => ( $json->{ueber} // [] )->[-1],
};
$ref->{maybe_train_no} = $ref->{train} =~ s{^.* ++}{}r;
$ref->{maybe_line_no} = $ref->{train_mid} =~ s{^.* ++}{}r;
bless( $ref, $obj );
if ( $json->{zeit} ) {
$ref->{sched_dep} = $strptime->parse_datetime( $json->{zeit} );
}
if ( $json->{ezZeit} ) {
$ref->{rt_dep} = $strptime->parse_datetime( $json->{ezZeit} );
}
$ref->{dep} = $ref->{rt_dep} // $ref->{sched_dep};
if ( $ref->{sched_dep} and $ref->{rt_dep} ) {
$ref->{delay} = $ref->{rt_dep}->subtract_datetime( $ref->{sched_dep} )
->in_units('minutes');
}
for my $message ( @{ $json->{meldungen} // [] } ) {
if ( $message->{type} and $message->{type} eq 'HALT_AUSFALL' ) {
$ref->{is_cancelled} = 1;
}
push( @{ $ref->{messages} }, $message );
}
return $ref;
}
sub messages {
my ($self) = @_;
return @{ $self->{messages} // [] };
}
sub TO_JSON {
my ($self) = @_;
my $ret = { %{$self} };
for my $k (qw(sched_dep rt_dep dep sched_arr rt_arr arr)) {
if ( $ret->{$k} ) {
$ret->{$k} = $ret->{$k}->epoch;
}
}
return $ret;
}
1;
|