I was on holiday in England this summer. I arrived in Worthing by bus from London,
had a full day there, and wanted to take the train the following day to Bristol.
The bus route from my BnB to the station was inconvenient and expensive.
Ordering a taxi was my next idea. I wanted to do that without human interaction
the evening before.
This is the story of how that did not work.
The Mobile App
Before analyzing why ordering a taxicab through their website did not work,
I wanted to try the mobile app. I was hopeful, considering their promise that
I could "book a car in seconds and don't even need to ring us!".
As it turns out, this app is not available through the German Google Play Store.
This means, you won't find it when you search for it and if you have the
correct URL,
you can't install the app through the web interface on a device that is connected
to the German Google Play Store (so all of mine).
But this is not a problem since you can download any APK that is available from
any app store through a third-party service like APKPure (unendorsed).
So knowing the name of the app in the Play Store I did
that and installed the app.
You're presented with a registration screen where you have to enter your phone
number to receive a confirmation SMS. My (international) phone number didn't take
and I was not able to complete the process. We will later see why.
Being unable to register via the app, I return to the web site.
The Web Site
As you can see, to order a taxi you first have to enter where you want to be
picked up and where you want to go. The system then calculates the distance
between both points, estimates the cost, and then you can go on to the next step.
In order to calculate the distance, the web site uses the Google Maps API to
create a route between both points and calculates a cost. Here's the corresponding
code from the site:
journey['distance'] = response.routes[0].legs[0].distance;
journey['duration'] = response.routes[0].legs[0].duration;
journey['miles'] = ( journey['distance'].value * 0.000621371192 );
journey['price'] = CurrencyFormatted(2.90);
journey['total'] = CurrencyFormatted( journey['price']
+ 1.90 * ( journey['miles'] - 0.2 ));
journey['start_address'] = response.routes[0].legs[0].start_address;
journey['end_address'] = response.routes[0].legs[0].end_address;
This looks okay. It is to note that the site takes the addresses returned by
google as the canonical start and end of the journey. So in principle, you could
enter the name of a shop or restaurant as the target location of your taxicab ride and as
long as google knows it, the taxi service is booked to the actual and correct
address.
Then there's another step of validation: Since the taxicab company only operates
in Worthing in the south of England, they do not want to accept rides that are
outside a specific area. They want to achieve this by parsing the post code
from the canonical google response and compare it to a set of given post codes
that correspond to the Worthing area: journey['start_postcode'] = journey['start_address'].match(/([A-Z]?\d(:? \d[A-Z]{2})?|[A-Z]\d{2}(:? \d[A-Z]{2})?|[A-Z]{2}\d(:? \d[A-Z]{2})?|[A-Z]{2}\d{2}(:? \d[A-Z]{2})?|[A-Z]\d[A-Z](:? \d[A-Z]{2})?|[A-Z]{2}\d[A-Z](:? \d[A-Z]{2})?),\s*UK$/)[0].
That's quite a large regular expression and I give you a visualisation powered by
Regexper:
I give you part of the google response for a ride between some random house and the train station
and let you figure out why this step fails for me:
{ "routes" : [
{ "legs" : [
{
"distance" : {
"text" : "1,7 km",
"value" : 1654
},
"duration" : {
"text" : "5 Minuten",
"value" : 292
},
"end_address" : "Worthing BN11 1AA, Vereinigtes Königreich",
"start_address" : "Harrow Rd, Worthing BN11 4RB, Vereinigtes Königreich"
}
]}
]}
Google does return the post code correctly, but since my browser is set to German,
Google's response is in German as well. The regular expression only matches
strings ending in "UK", while my German response ends in "Vereinigtes Königreich" ("United Kingdom" in German).
The fix seems easy enough. Just set the browser language to UK English
and do the whole thing again and there we go:
Now we just have to enter our name, email address, and phone number and we're good
and finally can go by taxi wherever we want to go (within the greater Worthing area).
As I enter my phone number, starting with +49 or 0049 for Germany, followed by three
digits for the service provider , and seven or eight digits for the user,
it dawns on me that it might not be that easy (as if it had been up to this point) and I take another glance at the code:
function validateTelephone(telephone){
var re = /^(?:\W*\d){11}\W*$/;
return re.test(telephone);
}
Oh oh. Okay. Yeah. About that...
My phone number does not fit that scheme (while 00000000000 does). If I get any confirmation code I need to respond to, or they want to call back for some additional questions, they won't be able to reach me. This is probably also the reason why the app did not work and why I couldn't receive an SMS with a confirmation code.
I won't be
able to order a taxi online. To recap the two main reasons why:
- Because my browser is set to something else than English, the website can not verify that the cab journey takes place within the serviced area.
Solution: Google provides GPS coordinates for the legs of the journey. One can easily check whether they are contained within a rectangle or convex polygon.
- Because I have an international phone number, I can't interact with the parts of the process that depend on my cellphone.
Solution: Allow for international phone numbers or make the process not depend on them.
In the end I called them by phone, which took a whopping 25 seconds and the
taxi arrived on time to bring me to the train station.