11 KiB
Writing a profile
Per endpoint, there is an endpoint-specific customisation called profile which may for example do the following:
- handle the additional requirements of the endpoint (e.g. authentication),
- extract additional information from the data provided by the endpoint,
- guard against triggering bugs of certain endpoints (e.g. time limits).
This guide is about writing such a profile. If you just want to use an already supported endpoint, refer to the API documentation instead.
Note: If you get stuck, ask for help by creating an issue! We're motivated to help people expand the scope of this library.
0. How do the profiles work?
A profile contains of three things:
- mandatory details about the HAFAS endpoint
endpoint
: The protocol, host and path of the endpoint.locale
: The BCP 47 locale of your endpoint (or the area that your endpoint covers).timezone
: An IANA-time-zone-compatible timezone of your endpoint.
- flags indicating that features are supported by the endpoint – e.g.
journeyRef
- methods overriding the default profile
As an example, let's say we have an Austrian endpoint:
const myProfile = {
endpoint: 'https://example.org/bin/mgate.exe',
locale: 'de-AT',
timezone: 'Europe/Vienna'
}
If you pass this profile into hafas-client
, the parseLine
method will override the default one.
Assuming the endpoint returns all lines names prefixed with foo
, We can strip them like this:
// get the default line parser
const createParseLine = require('hafas-client/parse/line')
const createParseLineWithoutFoo = (profile, operators) => {
const parseLine = createParseLine(profile, operators)
// wrapper function with additional logic
const parseLineWithoutFoo = (l) => {
const line = parseLine(l)
line.name = line.name.replace(/foo /g, '')
return line
}
return parseLineWithoutFoo
}
profile.parseLine = createParseLineWithoutFoo
1. Setup
Note: There are many ways to find the required values. This way is rather easy and has worked for most of the apps that I've looked at so far.
There's a video showing the following steps.
- Get an iOS or Android device and download the "official" app for the public transport provider that you want to build a profile for.
- Configure a man-in-the-middle HTTP proxy like mitmproxy.
- Note: This method does not work if the app uses public key pinning. In this case (the app won't be able to query data), please create an issue, so we can discuss other techniques.
- Record requests of the app.
- To help others in the future, post the requests (in their entirety!) on GitHub, e.g. in as format like this. This will also let us help you if you have any questions.
- Make sure to cover all relevant sections of the app, e.g. "journeys", "departures", "live map". Better record more than less; You will regret not having enough information later on.
2. Basic profile
- Identify the
endpoint
. The protocol, host and path of the endpoint, but not the query string.- Note:
hafas-client
for now only supports the interface providing JSON (generated from XML), which is being used by the corresponding iOS/Android apps. It supports neither the JSONP, nor the XML, nor the HTML interface. If the endpoint does not end inmgate.exe
, it mostly likely won't work.
- Note:
- Identify the
locale
. Basically guess work; Use the date & time formats as an indicator. - Identify the
timezone
. This may be tricky, a for example Deutsche Bahn returns departures for Moscow as+01:00
instead of+03:00
. - Copy the authentication and other meta fields, namely
ver
,ext
,client
andlang
.- You can find these fields in the root of each request JSON. Check a VBB request and the corresponding VBB profile for an example.
- Add a function
transformReqBody(body)
to your profile, which assigns them tobody
. - Some profiles have a
checksum
parameter (like here) or twomic
&mac
parameters (like here). If you see one of them in your requests, jump to Appendix A: checksum, mic, mac. Unfortunately, this is necessary to get the profile working.
3. Products
In hafas-client
, there's a difference between the mode
and the product
field:
- The
mode
field describes the mode of transport in general. Standardised by the Friendly Public Transport Format1.0.1
, it is on purpose limited to a very small number of possible values, e.g.train
orbus
. - The value for
product
relates to how a means of transport "works" in local context. Example: Even though S-Bahn and U-Bahn in Berlin are bothtrain
s, they have different operators, service patterns, stations and look different. Therefore, they are two distinctproduct
ssubway
andsuburban
.
Specify product
s that appear in the app you recorded requests of. For a fictional transit network, this may look like this:
const products = {
commuterTrain: {
product: 'commuterTrain',
mode: 'train',
bitmask: 1,
name: 'ACME Commuter Rail',
short: 'CR'
},
metro: {
product: 'metro',
mode: 'train',
bitmask: 2,
name: 'Foo Bar Metro',
short: 'M'
}
}
Let's break this down:
product
should contain a sensible, camelCased, alphanumeric identifier. Use it for the key in theproducts
object as well.mode
should be a valid Friendly Public Transport Format1.0.1
mode.- HAFAS endpoints work with a bitmask that toggles the individual products.
bitmask
should toggle the appropriate bit(s) in the bitmask (see below). name
should be a short, but distinct name for the means of transport, just precise enough in local context. In Berlin,S-Bahn commuter rail
would be too much, because everyone knows whatS-Bahn
means.short
short be the shortest possible symbol that identifies the product.
todo: defaultProducts
, allProducts
, bitmasks
, add to profile
If you want, you can now verify that the profile works; I've prepared a script for that. Alternatively, submit Pull Request and I will help you out with testing and improvements.
Finding the right values for the bitmask
field
As shown in the video, search for a journey and toggle off one product at a time, recording the requests. After extracting the products bitmask (example) you will end up with values looking like these:
toggles value binary notation subtraction bit(s)
all products 255 11111111 255 - 0
all but ACME Commuter Rail 127 01111111 255 - 2^7 2^7
all but Foo Bar Metro 191 10111111 255 - 2^6 2^6
all but product C 223 11011111 255 - 2^5 2^5
all but product D 239 11101111 255 - 2^4 2^4
all but product E 243 11110011 255 - 2^3 - 2^2 2^3 & 2^2
all but product F 253 11111101 255 - 2^1 2^1
all but product G 254 11111110 255 - 2^0 2^0
4. Additional info
We consider these improvements to be optional:
- Check if the endpoint supports the journey legs call.
- In the app, check if you can query details for the status of a single journey leg. It should load realtime delays and the current progress.
- If this feature is supported, add
journeyLeg: true
to the profile.
- Check if the endpoint supports the live map call. Does the app have a "live map" showing all vehicles within an area? If so, add
radar: true
to the profile. - Consider transforming station & line names into the formats that's most suitable for local users. Some examples:
M13 (Tram)
->M13
. With Berlin context, it is obvious thatM13
is a tram.Berlin Jungfernheide Bhf
->Berlin Jungfernheide
. With local context, it's obvious that Jungfernheide is a train station.
- Check if the endpoint has non-obvious limitations and let use know about these. Examples:
- Some endpoints have a time limit, after which they won't return more departures, but silently discard them.
Appendix A: checksum
, mic
, mac
As far as I know, there are three different types of authentication used among HAFAS deployments.
unprotected endpoints
You can just query these if you send a formally correct request.
endpoints using the checksum
query parameter
checksum
is a message authentication code: hafas-client
will compute it by hashing the request body and a salt (which means secret). This secret can be read from the config file inside the app bundle. There is no guide for this yet, so please open an issue instead.
endpoints using the mic
& mac
query parameters
mic
is a message integrity code, the hash of the request body.
mac
is a message authentication code, the hash of mic
and a salt (which means secret). This secret can be read from the config file inside the app bundle. There is no guide for this yet, so please open an issue instead.