Traccar Notifier is a node app/docker container to enable push notifications from Traccar to multple platforms.
Currently supported platforms:
To use Traccar Notifier, include the following two lines in your traccar.xml
file after using the directions from https://hub.docker.com/r/traccar/traccar:
<entry key="event.forward.enable">true</entry>
<entry key='event.forward.url'>http://traccar-notifier:3080/api/v1</entry>
Next, copy the config.yml
file out of the container:
mkdir -p ./traccar-notifier
docker run \
--rm \
--entrypoint cat \
nowsci/traccar-notifier:latest \
/app/config.yml > ./traccar-notifier/config.yml
You will now have a config file like the following, edit the file to your liking, for instance:
notifiers:
pushover:
enabled: true
send_lowest_priority_on_disabled: false
user: fdfa903af04gjdfkadsf93fafjfie9
token: kafaaf9390efaffslepea09dsf9fkf
telegram:
enabled: true
chat_id: 999999999
token: 999999999:Afifefaadoieoaaa_aefFEFFDfjadfkaeee
ignore:
token:
You can enable more than one notifier, and all that are enabled will fire.
You could also have it ignore any notifications that have a specific string in the title, such as:
ignore:
- Device Online
- Device Unknown
You can also enable a token required on the query string for accessing the system, then access the system via http://traccar-notifier:3080/api/v1?token=THISISMYTOKEN
token: THISISMYTOKEN
Lastly, use the following docker-compose.yml
file for launching:
version: '2'
services:
traccar:
image: traccar/traccar
container_name: traccar
hostname: traccar
ports:
- 80:8082
- 5000-5150:5000-5150
- 5000-5150:5000-5150/udp
volumes:
- /etc/localtime:/etc/localtime:ro
- ./traccar/data/logs:/opt/traccar/logs
- ./traccar/data/database:/opt/traccar/data
- ./traccar/config/traccar.xml:/opt/traccar/conf/traccar.xml:ro
restart: always
traccar-notifier:
image: nowsci/traccar-notifier
container_name: traccar-notifier
volumes:
- ./traccar-notifier/config.yml:/app/config.yml:ro
restart: always
After the system is deployed, you can enable/disable notifiers from http://traccar-notifier:3080/
via a web browser. This does not change the configuration on disk, just what is in memory.
It is highly recommended to proxy behind SSL with nginx
or traefik
.
If you wish to use Traccar Notifier outside of docker, then go into the src
folder, update the config.yml
then run:
npm install
npm start
Adding notifiers is accomplished by:
js
file into the src/notifiers
folder. The pushover.js
file can be used as an example.config.yml
file, with enabled: false
and blank values.PRs are welcome!
/newbot
config.yml
/my_id
config.yml