Get PortNums from protobufs
This commit is contained in:
parent
4c6bccc058
commit
700ee298c4
1 changed files with 2 additions and 29 deletions
31
src/stats.js
31
src/stats.js
|
|
@ -15,6 +15,7 @@ root.loadSync('meshtastic/mqtt.proto');
|
||||||
const Data = root.lookupType("Data");
|
const Data = root.lookupType("Data");
|
||||||
const HardwareModel = root.lookupEnum("HardwareModel");
|
const HardwareModel = root.lookupEnum("HardwareModel");
|
||||||
const ServiceEnvelope = root.lookupType("ServiceEnvelope");
|
const ServiceEnvelope = root.lookupType("ServiceEnvelope");
|
||||||
|
const PortNum = root.lookupEnum("PortNum");
|
||||||
|
|
||||||
const decryptionKeys = [
|
const decryptionKeys = [
|
||||||
"1PG7OiApB1nwvP+rz05pAQ==", // add default "AQ==" decryption key
|
"1PG7OiApB1nwvP+rz05pAQ==", // add default "AQ==" decryption key
|
||||||
|
|
@ -73,34 +74,6 @@ function decrypt(packet) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const PORTNUM_LABELS = {
|
|
||||||
0: "UNKNOWN_APP",
|
|
||||||
1: "TEXT_MESSAGE_APP",
|
|
||||||
2: "REMOTE_HARDWARE_APP",
|
|
||||||
3: "POSITION_APP",
|
|
||||||
4: "NODEINFO_APP",
|
|
||||||
5: "ROUTING_APP",
|
|
||||||
6: "ADMIN_APP",
|
|
||||||
7: "TEXT_MESSAGE_COMPRESSED_APP",
|
|
||||||
8: "WAYPOINT_APP",
|
|
||||||
9: "AUDIO_APP",
|
|
||||||
10: "DETECTION_SENSOR_APP",
|
|
||||||
32: "REPLY_APP",
|
|
||||||
33: "IP_TUNNEL_APP",
|
|
||||||
34: "PAXCOUNTER_APP",
|
|
||||||
64: "SERIAL_APP",
|
|
||||||
65: "STORE_FORWARD_APP",
|
|
||||||
66: "RANGE_TEST_APP",
|
|
||||||
67: "TELEMETRY_APP",
|
|
||||||
68: "ZPS_APP",
|
|
||||||
69: "SIMULATOR_APP",
|
|
||||||
70: "TRACEROUTE_APP",
|
|
||||||
71: "NEIGHBORINFO_APP",
|
|
||||||
72: "ATAK_PLUGIN",
|
|
||||||
256: "PRIVATE_APP",
|
|
||||||
257: "ATAK_FORWARDER"
|
|
||||||
};
|
|
||||||
|
|
||||||
router.get('/hardware-models', async (req, res) => {
|
router.get('/hardware-models', async (req, res) => {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
|
|
@ -277,7 +250,7 @@ router.get('/portnum-counts', async (req, res) => {
|
||||||
const result = Object.entries(counts).map(([portnum, count]) => ({
|
const result = Object.entries(counts).map(([portnum, count]) => ({
|
||||||
portnum: parseInt(portnum),
|
portnum: parseInt(portnum),
|
||||||
count,
|
count,
|
||||||
label: PORTNUM_LABELS[portnum] || "UNKNOWN"
|
label: PortNum.valuesById[portnum] ?? "UNKNOWN",
|
||||||
})).sort((a, b) => a.portnum - b.portnum);
|
})).sort((a, b) => a.portnum - b.portnum);
|
||||||
|
|
||||||
res.json(result);
|
res.json(result);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue