mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-21 09:49:51 +00:00
162 lines
8 KiB
Java
162 lines
8 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.HashMap;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
import java.util.regex.Matcher;
|
|
|
|
import de.schildbach.pte.dto.Product;
|
|
import de.schildbach.pte.dto.Style;
|
|
import de.schildbach.pte.dto.Style.Shape;
|
|
|
|
import okhttp3.HttpUrl;
|
|
|
|
/**
|
|
* Provider implementation for the Zürcher Verkehrsverbund (Zurich, Switzerland).
|
|
*
|
|
* @author Andreas Schildbach
|
|
*/
|
|
public class ZvvProvider extends AbstractHafasClientInterfaceProvider {
|
|
private static final Product[] PRODUCTS_MAP = { Product.HIGH_SPEED_TRAIN, Product.REGIONAL_TRAIN,
|
|
Product.REGIONAL_TRAIN, Product.REGIONAL_TRAIN, Product.FERRY, Product.SUBURBAN_TRAIN, Product.BUS,
|
|
Product.CABLECAR, Product.BUS, Product.TRAM };
|
|
private static final HttpUrl API_BASE = HttpUrl.parse("https://online.fahrplan.zvv.ch/bin/");
|
|
private static final String DEFAULT_API_CLIENT = "{\"id\":\"ZVV\",\"type\":\"AND\"}";
|
|
|
|
public ZvvProvider(final String apiAuthorization) {
|
|
this(DEFAULT_API_CLIENT, apiAuthorization);
|
|
}
|
|
|
|
public ZvvProvider(final String apiClient, final String apiAuthorization) {
|
|
super(NetworkId.ZVV, API_BASE, PRODUCTS_MAP);
|
|
setApiVersion("1.15");
|
|
setApiExt("ZVV.2");
|
|
setApiClient(apiClient);
|
|
setApiAuthorization(apiAuthorization);
|
|
setStyles(STYLES);
|
|
}
|
|
|
|
private static final String[] OPERATORS = { "SBB", "SZU" };
|
|
private static final String[] PLACES = { "Zürich", "Winterthur" };
|
|
|
|
@Override
|
|
protected String[] splitStationName(String name) {
|
|
for (final String operator : OPERATORS) {
|
|
if (name.endsWith(" " + operator)) {
|
|
name = name.substring(0, name.length() - operator.length() - 1);
|
|
break;
|
|
}
|
|
|
|
if (name.endsWith(" (" + operator + ")")) {
|
|
name = name.substring(0, name.length() - operator.length() - 3);
|
|
break;
|
|
}
|
|
}
|
|
|
|
for (final String place : PLACES) {
|
|
if (name.startsWith(place + " "))
|
|
return new String[] { place, name.substring(place.length() + 1) };
|
|
else if (name.startsWith(place + ", "))
|
|
return new String[] { place, name.substring(place.length() + 2) };
|
|
}
|
|
|
|
final Matcher m = P_SPLIT_NAME_FIRST_COMMA.matcher(name);
|
|
if (m.matches())
|
|
return new String[] { m.group(1), m.group(2) };
|
|
return super.splitStationName(name);
|
|
}
|
|
|
|
@Override
|
|
protected String[] splitPOI(final String poi) {
|
|
final Matcher m = P_SPLIT_NAME_FIRST_COMMA.matcher(poi);
|
|
if (m.matches())
|
|
return new String[] { m.group(1), m.group(2) };
|
|
return super.splitStationName(poi);
|
|
}
|
|
|
|
@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);
|
|
}
|
|
|
|
@Override
|
|
public Set<Product> defaultProducts() {
|
|
return Product.ALL;
|
|
}
|
|
|
|
private static final Map<String, Style> STYLES = new HashMap<>();
|
|
|
|
static {
|
|
// S-Bahn
|
|
STYLES.put("SS2", new Style(Shape.RECT, Style.parseColor("#70c82c"), Style.WHITE));
|
|
STYLES.put("SS3", new Style(Shape.RECT, Style.parseColor("#587AC2"), Style.WHITE));
|
|
STYLES.put("SS4", new Style(Shape.RECT, Style.parseColor("#EE7267"), Style.WHITE));
|
|
STYLES.put("SS5", new Style(Shape.RECT, Style.parseColor("#6aadc3"), Style.WHITE));
|
|
STYLES.put("SS6", new Style(Shape.RECT, Style.parseColor("#6f41a4"), Style.WHITE));
|
|
STYLES.put("SS7", new Style(Shape.RECT, Style.parseColor("#fbb809"), Style.BLACK));
|
|
STYLES.put("SS8", new Style(Shape.RECT, Style.parseColor("#562691"), Style.WHITE));
|
|
STYLES.put("SS9", new Style(Shape.RECT, Style.parseColor("#069A5D"), Style.WHITE));
|
|
STYLES.put("SS10", new Style(Shape.RECT, Style.parseColor("#fbc434"), Style.BLACK));
|
|
STYLES.put("SS11", new Style(Shape.RECT, Style.parseColor("#ae90cf"), Style.WHITE));
|
|
STYLES.put("SS12", new Style(Shape.RECT, Style.parseColor("#ed1c24"), Style.WHITE));
|
|
STYLES.put("SS13", new Style(Shape.RECT, Style.parseColor("#905723"), Style.WHITE));
|
|
STYLES.put("SS14", new Style(Shape.RECT, Style.parseColor("#753c0c"), Style.WHITE));
|
|
STYLES.put("SS15", new Style(Shape.RECT, Style.parseColor("#c79f73"), Style.WHITE));
|
|
STYLES.put("SS16", new Style(Shape.RECT, Style.parseColor("#68c971"), Style.WHITE));
|
|
STYLES.put("SS17", new Style(Shape.RECT, Style.parseColor("#3b99b5"), Style.WHITE));
|
|
STYLES.put("SS18", new Style(Shape.RECT, Style.parseColor("#f14337"), Style.WHITE));
|
|
STYLES.put("SS21", new Style(Shape.RECT, Style.parseColor("#9acaee"), Style.WHITE));
|
|
STYLES.put("SS22", new Style(Shape.RECT, Style.parseColor("#8dd24e"), Style.WHITE));
|
|
STYLES.put("SS24", new Style(Shape.RECT, Style.parseColor("#ab7745"), Style.WHITE));
|
|
STYLES.put("SS26", new Style(Shape.RECT, Style.parseColor("#0e87aa"), Style.WHITE));
|
|
STYLES.put("SS29", new Style(Shape.RECT, Style.parseColor("#3dba56"), Style.WHITE));
|
|
STYLES.put("SS30", new Style(Shape.RECT, Style.parseColor("#0b8ed8"), Style.WHITE));
|
|
STYLES.put("SS33", new Style(Shape.RECT, Style.parseColor("#51aae3"), Style.WHITE));
|
|
STYLES.put("SS35", new Style(Shape.RECT, Style.parseColor("#81c0eb"), Style.WHITE));
|
|
STYLES.put("SS40", new Style(Shape.RECT, Style.parseColor("#ae90cf"), Style.WHITE));
|
|
STYLES.put("SS41", new Style(Shape.RECT, Style.parseColor("#f89a83"), Style.WHITE));
|
|
STYLES.put("SS55", new Style(Shape.RECT, Style.parseColor("#905723"), Style.WHITE));
|
|
|
|
// Tram
|
|
STYLES.put("T2", new Style(Shape.RECT, Style.parseColor("#ed1c24"), Style.WHITE));
|
|
STYLES.put("T3", new Style(Shape.RECT, Style.parseColor("#19ae48"), Style.WHITE));
|
|
STYLES.put("T4", new Style(Shape.RECT, Style.parseColor("#453fa0"), Style.WHITE));
|
|
STYLES.put("T5", new Style(Shape.RECT, Style.parseColor("#8c5a2c"), Style.WHITE));
|
|
STYLES.put("T6", new Style(Shape.RECT, Style.parseColor("#d6973c"), Style.WHITE));
|
|
STYLES.put("T7", new Style(Shape.RECT, Style.parseColor("#231f20"), Style.WHITE));
|
|
STYLES.put("T8", new Style(Shape.RECT, Style.parseColor("#99d420"), Style.BLACK));
|
|
STYLES.put("T9", new Style(Shape.RECT, Style.parseColor("#453fa0"), Style.WHITE));
|
|
STYLES.put("T10", new Style(Shape.RECT, Style.parseColor("#ee1998"), Style.WHITE));
|
|
STYLES.put("T11", new Style(Shape.RECT, Style.parseColor("#19ae48"), Style.WHITE));
|
|
STYLES.put("T12", new Style(Shape.RECT, Style.parseColor("#85d7e3"), Style.BLACK));
|
|
STYLES.put("T13", new Style(Shape.RECT, Style.parseColor("#fdd205"), Style.BLACK));
|
|
STYLES.put("T14", new Style(Shape.RECT, Style.parseColor("#2cbbf2"), Style.WHITE));
|
|
STYLES.put("T15", new Style(Shape.RECT, Style.parseColor("#ed1c24"), Style.WHITE));
|
|
STYLES.put("T17", new Style(Shape.RECT, Style.parseColor("#9e1a6e"), Style.WHITE));
|
|
|
|
// Bus/Trolley
|
|
STYLES.put("B31", new Style(Shape.RECT, Style.parseColor("#999bd3"), Style.WHITE));
|
|
STYLES.put("B32", new Style(Shape.RECT, Style.parseColor("#d8a1d6"), Style.BLACK));
|
|
STYLES.put("B33", new Style(Shape.RECT, Style.parseColor("#e4e793"), Style.BLACK));
|
|
}
|
|
}
|