KM6LYW and WB4BOR
|pypi| |pytest| |versions| |slack| |issues| |commit| |imports| |down|
APRSD <http://github.com/craigerl/aprsd>
is a Ham radio APRS <http://aprs.org>
message command gateway built on python.
What is APRSD <#what-is-aprsd>
_APRSD Overview Diagram <#aprsd-overview-diagram>
_Typical Use Case <#typical-use-case>
_Installation <#installation>
_Example Usage <#example-usage>
_Help <#help>
_Commands <#commands>
_
Configuration <#configuration>
_Server <#server>
_Current List of Built-in Plugins <#current-list-of-built-in-plugins>
_Pypi.org APRSD Installable Plugin Packages <#pypiorg-aprsd-installable-plugin-packages>
_π APRSD Installed 3rd Party Plugins <#aprsd-installed-3rd-party-plugins>
_Send Message <#send-message>
_Send Email (Radio to SMTP Server) <#send-email-radio-to-smtp-server>
_Receive Email (IMAP Server to Radio) <#receive-email-imap-server-to-radio>
_Location <#location>
_Web Admin Interface <#web-admin-interface>
_Development <#development>
_
Building Your Own APRSD Plugins <#building-your-own-aprsd-plugins>
_Workflow <#workflow>
_Release <#release>
_Docker Container <#docker-container>
_
Building <#building-1>
_Official Build <#official-build>
_Development Build <#development-build>
_Running the Container <#running-the-container>
_APRSD is a python application for interacting with the APRS network and providing APRS services for HAM radio operators.
APRSD currently has 4 main commands to use.
Each of those commands can connect to the APRS-IS network if internet connectivity is available. If internet is not available, then APRS can be configured to talk to a TCP KISS TNC for radio connectivity.
Please read the docs
_ to learn more!
APRSD's typical use case is that of providing an APRS wide service to all HAM radio operators. For example the callsign 'REPEAT' on the APRS network is actually an instance of APRSD that can provide a list of HAM repeaters in the area of the callsign that sent the message.
Ham radio operator using an APRS enabled HAM radio sends a message to check the weather. An APRS message is sent, and then picked up by APRSD. The APRS packet is decoded, and the message is sent through the list of plugins for processing. For example, the WeatherPlugin picks up the message, fetches the weather for the area around the user who sent the request, and then responds with the weather conditions in that area. Also includes a watch list of HAM callsigns to look out for. The watch list can notify you when a HAM callsign in the list is seen and now available to message on the APRS network.
To install aprsd
, use Pip:
pip install aprsd
aprsd -h
::
ββ> aprsd -h
Usage: aprsd [OPTIONS] COMMAND [ARGS]...
Options:
--version Show the version and exit.
-h, --help Show this message and exit.
Commands:
check-version Check this version against the latest in pypi.org.
completion Show the shell completion code
dev Development type subcommands
fetch-stats Fetch stats from a APRSD admin web interface.
healthcheck Check the health of the running aprsd server.
list-extensions List the built in plugins available to APRSD.
list-plugins List the built in plugins available to APRSD.
listen Listen to packets on the APRS-IS Network based on FILTER.
sample-config Generate a sample Config file from aprsd and all...
send-message Send a message to a callsign via APRS_IS.
server Start the aprsd server gateway process.
version Show the APRSD version.
webchat Web based HAM Radio chat program!
This command outputs a sample config yml formatted block that you can edit
and use to pass in to aprsd
with -c
. By default aprsd looks in ~/.config/aprsd/aprsd.yml
aprsd sample-config
::
ββ> aprsd sample-config
...
This is the main server command that will listen to APRS-IS servers and look for incomming commands to the callsign configured in the config file
::
ββ[$] > aprsd server --help
Usage: aprsd server [OPTIONS]
Start the aprsd server gateway process.
Options:
--loglevel [CRITICAL|ERROR|WARNING|INFO|DEBUG]
The log level to use for aprsd.log
[default: INFO]
-c, --config TEXT The aprsd config file to use for options.
[default:
/Users/i530566/.config/aprsd/aprsd.yml]
--quiet Don't log to stdout
-f, --flush Flush out all old aged messages on disk.
[default: False]
-h, --help Show this message and exit.
ββ> aprsd server
Load config
12/07/2021 03:16:17 PM MainThread INFO APRSD is up to date server.py:51
12/07/2021 03:16:17 PM MainThread INFO APRSD Started version: 2.5.6 server.py:52
12/07/2021 03:16:17 PM MainThread INFO Using CONFIG values: server.py:55
12/07/2021 03:16:17 PM MainThread INFO ham.callsign = WB4BOR server.py:60
12/07/2021 03:16:17 PM MainThread INFO aprs.login = WB4BOR-12 server.py:60
12/07/2021 03:16:17 PM MainThread INFO aprs.password = XXXXXXXXXXXXXXXXXXX server.py:58
12/07/2021 03:16:17 PM MainThread INFO aprs.host = noam.aprs2.net server.py:60
12/07/2021 03:16:17 PM MainThread INFO aprs.port = 14580 server.py:60
12/07/2021 03:16:17 PM MainThread INFO aprs.logfile = /tmp/aprsd.log server.py:60
::
ββ> aprsd list-plugins
π APRSD Built-in Plugins π
βββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ³βββββββββββββββ³ββββββββββββββββββββββββββββββββββββββββββ
β Plugin Name β Info β Type β Plugin Path β
β‘ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β AVWXWeatherPlugin β AVWX weather of GPS Beacon location β RegexCommand β aprsd.plugins.weather.AVWXWeatherPlugin β
β EmailPlugin β Send and Receive email β RegexCommand β aprsd.plugins.email.EmailPlugin β
β FortunePlugin β Give me a fortune β RegexCommand β aprsd.plugins.fortune.FortunePlugin β
β LocationPlugin β Where in the world is a CALLSIGN's last GPS beacon? β RegexCommand β aprsd.plugins.location.LocationPlugin β
β NotifySeenPlugin β Notify me when a CALLSIGN is recently seen on APRS-IS β WatchList β aprsd.plugins.notify.NotifySeenPlugin β
β OWMWeatherPlugin β OpenWeatherMap weather of GPS Beacon location β RegexCommand β aprsd.plugins.weather.OWMWeatherPlugin β
β PingPlugin β reply with a Pong! β RegexCommand β aprsd.plugins.ping.PingPlugin β
β QueryPlugin β APRSD Owner command to query messages in the MsgTrack β RegexCommand β aprsd.plugins.query.QueryPlugin β
β TimeOWMPlugin β Current time of GPS beacon's timezone. Uses OpenWeatherMap β RegexCommand β aprsd.plugins.time.TimeOWMPlugin β
β TimePlugin β What is the current local time. β RegexCommand β aprsd.plugins.time.TimePlugin β
β USMetarPlugin β USA only METAR of GPS Beacon location β RegexCommand β aprsd.plugins.weather.USMetarPlugin β
β USWeatherPlugin β Provide USA only weather of GPS Beacon location β RegexCommand β aprsd.plugins.weather.USWeatherPlugin β
β VersionPlugin β What is the APRSD Version β RegexCommand β aprsd.plugins.version.VersionPlugin β
βββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ΄βββββββββββββββ΄ββββββββββββββββββββββββββββββββββββββββββ
Pypi.org APRSD Installable Plugin Packages
Install any of the following plugins with 'pip install <Plugin Package Name>'
ββββββββββββββββββββββββββββββββ³βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ³ββββββββββ³βββββββββββββββ³βββββββββββββ
β Plugin Package Name β Description β Version β Released β Installed? β
β‘ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β π aprsd-stock-plugin β Ham Radio APRSD Plugin for fetching stock quotes β 0.1.3 β Dec 2, 2022 β No β
β π aprsd-sentry-plugin β Ham radio APRSD plugin that does.... β 0.1.2 β Dec 2, 2022 β No β
β π aprsd-timeopencage-plugin β APRSD plugin for fetching time based on GPS location β 0.1.0 β Dec 2, 2022 β No β
β π aprsd-weewx-plugin β HAM Radio APRSD that reports weather from a weewx weather station. β 0.1.4 β Dec 7, 2021 β Yes β
β π aprsd-repeat-plugins β APRSD Plugins for the REPEAT service β 1.0.12 β Dec 2, 2022 β No β
β π aprsd-telegram-plugin β Ham Radio APRS APRSD plugin for Telegram IM service β 0.1.3 β Dec 2, 2022 β No β
β π aprsd-twitter-plugin β Python APRSD plugin to send tweets β 0.3.0 β Dec 7, 2021 β No β
β π aprsd-slack-plugin β Amateur radio APRS daemon which listens for messages and responds β 1.0.5 β Dec 18, 2022 β No β
ββββββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ΄ββββββββββ΄βββββββββββββββ΄βββββββββββββ
π APRSD Installed 3rd party Plugins π
ββββββββββββββββββββββ³ββββββββββββββββββ³ββββββββββ³βββββββββββββββ³βββββββββββββββββββββββββββββββββββββββββββ
β Package Name β Plugin Name β Version β Type β Plugin Path β
β‘βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ©
β aprsd-weewx-plugin β WeewxMQTTPlugin β 1.0 β RegexCommand β aprsd_weewx_plugin.weewx.WeewxMQTTPlugin β
ββββββββββββββββββββββ΄ββββββββββββββββββ΄ββββββββββ΄βββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββββββ
This command is typically used for development to send another aprsd instance test messages
::
ββ[$] > aprsd send-message -h
Usage: aprsd send-message [OPTIONS] TOCALLSIGN COMMAND...
Send a message to a callsign via APRS_IS.
Options:
--loglevel [CRITICAL|ERROR|WARNING|INFO|DEBUG]
The log level to use for aprsd.log
[default: INFO]
-c, --config TEXT The aprsd config file to use for options.
[default:
/Users/i530566/.config/aprsd/aprsd.yml]
--quiet Don't log to stdout
--aprs-login TEXT What callsign to send the message from.
[env var: APRS_LOGIN]
--aprs-password TEXT the APRS-IS password for APRS_LOGIN [env
var: APRS_PASSWORD]
-n, --no-ack Don't wait for an ack, just sent it to APRS-
IS and bail. [default: False]
-w, --wait-response Wait for a response to the message?
[default: False]
--raw TEXT Send a raw message. Implies --no-ack
-h, --help Show this message and exit.
::
Received message______________
Raw : KM6XXX>APY400,WIDE1-1,qAO,KM6XXX-1::KM6XXX-9 :-user@host.com test new shortcuts global, radio to pc{29
From : KM6XXX
Message : -user@host.com test new shortcuts global, radio to pc
Msg number : 29
Sending Email_________________
To : user@host.com
Subject : KM6XXX
Body : test new shortcuts global, radio to pc
Sending ack __________________ Tx(3)
Raw : KM6XXX-9>APRS::KM6XXX :ack29
To : KM6XXX
Ack number : 29
::
Sending message_______________ 6(Tx3)
Raw : KM6XXX-9>APRS::KM6XXX :-somebody@gmail.com email from internet to radio{6
To : KM6XXX
Message : -somebody@gmail.com email from internet to radio
Received message______________
Raw : KM6XXX>APY400,WIDE1-1,qAO,KM6XXX-1::KM6XXX-9 :ack6
From : KM6XXX
Message : ack6
Msg number : 0
::
Received Message _______________
Raw : KM6XXX-6>APRS,TCPIP*,qAC,T2CAEAST::KM6XXX-14:location{2
From : KM6XXX-6
Message : location
Msg number : 2
Received Message _______________ Complete
Sending Message _______________
Raw : KM6XXX-14>APRS::KM6XXX-6 :KM6XXX-6: 8 Miles E Auburn CA 0' 0,-120.93584 1873.7h ago{2
To : KM6XXX-6
Message : KM6XXX-6: 8 Miles E Auburn CA 0' 0,-120.93584 1873.7h ago
Msg number : 2
Sending Message _______________ Complete
Sending ack _______________
Raw : KM6XXX-14>APRS::KM6XXX-6 :ack2
To : KM6XXX-6
Ack : 2
Sending ack _______________ Complete
AND... ping, fortune, time.....
APRSD has a web admin interface that allows you to view the status of the running APRSD server instance. The web admin interface shows graphs of packet counts, packet types, number of threads running, the latest packets sent and received, and the status of each of the plugins that are loaded. You can also view the logfile and view the raw APRSD configuration file.
To start the web admin interface, You have to install gunicorn in your virtualenv that already has aprsd installed.
::
source <path to APRSD's virtualenv>/bin/activate aprsd admin --loglevel INFO
The web admin interface will be running on port 8080 on the local machine. http://localhost:8080
git clone git@github.com:craigerl/aprsd.git
cd aprsd
make
While working aprsd, The workflow is as follows:
Checkout a new branch to work on by running
git checkout -b mybranch
Make your changes to the code
Run Tox with the following options:
tox -epep8
tox -efmt
tox -p
Commit your changes. This will run the pre-commit hooks which does checks too
git commit
Once you are done with all of your commits, then push up the branch to github with:
git push -u origin mybranch
Create a pull request from your branch so github tests can run and we can do a code review.
To do release to pypi:
Tag release with:
git tag -v1.XX -m "New release"
Push release tag:
git push origin master --tags
Do a test build and verify build is valid by running:
make build
Once twine is happy, upload release to pypi:
make upload
APRSD plugins are the mechanism by which APRSD can respond to APRS Messages. The plugins are loaded at server startup and can also be loaded at listen startup. When a packet is received by APRSD, it is passed to each of the plugins in the order they were registered in the config file. The plugins can then decide what to do with the packet. When a plugin is called, it is passed a APRSD Packet object. The plugin can then do something with the packet and return a reply message if desired. If a plugin does not want to reply to the packet, it can just return None. When a plugin does return a reply message, APRSD will send the reply message to the appropriate destination.
For example, when a 'ping' message is received, the PingPlugin will return a reply message of 'pong'. When APRSD receives the 'pong' message, it will be sent back to the original caller of the ping message.
APRSD plugins are simply python packages that can be installed from pypi.org. They are installed into the aprsd virtualenv and can be imported by APRSD at runtime. The plugins are registered in the config file and loaded at startup of the aprsd server command or the aprsd listen command.
You can build your own plugins by following the instructions in the Building your own APRSD plugins
_ section.
Plugins are called by APRSD when packe
There are 2 versions of the container Dockerfile that can be used. The main Dockerfile, which is for building the official release container based off of the pip install version of aprsd and the Dockerfile-dev, which is used for building a container based off of a git branch of the repo.
docker build -t hemna6969/aprsd:latest .
docker build -t hemna6969/aprsd:latest -f Dockerfile-dev .
There is a docker-compose.yml
file in the docker/
directory
that can be used to run your container. To provide the container
an aprsd.conf
configuration file, change your
docker-compose.yml
as shown below:
::
volumes:
- $HOME/.config/aprsd:/config
To install plugins at container start time, pass in a list of
comma-separated list of plugins on PyPI using the APRSD_PLUGINS
environment variable in the docker-compose.yml
file. Note that
version constraints may also be provided. For example:
::
environment:
- APRSD_PLUGINS=aprsd-slack-plugin>=1.0.2,aprsd-twitter-plugin
.. badges
.. |pypi| image:: https://badge.fury.io/py/aprsd.svg :target: https://badge.fury.io/py/aprsd
.. |pytest| image:: https://github.com/craigerl/aprsd/workflows/python/badge.svg :target: https://github.com/craigerl/aprsd/actions
.. |versions| image:: https://img.shields.io/pypi/pyversions/aprsd.svg :target: https://pypi.org/pypi/aprsd
.. |slack| image:: https://img.shields.io/badge/slack-@hemna/aprsd-blue.svg?logo=slack :target: https://hemna.slack.com/app_redirect?channel=C01KQSCP5RP
.. |imports| image:: https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336 :target: https://timothycrosley.github.io/isort/
.. |issues| image:: https://img.shields.io/github/issues/craigerl/aprsd
.. |commit| image:: https://img.shields.io/github/last-commit/craigerl/aprsd
.. |down| image:: https://static.pepy.tech/personalized-badge/aprsd?period=month&units=international_system&left_color=black&right_color=orange&left_text=Downloads :target: https://pepy.tech/project/aprsd
.. links .. _read the docs: https://aprsd.readthedocs.io