- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
59 lines
1.5 KiB
JavaScript
59 lines
1.5 KiB
JavaScript
"use strict";
|
|
|
|
const net = require("net");
|
|
const os = require("os");
|
|
const execa = require("execa");
|
|
|
|
const args = {
|
|
v4: ["-4", "r"],
|
|
v6: ["-6", "r"],
|
|
};
|
|
|
|
const parse = (stdout, family) => {
|
|
let result;
|
|
|
|
(stdout || "").trim().split("\n").some(line => {
|
|
const results = /default( via .+?)?( dev .+?)( |$)/.exec(line) || [];
|
|
const gateway = (results[1] || "").substring(5);
|
|
const iface = (results[2] || "").substring(5);
|
|
if (gateway && net.isIP(gateway)) { // default via 1.2.3.4 dev en0
|
|
result = {gateway, interface: (iface ? iface : null)};
|
|
return true;
|
|
} else if (iface && !gateway) { // default via dev en0
|
|
const interfaces = os.networkInterfaces();
|
|
const addresses = interfaces[iface];
|
|
if (!addresses || !addresses.length) return;
|
|
|
|
addresses.some(addr => {
|
|
if (addr.family.substring(2) === family && net.isIP(addr.address)) {
|
|
result = {gateway: addr.address, interface: (iface ? iface : null)};
|
|
return true;
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
if (!result) {
|
|
throw new Error("Unable to determine default gateway");
|
|
}
|
|
|
|
return result;
|
|
};
|
|
|
|
const promise = family => {
|
|
return execa.stdout("ip", args[family]).then(stdout => {
|
|
return parse(stdout, family);
|
|
});
|
|
};
|
|
|
|
const sync = family => {
|
|
const result = execa.sync("ip", args[family]);
|
|
return parse(result.stdout, family);
|
|
};
|
|
|
|
module.exports.v4 = () => promise("v4");
|
|
module.exports.v6 = () => promise("v6");
|
|
|
|
module.exports.v4.sync = () => sync("v4");
|
|
module.exports.v6.sync = () => sync("v6");
|