mirror of
https://github.com/craigerl/aprsd.git
synced 2024-11-16 05:12:01 -05:00
Hemna
3d0bb8ae8e
The regex search is now by default case insensitive. Also update each core plugin to better match the command. ping plugin can now match on p p foo ping pIng Weather plugins can now match on w wx wX Wx KM6LYW weather WeaTher
33 lines
849 B
Python
33 lines
849 B
Python
import logging
|
|
|
|
import aprsd
|
|
from aprsd import plugin, stats
|
|
|
|
|
|
LOG = logging.getLogger("APRSD")
|
|
|
|
|
|
class VersionPlugin(plugin.APRSDRegexCommandPluginBase):
|
|
"""Version of APRSD Plugin."""
|
|
|
|
command_regex = r"^([v]|[v]\s|version)"
|
|
command_name = "version"
|
|
short_description = "What is the APRSD Version"
|
|
|
|
# message_number:time combos so we don't resend the same email in
|
|
# five mins {int:int}
|
|
email_sent_dict = {}
|
|
|
|
def process(self, packet):
|
|
LOG.info("Version COMMAND")
|
|
# fromcall = packet.get("from")
|
|
# message = packet.get("message_text", None)
|
|
# ack = packet.get("msgNo", "0")
|
|
stats_obj = stats.APRSDStats()
|
|
s = stats_obj.stats()
|
|
print(s)
|
|
return "APRSD ver:{} uptime:{}".format(
|
|
aprsd.__version__,
|
|
s["aprsd"]["uptime"],
|
|
)
|