diff options
author | Gianni Ceccarelli <gianni.ceccarelli@net-a-porter.com> | 2013-05-30 08:00:41 +0100 |
---|---|---|
committer | Gianni Ceccarelli <gianni.ceccarelli@net-a-porter.com> | 2013-05-30 08:00:41 +0100 |
commit | c099b757579129a454739f6e13fc4c5fea4e062e (patch) | |
tree | a9481943b4a6305e931eceb5746467c6546f549e /lib/WebService/TFL/TubeStatus/Response/LineStatus.pm | |
parent | return json response (diff) | |
download | HomePanel-c099b757579129a454739f6e13fc4c5fea4e062e.tar.gz HomePanel-c099b757579129a454739f6e13fc4c5fea4e062e.tar.bz2 HomePanel-c099b757579129a454739f6e13fc4c5fea4e062e.zip |
tube status
Diffstat (limited to 'lib/WebService/TFL/TubeStatus/Response/LineStatus.pm')
-rw-r--r-- | lib/WebService/TFL/TubeStatus/Response/LineStatus.pm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/WebService/TFL/TubeStatus/Response/LineStatus.pm b/lib/WebService/TFL/TubeStatus/Response/LineStatus.pm new file mode 100644 index 0000000..e223bb6 --- /dev/null +++ b/lib/WebService/TFL/TubeStatus/Response/LineStatus.pm @@ -0,0 +1,32 @@ +package WebService::TFL::TubeStatus::Response::LineStatus; +use Moose; +use namespace::autoclean; + +has is_active => ( + is => 'ro', + isa => 'Bool', + required => 1, +); + +has [qw(code class description details)] => ( + is => 'ro', + isa => 'Str', + required => 1, +); + +sub new_from_xml { + my ($class,$ls,$xpath) = @_; + + my %init_arg; + + my ($status) = $xpath->findnodes(q{ws:Status},$ls); + $init_arg{code} = $status->findvalue(q{@ID}); + $init_arg{is_active} = $status->findvalue(q{@IsActive}) eq 'true'; + $init_arg{class} = $status->findvalue(q{@CssClass}); + $init_arg{description} = $status->findvalue(q{@Description}); + $init_arg{details} = $ls->findvalue(q{@StatusDetails}); + + return $class->new(\%init_arg); +} + +1; |