| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
| |
conftrack is a configuration library that I wrote to replace conferer,
as dealing with its idiosyncrasies became increasingly annoying.
It is currently very much still alpha-state software, but far enough
along to be tested in my own projects, and hopefully will soon be in a
state that is publishable on hackage.
For now, it can be found at
https://stuebinm.eu/git/conftrack
|
|
|
|
|
| |
Google really is picky about these … and does not even seem willing to
tell which thresholds it uses …
|
|
|
|
|
|
|
|
|
| |
my annoyance with conferer increases. It should really, /really/ be a
compile error if a thing used in the config does not have a FromConfig
instance. Or at least the documentation should mention that in such
cases it will simply always take the default value without telling
anyone, instead of just saying "the generic instance has reasonable
defaults" (well, /which/ defaults?)
|
|
|
|
|
|
|
|
|
| |
this is still far from being supported by most libraries, but does make
it possible to remove some uses of String (though most times, there is a
conversion back to String later).
Note that using the default.nix now only works on nixpkgs-unstable for a
bit; using the newer filepath package on stable leads to broken other packages.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
It turns out persist does support these, they're just not mentioned in
the yesod book.
(for future reference, the syntax is defined in Database.Persist.Quasi,
which does include some documentation [1])
[1] https://hackage.haskell.org/package/persistent-2.14.6.1/docs/Database-Persist-Quasi.html
|
|
|
|
|
|
|
|
| |
A simple way to have "announcements" available via API, and otherwise
distinct from the service announcements which show up in Gtfs Realtime.
These are meant to go e.g. be embedded on the operator's website, or in
other places where it's not as easy to display per-trip specific messages.
|
|
|
|
|
| |
not sure if i'll keep it here — it should probably gain some logic for
real-time udpates and be moved to the map view instead.
|
|
|
|
| |
in preparation for using these elsewhere, where they are less cramped
|
|
|
|
| |
(same as previous commit, this displayed the wrong ping)
|
|
|
|
|
|
|
| |
this is really two changes:
- some leftover lat,long keys in the clientside javascript
- the Server.Subscribe module should send a correct ping after a
connection has been opened
|
|
|
|
|
|
|
|
|
| |
can't believe it was this simple … but seems to be all that was wrong.
Tracktrain should now automatically remove tripUpdates for tickets whose
trip has ended more than five minutes ago (taking delay into account).
Nothing in the gtfs-rt spec says you should do this, but google likes to
complain if one doesn't do this.
|
|
|
|
|
| |
also make the code generally look nicer. Turns out I made a lot more
fragile assumptions than I thought I did.
|
|
|
|
|
|
|
|
| |
now takes all potential stops along each trip into account when guessing
tickets; also checks if a ticket is still likely in case the tracker
switched its direction. This should solve many cases where a tracker is
accidentally turned off or falls asleep halfway before the last station
of one trip, then wakes up in the middle of the next.
|
|
|
|
|
| |
this is meant to be false by default, and otherwise relaxes requirements
on e.g. incoming pings, which are inconvenient when testing by hand.
|
| |
|
|
|
|
|
|
| |
this does svg templating with hamlet. It might be better to use a
javascript library instead (templating svgs is a little confusing tbh),
but for now i'll see how far i get with this.
|
| |
|
| |
|
|
|
|
| |
apparently i forgot an if here?
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This should hopefully be the final (major) part of the restructuring: a
tracker no longer has to know which trip it is on (and indeed it has no
idea for now), instead the server keeps state about which trips are
currently running and will insert incoming pings in a hopefully
reasonable manner, based on their geoposition & time.
There's lots of associated TODO items here (especially there should be
manual overrides for all this logic in the web ui), but that's work for
a future me.
(incidentally, this also adds support for sending all log messages out
via ntfy-sh)
|
| |
|
|
|
|
| |
now mostly independent of the gtfs, but still no live-reloading of it.
|
|
|
|
|
|
| |
this is mostly meant to guard against the gtfs changing under
tracktrain, and not yet complete (e.g. a ticket does not yet save its
expected stops, which it probably should).
|
|
|
|
|
| |
jumps to GHC2021 as default language, adds in some fields, moves the old
org mode glossary to markdown, etc.
|
|
|
|
|
|
| |
I do not really like either option, but at least the second one seems
more likely to be maintained (and a little less clunky to use, too, for
what it's worth).
|
| |
|
| |
|
|
|
|
| |
google maps complains about it otherwise
|
| |
|
|
|
|
|
|
| |
these are just enough to send train positions to tracktrain with the
current API, but are somewhat brittle (e.g. will fail if not restarted
between trips, etc.)
|
| |
|
| |
|
|
|
|
| |
this makes the nix builds /much/ nicer
|
|
|
|
|
|
| |
this is unfortunately uffd-specific, since oauth2 is apparently sort of
a vague standard. But since it doesn't actually do much it should
probably be possible to make it fully configurable & generic if needed.
|
|
|
|
|
| |
(what was that about doing the realtime stuff somewhere else and /not/
in this monolithic server thingie? oh well …)
|
| |
|
|
|
|
| |
(for a leaflet map view or sth which isn't implemented yet)
|
|
|
|
| |
(hardcoded for now, since we don't have new trips)
|
|
|
|
| |
(but maybe google will like it)
|
| |
|
|
|
|
| |
(this is a hack to make the gtfs rt valid)
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
since the ids really should be internal to the gtfs, and not needed in
"normal" contexts.
|
|
|
|
|
|
| |
not only is this a surprisingly stupid bug, i distinctly remember
writing these few lines sometime ago … but they're not in the commit
history, so i guess they got lost somehow??
|
| |
|
| |
|