Merge pull request 'Sort, filter, and limit results at /packets' (#23) from sort-filter into main
Reviewed-on: #23
This commit is contained in:
commit
4203af5b81
10
README.md
10
README.md
|
@ -10,15 +10,19 @@ direwolf logs into a REST API in JSON format.
|
||||||
1. Set up database file with `python init_db.py`.
|
1. Set up database file with `python init_db.py`.
|
||||||
2. Run `app.py` with either a Python call or a real WSGI server.
|
2. Run `app.py` with either a Python call or a real WSGI server.
|
||||||
You can use screen to detach the session.
|
You can use screen to detach the session.
|
||||||
- Default URL is http://127.0.0.1:5000
|
- Default URL is http://127.0.0.1:5001
|
||||||
- Example `waitress` and `screen` scripts are included, see
|
- Example `waitress` and `screen` scripts are included, see
|
||||||
- `api_waitress.py` and
|
- `api_waitress.py` and
|
||||||
- `start-aprs_api.sh`
|
- `start-aprs_api.sh`
|
||||||
3. Access the API from whatever other system you want.
|
3. Access the API from whatever other system you want.
|
||||||
|
|
||||||
## Endpoints:
|
## Endpoints:
|
||||||
-`/packets` - gives the most recent packets, with the fields from the Dire Wolf
|
-`/packets` - gives the most recent packets, sorted descending by time received.
|
||||||
User Guide.
|
- argument `n` will return a specific number of packets, default 10. E.g.,
|
||||||
|
`https://digi.w1cdn.net/aprs_api/packets?n=1` returns one packet.
|
||||||
|
- argument `from` will return packets from the named station-SSID (no wildcards).
|
||||||
|
E.g., `https://digi.w1cdn.net/aprs_api/packets?n=1&from=W1CDN-1` returns
|
||||||
|
one packet from W1CDN-1.
|
||||||
|
|
||||||
Example of an object packet sent by W1CDN-1 and digipeated by K0UND-2:
|
Example of an object packet sent by W1CDN-1 and digipeated by K0UND-2:
|
||||||
```
|
```
|
||||||
|
|
44
api_app.py
44
api_app.py
|
@ -1,15 +1,18 @@
|
||||||
from flask import Flask
|
from flask import Flask, request
|
||||||
from flask_restful import Resource, Api, reqparse
|
from flask_restful import Resource, Api, reqparse
|
||||||
from datetime import date, timedelta
|
from datetime import date, timedelta
|
||||||
import configparser
|
import configparser
|
||||||
import csv
|
import csv
|
||||||
import ast
|
import ast
|
||||||
import glob
|
import glob
|
||||||
import json
|
import json, operator
|
||||||
import sqlite3
|
import sqlite3
|
||||||
api_app = Flask(__name__)
|
api_app = Flask(__name__)
|
||||||
api = Api(api_app)
|
api = Api(api_app)
|
||||||
|
|
||||||
|
# TODO this is duplicated from kiss_and_db.py, can I avoid that?
|
||||||
|
import constants
|
||||||
|
|
||||||
def read_config():
|
def read_config():
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read('config.ini')
|
config.read('config.ini')
|
||||||
|
@ -51,7 +54,6 @@ def dict_factory(cursor, row):
|
||||||
|
|
||||||
def get_db_connection():
|
def get_db_connection():
|
||||||
conn = sqlite3.connect('database.db')
|
conn = sqlite3.connect('database.db')
|
||||||
#conn.row_factory = sqlite3.Row
|
|
||||||
conn.row_factory = dict_factory
|
conn.row_factory = dict_factory
|
||||||
return conn
|
return conn
|
||||||
|
|
||||||
|
@ -66,18 +68,46 @@ def select_all_frames(conn):
|
||||||
rows = cur.fetchall()
|
rows = cur.fetchall()
|
||||||
return rows
|
return rows
|
||||||
|
|
||||||
|
def select_frames(conn, n, from_, url_params):
|
||||||
|
|
||||||
|
# Should pass this a dict of fields and values (request.args)
|
||||||
|
# TODO clean data before sending to DB
|
||||||
|
# Filter out any keys that don't match db fields
|
||||||
|
# From https://stackoverflow.com/a/20256491
|
||||||
|
dictfilt = lambda x, y: dict([ (i,x[i]) for i in x if i in set(y) ])
|
||||||
|
field_where = dictfilt(url_params, constants.db_frames_fields)
|
||||||
|
# Then loop through fields to create query parts
|
||||||
|
# From https://stackoverflow.com/a/73512269/2152245
|
||||||
|
field_where_str = ' AND '.join([f'"{k}" LIKE \'{v}\'' for k,v in field_where.items()])
|
||||||
|
|
||||||
|
cur = conn.cursor()
|
||||||
|
# Workaround to deal with missing value in WHERE
|
||||||
|
field_where_query = "" if field_where_str == "" else "WHERE "+field_where_str
|
||||||
|
sql = 'SELECT * FROM frames {field_where_query} ORDER BY created DESC LIMIT {n}'.format(field_where_query=field_where_query, n=n)
|
||||||
|
print(sql)
|
||||||
|
cur.execute(sql)
|
||||||
|
rows = cur.fetchall()
|
||||||
|
return rows
|
||||||
|
|
||||||
class Packets(Resource):
|
class Packets(Resource):
|
||||||
def get(self):
|
def get(self):
|
||||||
#data = read_logs(log_folder)
|
# Handle arguments that may or may not exist
|
||||||
|
try:
|
||||||
|
n = int(request.args.get('n'))
|
||||||
|
except:
|
||||||
|
n = 10
|
||||||
|
from_ = None if request.args.get('from') == None else request.args.get('from')
|
||||||
|
|
||||||
conn = get_db_connection()
|
conn = get_db_connection()
|
||||||
data = select_all_frames(conn)
|
# Limit to number of records requested
|
||||||
|
data = select_frames(conn, n = n, from_ = from_, url_params = request.args.to_dict())
|
||||||
|
# Sort by created date, descending (https://stackoverflow.com/a/45266808)
|
||||||
|
#data.sort(key=operator.itemgetter('created'), reverse=True)
|
||||||
return {'data': data}, 200 # return data and 200 OK code
|
return {'data': data}, 200 # return data and 200 OK code
|
||||||
|
|
||||||
# Read config
|
# Read config
|
||||||
config = read_config()
|
config = read_config()
|
||||||
log_folder = config['Settings']['log_folder']
|
log_folder = config['Settings']['log_folder']
|
||||||
# Load logs first (just to check for errors before page loads)
|
|
||||||
#data = read_logs(log_folder)
|
|
||||||
|
|
||||||
# Start subprocess to watch KISS connection
|
# Start subprocess to watch KISS connection
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
49
constants.py
Normal file
49
constants.py
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
# Tuple of frames table fields
|
||||||
|
db_frames_fields = ("id",
|
||||||
|
"addresse",
|
||||||
|
"alive",
|
||||||
|
"altitude",
|
||||||
|
"comment",
|
||||||
|
"course",
|
||||||
|
"created",
|
||||||
|
"created_unix",
|
||||||
|
"format",
|
||||||
|
"frame",
|
||||||
|
"from",
|
||||||
|
"gpsfixstatus",
|
||||||
|
"latitude",
|
||||||
|
"longitude",
|
||||||
|
"mbits",
|
||||||
|
"messagecapable",
|
||||||
|
"message_text",
|
||||||
|
"msgNo",
|
||||||
|
"mtype",
|
||||||
|
"object_format",
|
||||||
|
"object_name",
|
||||||
|
"path",
|
||||||
|
"phg",
|
||||||
|
"phg_dir",
|
||||||
|
"phg_gain",
|
||||||
|
"phg_height",
|
||||||
|
"phg_power",
|
||||||
|
"phg_range",
|
||||||
|
"posambiguity",
|
||||||
|
"raw",
|
||||||
|
"raw_timestamp",
|
||||||
|
"speed",
|
||||||
|
"station_call",
|
||||||
|
"station_lat",
|
||||||
|
"station_lon",
|
||||||
|
"status",
|
||||||
|
"subpacket",
|
||||||
|
"symbol",
|
||||||
|
"symbol_table",
|
||||||
|
"telemetry",
|
||||||
|
"timestamp",
|
||||||
|
"to",
|
||||||
|
"tEQNS",
|
||||||
|
"tPARM",
|
||||||
|
"tUNIT",
|
||||||
|
"via",
|
||||||
|
"weather",
|
||||||
|
"wx_raw_timestamp")
|
105
kiss_and_db.py
105
kiss_and_db.py
|
@ -5,53 +5,7 @@ import aprs
|
||||||
import json
|
import json
|
||||||
import aprslib
|
import aprslib
|
||||||
import configparser
|
import configparser
|
||||||
|
import time
|
||||||
db_fields = ("id",
|
|
||||||
"addresse",
|
|
||||||
"alive",
|
|
||||||
"altitude",
|
|
||||||
"comment",
|
|
||||||
"course",
|
|
||||||
"created",
|
|
||||||
"format",
|
|
||||||
"frame",
|
|
||||||
"from",
|
|
||||||
"gpsfixstatus",
|
|
||||||
"latitude",
|
|
||||||
"longitude",
|
|
||||||
"mbits",
|
|
||||||
"messagecapable",
|
|
||||||
"message_text",
|
|
||||||
"mtype",
|
|
||||||
"object_format",
|
|
||||||
"object_name",
|
|
||||||
"path",
|
|
||||||
"phg",
|
|
||||||
"phg_dir",
|
|
||||||
"phg_gain",
|
|
||||||
"phg_height",
|
|
||||||
"phg_power",
|
|
||||||
"phg_range",
|
|
||||||
"posambiguity",
|
|
||||||
"raw",
|
|
||||||
"raw_timestamp",
|
|
||||||
"speed",
|
|
||||||
"station_call",
|
|
||||||
"station_lat",
|
|
||||||
"station_lon",
|
|
||||||
"status",
|
|
||||||
"subpacket",
|
|
||||||
"symbol",
|
|
||||||
"symbol_table",
|
|
||||||
"telemetry",
|
|
||||||
"timestamp",
|
|
||||||
"to",
|
|
||||||
"tEQNS",
|
|
||||||
"tPARM",
|
|
||||||
"tUNIT",
|
|
||||||
"via",
|
|
||||||
"weather",
|
|
||||||
"wx_raw_timestamp")
|
|
||||||
|
|
||||||
def read_config():
|
def read_config():
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
|
@ -82,40 +36,45 @@ def main():
|
||||||
path=["WIDE1-1"],
|
path=["WIDE1-1"],
|
||||||
info=b">Hello World!",
|
info=b">Hello World!",
|
||||||
)
|
)
|
||||||
ki.write(frame)
|
#ki.write(frame)
|
||||||
|
|
||||||
# Watch for new packets to come in
|
# Watch for new packets to come in
|
||||||
while True:
|
while True:
|
||||||
conn = get_db_connection()
|
conn = get_db_connection()
|
||||||
for frame in ki.read(min_frames=1):
|
for frame in ki.read(min_frames=1):
|
||||||
a = aprslib.parse(str(frame))
|
|
||||||
a['station_call'] = config['Settings']['station_call']
|
|
||||||
a['station_lat'] = config['Settings']['station_lat']
|
|
||||||
a['station_lon'] = config['Settings']['station_lon']
|
|
||||||
print(a)
|
|
||||||
# Make this a string and deal with it later (probably a mistake)
|
|
||||||
a['path'] = str(a['path'])
|
|
||||||
# Store true/false as 1/0
|
|
||||||
if 'alive' in a:
|
|
||||||
if a['alive'] == True:
|
|
||||||
a['alive'] = 1
|
|
||||||
else:
|
|
||||||
a['alive'] = 0
|
|
||||||
# Build an INSERT statement based on the fields we have from the frame
|
|
||||||
attrib_names = ', '.join('"%s"' % w for w in a.keys())
|
|
||||||
attrib_values = ", ".join("?" * len(a.keys()))
|
|
||||||
sql = "INSERT INTO frames ("+attrib_names+") VALUES ("+attrib_values+")"
|
|
||||||
try:
|
try:
|
||||||
# Insert data
|
a = aprslib.parse(str(frame))
|
||||||
conn.execute(sql, list(a.values()))
|
a['station_call'] = config['Settings']['station_call']
|
||||||
conn.commit()
|
a['station_lat'] = config['Settings']['station_lat']
|
||||||
|
a['station_lon'] = config['Settings']['station_lon']
|
||||||
|
a['created_unix'] = int(time.time())
|
||||||
|
print(a)
|
||||||
|
# Make this a string and deal with it later (probably a mistake)
|
||||||
|
a['path'] = str(a['path'])
|
||||||
|
# Store true/false as 1/0
|
||||||
|
if 'alive' in a:
|
||||||
|
if a['alive'] == True:
|
||||||
|
a['alive'] = 1
|
||||||
|
else:
|
||||||
|
a['alive'] = 0
|
||||||
|
# Build an INSERT statement based on the fields we have from the frame
|
||||||
|
attrib_names = ', '.join('"%s"' % w for w in a.keys())
|
||||||
|
attrib_values = ", ".join("?" * len(a.keys()))
|
||||||
|
sql = "INSERT INTO frames ("+attrib_names+") VALUES ("+attrib_values+")"
|
||||||
|
try:
|
||||||
|
# Insert data
|
||||||
|
conn.execute(sql, list(a.values()))
|
||||||
|
conn.commit()
|
||||||
|
|
||||||
# TODO remove packets that are older ('created') than a limit set in config.ini
|
# TODO remove packets that are older ('created') than a limit set in config.ini
|
||||||
# "5 minutes" also works
|
# "5 minutes" also works
|
||||||
conn.execute("DELETE FROM frames WHERE created < DATETIME('now', '"+config['Settings']['keep_time']+"')")
|
conn.execute("DELETE FROM frames WHERE created < DATETIME('now', '"+config['Settings']['keep_time']+"')")
|
||||||
conn.commit()
|
conn.commit()
|
||||||
|
except:
|
||||||
|
print("Error with SQLite!")
|
||||||
except:
|
except:
|
||||||
print("Error with SQLite!")
|
print("Frame could not be parsed.")
|
||||||
|
|
||||||
|
|
||||||
conn.close()
|
conn.close()
|
||||||
|
|
||||||
|
|
|
@ -2,3 +2,5 @@ flask
|
||||||
flask_restful
|
flask_restful
|
||||||
aprs
|
aprs
|
||||||
aprslib
|
aprslib
|
||||||
|
sqlite3
|
||||||
|
json
|
||||||
|
|
|
@ -8,6 +8,7 @@ CREATE TABLE frames (
|
||||||
comment TEXT,
|
comment TEXT,
|
||||||
course REAL,
|
course REAL,
|
||||||
created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
created_unix INT,
|
||||||
format TEXT,
|
format TEXT,
|
||||||
frame TEXT,
|
frame TEXT,
|
||||||
"from" TEXT,
|
"from" TEXT,
|
||||||
|
@ -17,6 +18,7 @@ CREATE TABLE frames (
|
||||||
mbits INT,
|
mbits INT,
|
||||||
messagecapable INT,
|
messagecapable INT,
|
||||||
message_text TEXT,
|
message_text TEXT,
|
||||||
|
msgNo INT,
|
||||||
mtype TEXT,
|
mtype TEXT,
|
||||||
object_format TEXT,
|
object_format TEXT,
|
||||||
object_name TEXT,
|
object_name TEXT,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user