aboutsummaryrefslogtreecommitdiffstats
path: root/http/types.go
blob: de6d652fa85cbec79992688393c0a3857a9c3b06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package http

import (
	"github.com/mpolden/atb/entur"
)

// BusStops represents a list of bus stops.
type BusStops struct {
	Stops   []BusStop `json:"stops"`
	nodeIDs map[int]*BusStop
}

// BusStop represents a single bus stop.
type BusStop struct {
	URL         string  `json:"url"`
	StopID      int     `json:"stopId"`
	NodeID      int     `json:"nodeId"`
	Description string  `json:"description"`
	Longitude   float64 `json:"longitude"`
	Latitude    float64 `json:"latitude"`
	MobileCode  string  `json:"mobileCode"`
	MobileName  string  `json:"mobileName"`
}

// Departures represents a list of departures, from a given bus stop.
type Departures struct {
	URL            string      `json:"url"`
	TowardsCentrum *bool       `json:"isGoingTowardsCentrum,omitempty"`
	Departures     []Departure `json:"departures"`
}

// Departure represents a single departure in a given direction.
type Departure struct {
	LineID                  string `json:"line"`
	RegisteredDepartureTime string `json:"registeredDepartureTime,omitempty"`
	ScheduledDepartureTime  string `json:"scheduledDepartureTime"`
	Destination             string `json:"destination"`
	IsRealtimeData          bool   `json:"isRealtimeData"`
	TowardsCentrum          *bool  `json:"isGoingTowardsCentrum,omitempty"`
}

// Error represents an error in the API, which is returned to the user.
type Error struct {
	err     error
	Status  int    `json:"status"`
	Message string `json:"message"`
}

func convertDepartures(enturDepartures []entur.Departure) Departures {
	departures := make([]Departure, 0, len(enturDepartures))
	const timeLayout = "2006-01-02T15:04:05.000"
	for _, d := range enturDepartures {
		scheduledDepartureTime := d.ScheduledDepartureTime.Format(timeLayout)
		registeredDepartureTime := ""
		if !d.RegisteredDepartureTime.IsZero() {
			registeredDepartureTime = d.RegisteredDepartureTime.Format(timeLayout)
		}
		towardsCentrum := d.Inbound
		departure := Departure{
			LineID:                  d.Line,
			ScheduledDepartureTime:  scheduledDepartureTime,
			RegisteredDepartureTime: registeredDepartureTime,
			Destination:             d.Destination,
			IsRealtimeData:          d.IsRealtime,
			TowardsCentrum:          &towardsCentrum,
		}
		departures = append(departures, departure)
	}
	return Departures{
		Departures: departures,
	}
}