mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-17 05:19:52 +00:00
74 lines
3 KiB
Java
74 lines
3 KiB
Java
/*
|
|
* Copyright the original author or authors.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package de.schildbach.pte;
|
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import de.schildbach.pte.dto.Product;
|
|
|
|
import okhttp3.HttpUrl;
|
|
|
|
/**
|
|
* Provider implementation for the Nordhessischer Verkehrsverbund (North Hesse, Germany).
|
|
*
|
|
* @author Andreas Schildbach
|
|
*/
|
|
public class NvvProvider extends AbstractHafasClientInterfaceProvider {
|
|
private static final HttpUrl API_BASE = HttpUrl.parse("https://auskunft.nvv.de/auskunft/bin/app/");
|
|
private static final Product[] PRODUCTS_MAP = { Product.HIGH_SPEED_TRAIN, Product.HIGH_SPEED_TRAIN,
|
|
Product.REGIONAL_TRAIN, Product.SUBURBAN_TRAIN, Product.SUBWAY, Product.TRAM, Product.BUS, Product.BUS,
|
|
Product.FERRY, Product.ON_DEMAND, Product.REGIONAL_TRAIN, Product.REGIONAL_TRAIN };
|
|
|
|
public NvvProvider(final String apiAuthorization) {
|
|
super(NetworkId.NVV, API_BASE, PRODUCTS_MAP);
|
|
setApiVersion("1.14");
|
|
setApiClient("{\"id\":\"NVV\",\"type\":\"AND\"}");
|
|
setApiAuthorization(apiAuthorization);
|
|
httpClient.setTrustAllCertificates(true);
|
|
}
|
|
|
|
private static final String[] PLACES = { "Frankfurt (Main)", "Offenbach (Main)", "Mainz", "Wiesbaden", "Marburg",
|
|
"Kassel", "Hanau", "Göttingen", "Darmstadt", "Aschaffenburg", "Berlin", "Fulda" };
|
|
|
|
@Override
|
|
protected String[] splitStationName(final String name) {
|
|
if (name.startsWith("F "))
|
|
return new String[] { "Frankfurt", name.substring(2) };
|
|
if (name.startsWith("OF "))
|
|
return new String[] { "Offenbach", name.substring(3) };
|
|
if (name.startsWith("MZ "))
|
|
return new String[] { "Mainz", name.substring(3) };
|
|
|
|
for (final String place : PLACES) {
|
|
if (name.startsWith(place + " - "))
|
|
return new String[] { place, name.substring(place.length() + 3) };
|
|
else if (name.startsWith(place + " ") || name.startsWith(place + "-"))
|
|
return new String[] { place, name.substring(place.length() + 1) };
|
|
}
|
|
|
|
return super.splitStationName(name);
|
|
}
|
|
|
|
@Override
|
|
protected String[] splitAddress(final String address) {
|
|
final Matcher m = P_SPLIT_NAME_FIRST_COMMA.matcher(address);
|
|
if (m.matches())
|
|
return new String[] { m.group(1), m.group(2) };
|
|
return super.splitStationName(address);
|
|
}
|
|
}
|