File size: 5,324 Bytes
9425aed | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | /**
* Verification Server β Orbital Invariant Oracle
* Integrates BOB VOYAGER, sov-kernel-monster proofs, Ahmad Bot orchestration
* NORAD 25544 Β· ISS ZARYA
* Apache 2.0 Β· SnapKitty Collective 2026
*/
import http from 'http';
import crypto from 'crypto';
import { OrbitalOracle } from './orbital_oracle.mjs';
const PORT = process.env.PORT || 3333;
const VOYAGER_URL = process.env.VOYAGER_URL || 'http://localhost:4299';
/**
* Verification Server
* Accepts telemetry from BOB VOYAGER, validates against formal proofs
*/
const oracle = new OrbitalOracle({ voyagerUrl: VOYAGER_URL });
let wormChain = [];
let verificationCount = 0;
function cors(res) {
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS');
res.setHeader('Access-Control-Allow-Headers', 'Content-Type');
}
function json(res, data, status = 200) {
cors(res);
res.writeHead(status, { 'Content-Type': 'application/json' });
res.end(JSON.stringify(data, null, 2));
}
/**
* Verify orbital telemetry against formal invariants
*/
function verifyTelemetry(telemetry) {
if (!telemetry || typeof telemetry !== 'object') {
return { ok: false, error: 'Invalid telemetry payload' };
}
const validation = oracle.validateOrbitalInvariants(telemetry, telemetry);
// Create WORM seal
const msg = `${wormChain.length}|VERIFICATION|${Date.now()}|${telemetry.latitude.toFixed(4)}|${telemetry.longitude.toFixed(4)}`;
const hash = crypto.createHash('sha256').update(msg).digest('hex');
const seal = {
seq: wormChain.length,
hash: hash.slice(0, 16),
full_hash: hash,
timestamp: new Date().toISOString(),
valid: validation.valid,
position: {
lat: telemetry.latitude,
lon: telemetry.longitude,
alt: telemetry.altitude,
},
};
wormChain.push(seal);
verificationCount++;
return {
ok: true,
timestamp: new Date().toISOString(),
position: [telemetry.latitude, telemetry.longitude],
altitude: telemetry.altitude,
velocity: telemetry.velocity,
valid: validation.valid,
invariants: validation.invariants,
invariants_passed: Object.values(validation.invariants).filter(Boolean).length,
invariants_total: Object.keys(validation.invariants).length,
errors: validation.errors,
warnings: validation.warnings,
seal: {
hash: seal.hash,
full_hash: seal.full_hash,
},
};
}
/**
* HTTP Server
*/
const server = http.createServer(async (req, res) => {
if (req.method === 'OPTIONS') {
cors(res);
res.writeHead(204);
res.end();
return;
}
const url = req.url.split('?')[0];
// β POST /verify β Verify telemetry payload
if (url === '/verify' && req.method === 'POST') {
let body = '';
req.on('data', chunk => body += chunk);
req.on('end', () => {
try {
const payload = JSON.parse(body);
const result = verifyTelemetry(payload.telemetry);
json(res, result, result.ok ? 200 : 400);
} catch (e) {
json(res, { ok: false, error: e.message }, 400);
}
});
return;
}
// β GET /worm β Last N WORM seals
if (url === '/worm') {
json(res, {
ok: true,
count: wormChain.length,
entries: wormChain.slice(-50),
});
return;
}
// β GET /history β Verification history
if (url === '/history') {
const limit = parseInt(new URL(`http://localhost${req.url}`).searchParams.get('limit') || 100);
json(res, {
ok: true,
count: oracle.verificationHistory.length,
history: oracle.verificationHistory.slice(-limit),
});
return;
}
// β GET /health β Service status
if (url === '/health') {
json(res, {
ok: true,
service: 'verification-server',
version: '1.0.0',
norad: 25544,
verifications_total: verificationCount,
worm_count: wormChain.length,
uptime_s: process.uptime().toFixed(0),
});
return;
}
// β GET /live β Live verification status
if (url === '/live') {
const latest = oracle.verificationHistory[oracle.verificationHistory.length - 1];
json(res, {
ok: true,
latest_verification: latest || null,
worm_count: wormChain.length,
verification_count: verificationCount,
});
return;
}
cors(res);
res.writeHead(404);
res.end('Not found');
});
// β Boot
console.log(`
ββββββββββββββββββββββββββββββββββββββββββββββ
β Verification Server v1.0 β
β Orbital Invariant Oracle β
β NORAD 25544 Β· ISS ZARYA β
β http://localhost:${PORT} β
β Apache 2.0 Β· SnapKitty Collective 2026 β
ββββββββββββββββββββββββββββββββββββββββββββββ
API endpoints:
POST /verify verify telemetry payload
GET /worm last 50 WORM seals
GET /history?limit=100 verification history
GET /live latest verification
GET /health service status
`);
server.listen(PORT, () => {
console.log(`Verification server listening on port ${PORT}`);
});
|