mirror of
https://github.com/Crocmagnon/display-epaper.git
synced 2024-11-21 13:38:03 +01:00
117 lines
2.3 KiB
Go
117 lines
2.3 KiB
Go
package transports
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"github.com/carlmjohnson/requests"
|
|
"log/slog"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
type Stop struct {
|
|
ID int `json:"id"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
type Passage struct {
|
|
Ligne string `json:"ligne"`
|
|
Delays []string `json:"delais"`
|
|
Destination Stop `json:"destination"`
|
|
}
|
|
|
|
type Passages struct {
|
|
Passages []Passage `json:"passages"`
|
|
Stop Stop `json:"stop"`
|
|
}
|
|
|
|
type Config struct {
|
|
}
|
|
|
|
const cacheTimeout = 2 * time.Minute
|
|
|
|
type Client struct {
|
|
client *http.Client
|
|
config Config
|
|
|
|
passagesCache *Passages
|
|
passagesCacheTime time.Time
|
|
|
|
stationCache *Station
|
|
stationCacheTime time.Time
|
|
}
|
|
|
|
func New(httpClient *http.Client, config Config) *Client {
|
|
if httpClient == nil {
|
|
httpClient = &http.Client{}
|
|
}
|
|
return &Client{
|
|
client: httpClient,
|
|
config: config,
|
|
}
|
|
}
|
|
|
|
func (c *Client) GetTCLPassages(ctx context.Context, stop int) (res *Passages, err error) {
|
|
err = requests.URL("https://tcl.augendre.info").
|
|
Pathf("/tcl/stop/%v", stop).
|
|
Client(c.client).
|
|
ToJSON(&res).
|
|
Fetch(ctx)
|
|
if err != nil {
|
|
if res = c.getPassagesCache(); res != nil {
|
|
slog.WarnContext(ctx, "retrieving passages from cache")
|
|
return res, nil
|
|
}
|
|
|
|
return nil, fmt.Errorf("calling api: %w", err)
|
|
}
|
|
|
|
c.passagesCache = res
|
|
c.passagesCacheTime = time.Now()
|
|
|
|
return res, nil
|
|
}
|
|
|
|
func (c *Client) getPassagesCache() *Passages {
|
|
if c.passagesCache != nil && time.Since(c.passagesCacheTime) < cacheTimeout {
|
|
return c.passagesCache
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
type Station struct {
|
|
Name string `json:"name"`
|
|
BikesAvailable int `json:"bikes_available"`
|
|
DocksAvailable int `json:"docks_available"`
|
|
AvailabilityCode int `json:"availability_code"`
|
|
}
|
|
|
|
func (c *Client) GetVelovStation(ctx context.Context, station int) (res *Station, err error) {
|
|
err = requests.URL("https://tcl.augendre.info").
|
|
Pathf("/velov/station/%v", station).
|
|
Client(c.client).
|
|
ToJSON(&res).
|
|
Fetch(ctx)
|
|
if err != nil {
|
|
if res = c.getStationCache(); res != nil {
|
|
slog.WarnContext(ctx, "retrieving station from cache")
|
|
return res, nil
|
|
}
|
|
|
|
return nil, fmt.Errorf("calling api: %w", err)
|
|
}
|
|
|
|
c.stationCache = res
|
|
c.stationCacheTime = time.Now()
|
|
|
|
return res, nil
|
|
}
|
|
|
|
func (c *Client) getStationCache() *Station {
|
|
if c.stationCache != nil && time.Since(c.stationCacheTime) < cacheTimeout {
|
|
return c.stationCache
|
|
}
|
|
|
|
return nil
|
|
}
|