mirror of
https://github.com/craigerl/aprsd.git
synced 2024-11-04 16:01:15 -05:00
Hemna
2873e35f14
This patch fixes the Usage string for a call message that isn't matched by any plugin. Plugin object now must impleent a 'command_name' attribute that is the usage string for that plugin.
20 lines
412 B
Python
20 lines
412 B
Python
import logging
|
|
|
|
from aprsd import plugin
|
|
|
|
LOG = logging.getLogger("APRSD")
|
|
|
|
|
|
class HelloPlugin(plugin.APRSDPluginBase):
|
|
"""Hello World."""
|
|
|
|
version = "1.0"
|
|
# matches any string starting with h or H
|
|
command_regex = "^[hH]"
|
|
command_name = "hello"
|
|
|
|
def command(self, fromcall, message, ack):
|
|
LOG.info("HelloPlugin")
|
|
reply = "Hello '{}'".format(fromcall)
|
|
return reply
|