summaryrefslogtreecommitdiff
path: root/bin/db-fakedisplay
blob: 79302859b8e591a53bdbb20e165b07c32d4484fc (plain)
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
#!/usr/bin/env perl

use strict;
use warnings;
use 5.010;

use File::ShareDir qw(dist_file);
use HTML::Template;
use List::Util qw(first);
use Travel::Status::DE::DeutscheBahn;

our $VERSION = '0.00';

sub show_help {
	my ($exit_status) = @_;

	say 'Usage: db-fakedisplay <station> <platform>';

	exit $exit_status;
}

if (@ARGV != 2) {
	show_help(1);
}

my ($station, $platform) = @ARGV;
my $template_file        = dist_file('db-fakedisplay', 'template.html');
my $template = HTML::Template->new( filename => $template_file);

my $status = Travel::Status::DE::DeutscheBahn->new(
	station => $station
);

my $info = first { $_->platform eq $platform } $status->results;

if (not defined $info) {
	say STDERR 'Got no departures for that platform';
	exit 1;
}

my @via = $info->route;
my $extra = $info->info;

$extra =~ s{ (?: ^ | , ) (?: p.nktlich | k [.] A [.] ) }{}x;

$template->param(
	time => $info->time,
	train => $info->train,
	via => [ map { { stop => $_ } } splice(@via, 0, 3) ],
	destination => $info->destination,
	platform => $info->platform,
	info => $extra,
);

say $template->output;

__END__

=head1 NAME

=head1 SYNOPSIS

=head1 VERSION

=head1 DESCRIPTION

=head1 OPTIONS

=over

=back

=head1 EXIT STATUS

=head1 CONFIGURATION

None.

=head1 DEPENDENCIES

=over

=back

=head1 BUGS AND LIMITATIONS

=head1 AUTHOR

Copyright (C) 2011 by Daniel Friesel E<lt>derf@finalrewind.orgE<gt>

=head1 LICENSE

  0. You just DO WHAT THE FUCK YOU WANT TO.