summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2025-10-15 18:55:06 +0200
committerBirte Kristina Friesel <derf@finalrewind.org>2025-10-15 18:55:06 +0200
commiteba2e6a7f60ada260291f41cada0e6bd3274a500 (patch)
tree3f601350b710f194c9c0bc297e1b8371dc5e504f
parent61cf8cfbd7f22726fdeed5c0a08f8833cb127cc1 (diff)
Use URI::Escape to escape umlauts in place/name arguments
This fixes VVO and LinzAG issues with umlauts
-rw-r--r--Build.PL3
-rw-r--r--cpanfile1
-rw-r--r--lib/Travel/Status/DE/EFA.pm11
-rwxr-xr-xscripts/makedeb-docker-helper2
4 files changed, 13 insertions, 4 deletions
diff --git a/Build.PL b/Build.PL
index a5eeab4..fb74975 100644
--- a/Build.PL
+++ b/Build.PL
@@ -19,7 +19,7 @@ Module::Build->new(
'Cache::File' => 0,
'GIS::Distance' => 0,
},
- requires => {
+ requires => {
'perl' => '5.10.1',
'Carp' => 0,
'Class::Accessor' => 0,
@@ -30,6 +30,7 @@ Module::Build->new(
'List::Util' => 0,
'LWP::UserAgent' => 0,
'LWP::Protocol::https' => 0,
+ 'URI::Escape' => 0,
},
sign => 1,
meta_merge => {
diff --git a/cpanfile b/cpanfile
index c88d11b..d3c5113 100644
--- a/cpanfile
+++ b/cpanfile
@@ -7,6 +7,7 @@ requires 'JSON';
requires 'List::Util';
requires 'LWP::UserAgent';
requires 'LWP::Protocol::https';
+requires 'URI::Escape';
on test => sub {
requires 'File::Slurp';
diff --git a/lib/Travel/Status/DE/EFA.pm b/lib/Travel/Status/DE/EFA.pm
index 7dfbc3b..bcf23cc 100644
--- a/lib/Travel/Status/DE/EFA.pm
+++ b/lib/Travel/Status/DE/EFA.pm
@@ -20,6 +20,7 @@ use Travel::Status::DE::EFA::Services;
use Travel::Status::DE::EFA::Stop;
use Travel::Status::DE::EFA::Trip;
use LWP::UserAgent;
+use URI::Escape qw(uri_escape);
sub new_p {
my ( $class, %opt ) = @_;
@@ -68,6 +69,7 @@ sub new_p {
sub new {
my ( $class, %opt ) = @_;
+ my $encoding = 'UTF-8';
my $tls_insecure = 0;
$opt{timeout} //= 10;
if ( $opt{timeout} <= 0 ) {
@@ -111,6 +113,9 @@ sub new {
if ( not $service->{tls_verify} ) {
$tls_insecure = 1;
}
+ if ( $service->{encoding} ) {
+ $encoding = $service->{encoding};
+ }
}
}
@@ -232,14 +237,16 @@ sub new {
itdDateYear => $dt->year,
itdTimeHour => $dt->hour,
itdTimeMinute => $dt->minute,
- name_dm => encode( 'UTF-8', $opt{name} ),
+ name_dm =>
+ uri_escape( encode( $encoding, $opt{name} ), '^A-Za-z0-9-._~ ' ),
};
}
if ( $opt{place} ) {
$self->{post}{placeInfo_dm} = 'invalid';
$self->{post}{placeState_dm} = 'empty';
- $self->{post}{place_dm} = encode( 'UTF-8', $opt{place} );
+ $self->{post}{place_dm}
+ = uri_escape( encode( $encoding, $opt{place} ), '^A-Za-z0-9-._~ ' );
}
if ( $opt{full_routes} ) {
diff --git a/scripts/makedeb-docker-helper b/scripts/makedeb-docker-helper
index f6f309d..bbfdd1e 100755
--- a/scripts/makedeb-docker-helper
+++ b/scripts/makedeb-docker-helper
@@ -10,7 +10,7 @@ apt-get -y install \
apt-file dh-make-perl libmodule-build-perl \
libclass-accessor-perl libdatetime-perl libdatetime-format-strptime-perl \
libexception-class-perl libfile-slurp-perl libwww-perl \
- libjson-perl libjson-xs-perl \
+ libjson-perl libjson-xs-perl liburi-perl \
libtest-compile-perl libtest-pod-perl \
libtest-fatal-perl libtest-simple-perl