2019-02-16 16:28:01 +00:00
|
|
|
travelynx - Railway Travel Logger
|
|
|
|
---
|
|
|
|
|
|
|
|
[travelynx](https://finalrewind.org/projects/travelynx/) allows checking into
|
|
|
|
and out of individual trains, thus providing a log of your railway journeys
|
2024-01-16 21:06:01 +00:00
|
|
|
annotated with real-time delays and service messages. It supports german
|
|
|
|
railways and trains exposed by the Deutsche Bahn [IRIS
|
|
|
|
Interface](https://finalrewind.org/projects/Travel-Status-DE-IRIS/) as well as
|
|
|
|
local transit and some trains outside of germany exposed by the Deutsche Bahn
|
|
|
|
[HAFAS Interface](https://finalrewind.org/projects/Travel-Status-DE-DeutscheBahn/).
|
2019-02-16 16:28:01 +00:00
|
|
|
|
2022-02-19 15:32:34 +00:00
|
|
|
You can use the public instance on [travelynx.de](https://travelynx.de) or
|
2024-01-16 21:06:01 +00:00
|
|
|
host your own. See the Installation and Setup notes below.
|
2022-02-19 15:32:34 +00:00
|
|
|
|
2019-02-16 16:28:01 +00:00
|
|
|
Dependencies
|
|
|
|
---
|
|
|
|
|
2024-01-16 21:06:01 +00:00
|
|
|
* perl ≥ 5.20
|
2022-09-17 09:31:27 +00:00
|
|
|
* carton
|
2019-12-14 13:11:03 +00:00
|
|
|
* build-essential
|
|
|
|
* libpq-dev
|
|
|
|
* git
|
|
|
|
|
2022-02-19 15:32:34 +00:00
|
|
|
Installation
|
2019-12-14 13:11:03 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
travelynx depends on a set of Perl modules which are documented in `cpanfile`.
|
2022-09-17 09:31:27 +00:00
|
|
|
After installing the dependencies mentioned above, you can use carton to
|
|
|
|
install Perl depenencies locally. You may alsobe able to use cpanminus;
|
|
|
|
however this method is untested.
|
2019-12-14 13:11:03 +00:00
|
|
|
|
2022-09-17 09:31:27 +00:00
|
|
|
In the project root directory (where `cpanfile` resides), run
|
2019-05-11 10:01:54 +00:00
|
|
|
|
|
|
|
```
|
2022-12-07 18:42:48 +00:00
|
|
|
carton install --deployment
|
2019-05-11 10:01:54 +00:00
|
|
|
```
|
|
|
|
|
2019-12-14 13:11:03 +00:00
|
|
|
and set `PERL5LIB=.../local/lib/perl5` before executing any travelynx
|
|
|
|
commands (see configs in the examples directory) or wrap them with `carton
|
|
|
|
exec`, e.g. `carton exec hypnotoad index.pl`
|
2019-02-16 16:28:01 +00:00
|
|
|
|
|
|
|
Setup
|
|
|
|
---
|
|
|
|
|
2019-04-06 19:09:23 +00:00
|
|
|
First, you need to set up a PostgreSQL database so that travelynx can store
|
2019-12-14 13:11:03 +00:00
|
|
|
user accounts and journeys. It must be at least version 9.4 and must use a
|
2021-01-17 17:24:11 +00:00
|
|
|
UTF-8 locale. The following steps describe setup on a Debian 9 system;
|
|
|
|
setup on other distributions should be similar.
|
2019-04-06 19:09:23 +00:00
|
|
|
|
|
|
|
* Write down a strong random password
|
|
|
|
* Create a postgres user for travelynx: `sudo -u postgres createuser -P travelynx`
|
|
|
|
(enter password when prompted)
|
|
|
|
* Create the database: `sudo -u postgres createdb -O travelynx travelynx`
|
2019-04-13 10:17:19 +00:00
|
|
|
* Copy `examples/travelynx.conf` to the application root directory
|
2021-01-17 17:24:11 +00:00
|
|
|
(the one in which `index.pl` resides) and edit it. Make sure to configure
|
|
|
|
db, cache, mail, and secrets.
|
2019-12-14 13:11:03 +00:00
|
|
|
* Initialize the database: `carton exec perl index.pl database migrate`
|
2021-01-17 17:24:11 +00:00
|
|
|
or `PERL5LIB=local/lib/perl5 perl index.pl database migrate`
|
2019-04-06 19:09:23 +00:00
|
|
|
|
|
|
|
Your server also needs to be able to send mail. Set up your MTA of choice and
|
|
|
|
make sure that the sendmail binary can be used for outgoing mails. Mail
|
|
|
|
reception on the server is not required.
|
|
|
|
|
|
|
|
Finally, configure the web service:
|
|
|
|
|
|
|
|
* Set up a travelynx service using the service supervisor of your choice
|
|
|
|
(see `examples/travelynx.service` for a systemd unit file)
|
|
|
|
* Configure your web server to reverse-provy requests to the travelynx
|
|
|
|
instance. See `examples/nginx-site` for an nginx config.
|
2019-12-14 13:11:03 +00:00
|
|
|
* Install a `timeout 5m perl index.pl work -m production` cronjob. It is used
|
|
|
|
to update realtime data and perform automatic checkout and should run
|
|
|
|
every three minutes or so, see `examples/cron`.
|
2019-04-06 19:09:23 +00:00
|
|
|
|
|
|
|
You can now start the travelynx service, navigate to the website and register
|
2019-12-14 13:11:03 +00:00
|
|
|
your first account. There is no admin account, all management is performed
|
|
|
|
via cron or (in non-standard cases) on the command line.
|
2019-04-06 19:09:23 +00:00
|
|
|
|
|
|
|
Please open an issue on <https://github.com/derf/travelynx/issues> or send a
|
|
|
|
mail to derf+travelynx@finalrewind.org if there is anything missing or
|
|
|
|
ambiguous in this setup manual.
|
2019-02-16 16:28:01 +00:00
|
|
|
|
2019-04-07 12:18:56 +00:00
|
|
|
Updating
|
|
|
|
---
|
|
|
|
|
|
|
|
It is recommended to run travelynx directly from the git repository. When
|
2021-01-17 17:24:11 +00:00
|
|
|
updating, the workflow depends on whether schema updates need to be applied
|
2019-04-07 12:18:56 +00:00
|
|
|
or not.
|
|
|
|
|
|
|
|
```
|
|
|
|
git pull
|
2022-12-07 18:42:48 +00:00
|
|
|
carton install --deployment # if you are using carton: update dependencies
|
2019-04-07 12:18:56 +00:00
|
|
|
chmod -R a+rX . # only needed if travelynx is running under a different user
|
2019-04-13 15:17:44 +00:00
|
|
|
if perl index.pl database has-current-schema; then
|
2019-04-07 12:18:56 +00:00
|
|
|
systemctl reload travelynx
|
|
|
|
else
|
|
|
|
systemctl stop travelynx
|
2019-04-07 16:19:25 +00:00
|
|
|
perl index.pl database migrate
|
2019-04-07 12:18:56 +00:00
|
|
|
systemctl start travelynx
|
|
|
|
fi
|
|
|
|
```
|
|
|
|
|
|
|
|
Note that this is subject to change -- the application may perform schema
|
2021-01-17 17:24:11 +00:00
|
|
|
updates automatically in the future. If you used carton for installation,
|
2022-09-17 09:31:27 +00:00
|
|
|
use `carton exec perl ...` in the snippet above; otherwise, export
|
2021-01-17 17:24:11 +00:00
|
|
|
`PERL5LIB=.../local/lib/perl5`.
|
2019-04-07 12:18:56 +00:00
|
|
|
|
2022-02-19 15:32:34 +00:00
|
|
|
Setup with Docker
|
|
|
|
---
|
|
|
|
|
|
|
|
Note that travelynx Docker support is experimental and, in its current form,
|
|
|
|
far from best practices. Pull requests are appreciated.
|
|
|
|
|
|
|
|
First, you need to set up a PostgreSQL database so that travelynx can store
|
|
|
|
user accounts and journeys. It must be at least version 9.4 and must use a
|
|
|
|
UTF-8 locale. See above (or `examples/docker/postgres-init.sh`) for database
|
|
|
|
initialization. You do not need to perform the `database migrate` step.
|
|
|
|
|
|
|
|
Next, you need to prepare three files that will be mounted into the travelynx
|
|
|
|
container: travelynx configuration, e-mail configuration, and imprint and
|
|
|
|
privacy policy. For the sake of this readme, we assume that you are using the
|
|
|
|
`local/` directory to store these
|
|
|
|
|
|
|
|
* `mkdir local`
|
|
|
|
* copy examples/travelynx.conf to local/travelynx.conf and configure it.
|
|
|
|
* copy examples/docker/email-transport.sh to local/email-transport.sh and configure it.
|
|
|
|
The travelynx container does not contain a mail server, so it needs a
|
|
|
|
separate SMTP server to send mail. It does not receive mail.
|
|
|
|
* create local/imprint.html.ep and enter imprint as well as privacy policy data.
|
|
|
|
* Configure your web server to reverse-provy requests to the travelynx
|
|
|
|
instance. See `examples/nginx-site` for an nginx config.
|
|
|
|
|
|
|
|
travelynx consists of two runtimes: the web application and a background
|
|
|
|
worker. Your service supervisor (or docker compose / docker stack / kubernetes
|
|
|
|
setup) should orchestrate them somewhere along these lines.
|
|
|
|
|
|
|
|
* `docker pull derfnull/travelynx:latest`
|
|
|
|
* Start web application: `docker run -p 8093:8093 -v ${PWD}/local:/local:ro travelynx:latest`
|
|
|
|
* Wait until localhost:8093 responds to requests
|
|
|
|
* Start worker: `docker run -v ${PWD}/local:/local:ro travelynx:latest worker`
|
|
|
|
|
|
|
|
To install an update: stop worker and web application, update the travelynx
|
|
|
|
image, and start them again. Database migrations will be performed
|
|
|
|
automatically. Note that downgrades are not supported.
|
|
|
|
|
2019-02-16 16:28:01 +00:00
|
|
|
Usage
|
|
|
|
---
|
|
|
|
|
|
|
|
For the sake of this manual, we will assume your travelynx instance is running
|
|
|
|
on `travelynx.de`
|
|
|
|
|
|
|
|
travelynx journey logging is based on checkin and checkout actions: You check
|
2019-05-02 09:18:43 +00:00
|
|
|
into a train when boarding it, select a destination, and are automatically
|
|
|
|
checked out when you arrive. Real-time data is saved on both occasions and
|
|
|
|
continuously updated while in transit, providing an accurate overview of both
|
2019-02-16 16:28:01 +00:00
|
|
|
scheduled and actual journey times.
|
|
|
|
|
|
|
|
## Checking in
|
|
|
|
|
2019-05-02 09:18:43 +00:00
|
|
|
You can check into a train up to 30 minutes before its scheduled departure and
|
|
|
|
up to two hours after its actual departure (including delays).
|
2019-02-16 16:28:01 +00:00
|
|
|
|
|
|
|
First, you need to select the station you want to check in from.
|
2019-03-31 12:09:14 +00:00
|
|
|
Navigate to `travelynx.de` or click/tap on the travelynx text in the navigation
|
2019-02-16 16:28:01 +00:00
|
|
|
bar. You will see a list of the five stations closest to your current location
|
2019-03-31 12:09:14 +00:00
|
|
|
(as reported by your browser). Select the station you're at or enter its
|
|
|
|
name or DS100 code manually.
|
2019-02-16 16:28:01 +00:00
|
|
|
|
2019-05-02 09:18:43 +00:00
|
|
|
As soon as you select a train, you will be checked in and travelynx will switch
|
2021-01-17 17:24:11 +00:00
|
|
|
to the journey / checkout view. If you already know where you're headed, you
|
2019-05-02 09:18:43 +00:00
|
|
|
should click/tap on the destination station in the station list now. You can
|
2021-01-17 17:24:11 +00:00
|
|
|
change the destination by selecting a new one anytime.
|
2019-02-16 16:28:01 +00:00
|
|
|
|
|
|
|
## Checking out
|
|
|
|
|
2019-05-02 09:18:43 +00:00
|
|
|
You are automatically checked out a few minutes after arrival at your
|
|
|
|
destination. If the train has already arrived when you select a destination and
|
|
|
|
its arrival was less than two hours ago, you are checked out immediately. If
|
2021-01-17 17:24:11 +00:00
|
|
|
it's more than two hours, you need to perform a manual checkout (without
|
|
|
|
arrival data) using the link at the bottom of the checkin menu's station list.
|
2019-04-18 16:22:17 +00:00
|
|
|
|
|
|
|
Testing
|
|
|
|
---
|
|
|
|
|
|
|
|
The test scripts assume that travelynx.conf contains a valid database
|
2019-04-18 19:03:27 +00:00
|
|
|
connection. They will create a test-specific schema, perform all operations in
|
|
|
|
it, and then drop the schema. As such, the database specified in the config is
|
|
|
|
not affected.
|
2019-04-18 16:22:17 +00:00
|
|
|
|
2019-04-18 19:03:27 +00:00
|
|
|
Nevertheless, bugs may happen. Do NOT run tests on your production database.
|
|
|
|
Please use a separate development database instead.
|
2019-04-18 16:22:17 +00:00
|
|
|
|
2019-05-02 09:18:43 +00:00
|
|
|
Run the tests by executing `prove`. Use `prove -v` for debug output and
|
|
|
|
`DBI_TRACE=SQL prove -v` to monitor SQL queries.
|
2021-01-29 17:32:13 +00:00
|
|
|
|
|
|
|
Licensing
|
|
|
|
---
|
|
|
|
|
|
|
|
The copyright of individual files is documented in the file's header or in
|
|
|
|
.reuse/dep5. The referenced licenses are stored in the LICENSES directory.
|
|
|
|
|
|
|
|
The program code of travelynx is licensed under the terms of the GNU AGPL v3.
|
|
|
|
HTML Templates and SASS/CSS layout are licensed under the terms of the MIT
|
|
|
|
License. This means that you are free to host your own travelynx instance,
|
|
|
|
both for personal/internal and public use, under the following conditions.
|
|
|
|
|
|
|
|
* You are free to change HTML/SASS/CSS templates as you see fit (though you
|
|
|
|
must not remove the copyright headers).
|
|
|
|
* If you make changes to the program code, that is, a file below lib/ or a
|
|
|
|
travelynx javascript file below public/static/js/, you must make those
|
|
|
|
changes available to the public.
|
|
|
|
|
|
|
|
The easiest way of making changes available is by maintaining a public fork of
|
2021-02-02 17:43:48 +00:00
|
|
|
the Git repository. A tarball is also acceptable. Please change the `source`
|
|
|
|
ref in travelynx.conf if you are using a fork with custom changes.
|
2024-01-16 21:06:01 +00:00
|
|
|
|
|
|
|
References
|
|
|
|
---
|
|
|
|
|
|
|
|
Mirrors of the travelynx repository are maintained at the following locations:
|
|
|
|
|
|
|
|
* [Chaosdorf](https://chaosdorf.de/git/derf/travelynx)
|
|
|
|
* [git.finalrewind.org](https://git.finalrewind.org/travelynx/)
|
|
|
|
* [GitHub](https://github.com/derf/travelynx)
|