Compare commits
3 commits
e97c2815be
...
be55add3f3
Author | SHA1 | Date | |
---|---|---|---|
|
be55add3f3 | ||
|
f2ac8871e5 | ||
|
a8fbb578e8 |
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -2,3 +2,6 @@ src/**/__pycache__
|
|||
src/venv
|
||||
src/modules/navigationd/*.png
|
||||
src/modules/navigationd/cache
|
||||
src/logs
|
||||
src/cache
|
||||
key.secret
|
||||
|
|
11
README.md
11
README.md
|
@ -3,8 +3,15 @@
|
|||
Software for the K.A.T.I.E.
|
||||
|
||||
## Components
|
||||
### Nightserver
|
||||
nightserver.py - The central API that the frontend recieves data from. Also serves the frontend itself.
|
||||
|
||||
modules/vitalsd/ - Vitals Daemon. Obtains vitals information and POSTs to nightserver.
|
||||
### Vitalsd
|
||||
- modules/vitalsd/ - Vitals Daemon. Obtains vitals information and POSTs to nightserver.
|
||||
- modules/vitalsd/
|
||||
|
||||
modules/navigationd/ - Navigation Daemon. Obtains navigation data and POSTs to nightserver.
|
||||
### Navigationd
|
||||
modules/navigationd/ - Navigation Daemon. Obtains navigation data from gpsd and POSTs to nightserver.
|
||||
|
||||
### Musicd
|
||||
modules/musicd/ - Music Daemon. Simply speaking, plays music.
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/bash
|
||||
export FLASK_APP=nightserver.py
|
||||
flask run
|
||||
flask run --host=0.0.0.0
|
||||
|
|
42
src/modules/vitalsd/aggregatorRecv.py
Normal file
42
src/modules/vitalsd/aggregatorRecv.py
Normal file
|
@ -0,0 +1,42 @@
|
|||
import subprocess
|
||||
import requests
|
||||
import sys
|
||||
from flask import jsonify
|
||||
from cyberwareAbs import Cyberware
|
||||
|
||||
class AggregatorRecv(Cyberware):
|
||||
uuid = None
|
||||
|
||||
def __init__(self):
|
||||
print("GadgetBridge Aggregator Reciever started")
|
||||
print("[WARN] GadgetBridge Aggregator not implemented")
|
||||
|
||||
# def sendValue(self, url, jsonRequest):
|
||||
# try:
|
||||
# oldJson = json.loads(jsonRequest)
|
||||
# uuidJson = {'uuid': self.uuid}
|
||||
# oldJson.update(uuidJson)
|
||||
# jsonWithUuid = json.dumps(oldJson)
|
||||
#
|
||||
# request = requests.post(url, json=jsonWithUuid)
|
||||
#
|
||||
# except:
|
||||
# print(self.apiFailMsg)
|
||||
# return 2 # 2 = No API contact.
|
||||
#
|
||||
# if request.status_code > 399:
|
||||
# return 3 # 3 = API refused request.
|
||||
#
|
||||
# if request.status_code > 299:
|
||||
# return 4 # 4 = API encountered an internal error.
|
||||
#
|
||||
# return 0 # 0 = Success
|
||||
|
||||
def sendAll(self):
|
||||
o=0
|
||||
|
||||
def connectCyberware(self):
|
||||
o=0
|
||||
|
||||
def disconnectCyberware(self):
|
||||
o=0
|
23
src/modules/vitalsd/config.ini
Normal file
23
src/modules/vitalsd/config.ini
Normal file
|
@ -0,0 +1,23 @@
|
|||
[enabled]
|
||||
Infinitime = false
|
||||
AggregatorRecv = false
|
||||
|
||||
; You should not edit any capabilities variables unless you know what you're doing.
|
||||
[infinitime]
|
||||
capabilities = [
|
||||
"vitals/heartrate",
|
||||
"vitals/steps",
|
||||
"cyberware/battery"
|
||||
]
|
||||
priority = 999
|
||||
|
||||
[aggregatorRecv]
|
||||
capabilities = [
|
||||
"vitals/heartrate",
|
||||
"vitals/steps",
|
||||
"battery",
|
||||
"vitals/bodytemp",
|
||||
"vitals/oxygen",
|
||||
"cyberware/battery"
|
||||
]
|
||||
priority = 0
|
56
src/modules/vitalsd/cyberwareAbs.py
Normal file
56
src/modules/vitalsd/cyberwareAbs.py
Normal file
|
@ -0,0 +1,56 @@
|
|||
import subprocess
|
||||
import requests
|
||||
import sys
|
||||
from flask import jsonify
|
||||
from abc import ABC,abstractmethod
|
||||
|
||||
class Cyberware(ABC):
|
||||
# I'll expand this as necessary
|
||||
urlBase = "http://localhost:5000/"
|
||||
ENDPOINTS = {
|
||||
"heartrate":urlBase+"api/vitals/heartrate",
|
||||
"steps":urlBase+"api/vitals/steps",
|
||||
"bodytemp":urlBase+"api/vitals/bodytemp",
|
||||
"oxygen":urlBase+"api/vitals/oxygen",
|
||||
"battery":urlBase+"api/vitals/battery",
|
||||
"add":urlBase+"api/cyberware/add",
|
||||
"remove":urlBase+"api/cyberware/remove"
|
||||
}
|
||||
|
||||
def sendValue(self, url, jsonRequest):
|
||||
try:
|
||||
oldJson = json.loads(jsonRequest)
|
||||
uuidJson = {'uuid': self.uuid}
|
||||
oldJson.update(uuidJson)
|
||||
jsonWithUuid = json.dumps(oldJson)
|
||||
|
||||
request = requests.post(url, json=jsonWithUuid)
|
||||
|
||||
except:
|
||||
print(self.apiFailMsg)
|
||||
return 2 # 2 = No API contact.
|
||||
|
||||
if request.status_code > 399:
|
||||
return 3 # 3 = API refused request.
|
||||
|
||||
if request.status_code > 299:
|
||||
return 4 # 4 = API encountered an internal error.
|
||||
|
||||
return 0 # 0 = Success
|
||||
|
||||
@property
|
||||
@abstractmethod
|
||||
def uuid(self):
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def sendAll(self):
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def connectCyberware(self):
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def disconnectCyberware(self):
|
||||
pass
|
|
@ -1,3 +1,6 @@
|
|||
# TODO: Rewrite this file to use the CyberwareAbs abstract class.
|
||||
# works as-is but man do I have nightmares knowing this file looks like this.
|
||||
|
||||
import subprocess
|
||||
import requests
|
||||
import sys
|
||||
|
@ -160,6 +163,11 @@ class Infinitime:
|
|||
print(self.apiFailMsg)
|
||||
self.uuid = None
|
||||
|
||||
def sendAll(self):
|
||||
self.sendHeartrate()
|
||||
self.sendSteps()
|
||||
self.sendBattery()
|
||||
|
||||
# while True:
|
||||
# try:
|
||||
# heartrate = getHeartrate()
|
||||
|
|
|
@ -1,25 +1,54 @@
|
|||
from infinitime import Infinitime
|
||||
from aggregatorRecv import AggregatorRecv
|
||||
import time
|
||||
import configparser
|
||||
import json
|
||||
|
||||
pinetimeEnabled = True
|
||||
config = configparser.ConfigParser()
|
||||
config.read('config.ini')
|
||||
|
||||
pinetimeEnabled = config.getboolean('enabled','Infinitime')
|
||||
aggregatorEnabled = config.getboolean('enabled', 'AggregatorRecv')
|
||||
|
||||
enabled = []
|
||||
|
||||
if(pinetimeEnabled):
|
||||
pinetime = Infinitime()
|
||||
capabilities = json.loads(config.get('infinitime','capabilities'))
|
||||
enabled.append(pinetime)
|
||||
pinetime.connectCyberware()
|
||||
|
||||
if(aggregatorEnabled):
|
||||
aggregator = AggregatorRecv()
|
||||
capabilities = json.loads(config.get('aggregatorRecv','capabilities'))
|
||||
enabled.append(aggregator)
|
||||
aggregator.connectCyberware()
|
||||
|
||||
continueFlag = True
|
||||
|
||||
#while continueFlag:
|
||||
# try:
|
||||
# if(pinetimeEnabled):
|
||||
# pinetime.sendHeartrate()
|
||||
# pinetime.sendSteps()
|
||||
# pinetime.sendHeartrate()
|
||||
#
|
||||
# time.sleep(1)
|
||||
# except KeyboardInterrupt:
|
||||
# print("Stopping vitalsd")
|
||||
# continueFlag = False
|
||||
#
|
||||
#if(pinetimeEnabled):
|
||||
# pinetime.disconnectCyberware()
|
||||
|
||||
while continueFlag:
|
||||
try:
|
||||
if(pinetimeEnabled):
|
||||
pinetime.sendHeartrate()
|
||||
pinetime.sendSteps()
|
||||
pinetime.sendHeartrate()
|
||||
|
||||
for c in enabled:
|
||||
c.sendAll()
|
||||
time.sleep(1)
|
||||
except KeyboardInterrupt:
|
||||
print("Stopping vitalsd")
|
||||
continueFlag = False
|
||||
|
||||
if(pinetimeEnabled):
|
||||
pinetime.disconnectCyberware()
|
||||
for c in enabled:
|
||||
c.disconnectCyberware()
|
||||
|
|
Loading…
Reference in a new issue