Fix API integration: proxy via Angular, date format, root redirect
CI / ci (push) Failing after 36s
Deploy / build-and-deploy (push) Failing after 5s

- Point API_BASE_URL to localhost:4200 (Angular's dev proxy) which
  correctly forwards to flights.test.aeroflot.ru with proper headers
- Convert URL date format (yyyyMMdd) to API format (yyyy-MM-ddT00:00:00)
  matching Angular's ApiFormatterService behavior
- Add standalone api-proxy.mjs script for running without Angular
- Root page redirect uses both loader and client-side navigate
- SignalR hub URL points to platform.yc.webzavod.ru/tracker/hub
- Remove broken server/modern-js.server.ts (proxy handled externally)
This commit is contained in:
2026-04-15 22:08:54 +03:00
parent 5fc67f81bd
commit e7c20c3d2d
16 changed files with 2478 additions and 29 deletions
+107
View File
@@ -0,0 +1,107 @@
/**
* API proxy for development — forwards /api/* to flights.test.aeroflot.ru
* through the system HTTPS proxy (GOST at 127.0.0.1:8888).
*
* Run: node scripts/api-proxy.mjs
* Listens on port 4201.
*/
import http from "node:http";
import https from "node:https";
import { URL } from "node:url";
const TARGET = "flights.test.aeroflot.ru";
const PORT = 4201;
const SYSTEM_PROXY = process.env.https_proxy || process.env.HTTPS_PROXY || "";
function proxyViaConnect(req, res) {
res.setHeader("Access-Control-Allow-Origin", "*");
res.setHeader("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, OPTIONS");
res.setHeader("Access-Control-Allow-Headers", "*");
if (req.method === "OPTIONS") {
res.writeHead(204);
res.end();
return;
}
if (SYSTEM_PROXY) {
// Use HTTP CONNECT tunnel through system proxy
const proxyUrl = new URL(SYSTEM_PROXY);
const connectReq = http.request({
host: proxyUrl.hostname,
port: parseInt(proxyUrl.port || "8888"),
method: "CONNECT",
path: `${TARGET}:443`,
});
connectReq.on("connect", (_connectRes, socket) => {
const options = {
hostname: TARGET,
path: req.url,
method: req.method,
headers: {
host: TARGET,
accept: "application/json, text/plain, */*",
"accept-language": "ru",
},
socket,
agent: false,
};
const targetReq = https.request(options, (targetRes) => {
const headers = { ...targetRes.headers, "access-control-allow-origin": "*" };
delete headers["transfer-encoding"];
res.writeHead(targetRes.statusCode ?? 200, headers);
targetRes.pipe(res, { end: true });
});
targetReq.on("error", (err) => {
res.writeHead(502, { "Content-Type": "application/json" });
res.end(JSON.stringify({ error: err.message }));
});
req.pipe(targetReq, { end: true });
});
connectReq.on("error", (err) => {
res.writeHead(502, { "Content-Type": "application/json" });
res.end(JSON.stringify({ error: `Proxy connect error: ${err.message}` }));
});
connectReq.end();
} else {
// Direct HTTPS without system proxy
const options = {
hostname: TARGET,
port: 443,
path: req.url,
method: req.method,
headers: {
host: TARGET,
accept: "application/json, text/plain, */*",
"accept-language": "ru",
},
};
const targetReq = https.request(options, (targetRes) => {
res.writeHead(targetRes.statusCode ?? 200, {
...targetRes.headers,
"access-control-allow-origin": "*",
});
targetRes.pipe(res, { end: true });
});
targetReq.on("error", (err) => {
res.writeHead(502, { "Content-Type": "application/json" });
res.end(JSON.stringify({ error: err.message }));
});
req.pipe(targetReq, { end: true });
}
}
const server = http.createServer(proxyViaConnect);
server.listen(PORT, () => {
console.log(`API proxy on http://localhost:${PORT} → https://${TARGET}`);
if (SYSTEM_PROXY) console.log(`Using system proxy: ${SYSTEM_PROXY}`);
});