summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Build.PL1
-rw-r--r--README1
-rw-r--r--lib/Travel/Status/DE/URA.pm10
3 files changed, 9 insertions, 3 deletions
diff --git a/Build.PL b/Build.PL
index ee0f662..318b65d 100644
--- a/Build.PL
+++ b/Build.PL
@@ -25,6 +25,7 @@ Module::Build->new(
'Getopt::Long' => 0,
'List::MoreUtils' => 0,
'LWP::UserAgent' => 0,
+ 'Text::CSV' => 0,
},
sign => 1,
diff --git a/README b/README
index 1c9c8fb..7e0a989 100644
--- a/README
+++ b/README
@@ -13,6 +13,7 @@ Dependencies
* DateTime::Format::Duration
* List::MoreUtils
* LWP::UserAgent
+ * Text::CSV
Installation
diff --git a/lib/Travel/Status/DE/URA.pm b/lib/Travel/Status/DE/URA.pm
index 5c0022f..e2f1c70 100644
--- a/lib/Travel/Status/DE/URA.pm
+++ b/lib/Travel/Status/DE/URA.pm
@@ -13,6 +13,7 @@ use DateTime;
use Encode qw(encode decode);
use List::MoreUtils qw(firstval none uniq);
use LWP::UserAgent;
+use Text::CSV;
use Travel::Status::DE::URA::Result;
sub new {
@@ -60,11 +61,12 @@ sub new {
return $self;
}
- $self->{raw_str} = $response->decoded_content;
+ $self->{raw_str} = encode( 'UTF-8', $response->decoded_content );
+
+ # Fix encoding in case we're running through test files
if ( substr( $self->{ura_instant_url}, 0, 5 ) eq 'file:' ) {
$self->{raw_str} = encode( 'UTF-8', $self->{raw_str} );
}
-
$self->parse_raw_data;
return $self;
@@ -72,6 +74,7 @@ sub new {
sub parse_raw_data {
my ($self) = @_;
+ my $csv = Text::CSV->new( { binary => 1 } );
for my $dep ( split( /\r\n/, $self->{raw_str} ) ) {
$dep =~ s{^\[}{};
@@ -79,7 +82,8 @@ sub parse_raw_data {
# first field == 4 => version information, no departure
if ( substr( $dep, 0, 1 ) != 4 ) {
- my @fields = split( /"?,"?/, $dep );
+ $csv->parse($dep);
+ my @fields = $csv->fields;
push( @{ $self->{raw_list} }, \@fields );
push( @{ $self->{stop_names} }, $fields[1] );
}