Implements Phases 1-8 of the TFTSR implementation plan. Rust backend (Tauri 2.x, src-tauri/): - Multi-provider AI: OpenAI-compatible, Anthropic, Gemini, Mistral, Ollama - PII detection engine: 11 regex patterns with overlap resolution - SQLCipher AES-256 encrypted database with 10 versioned migrations - 28 Tauri IPC commands for triage, analysis, document, and system ops - Ollama: hardware probe, model recommendations, pull/delete with events - RCA and blameless post-mortem Markdown document generators - PDF export via printpdf - Audit log: SHA-256 hash of every external data send - Integration stubs for Confluence, ServiceNow, Azure DevOps (v0.2) Frontend (React 18 + TypeScript + Vite, src/): - 9 pages: full triage workflow NewIssue→LogUpload→Triage→Resolution→RCA→Postmortem→History+Settings - 7 components: ChatWindow, TriageProgress, PiiDiffViewer, DocEditor, HardwareReport, ModelSelector, UI primitives - 3 Zustand stores: session, settings (persisted), history - Type-safe tauriCommands.ts matching Rust backend types exactly - 8 IT domain system prompts (Linux, Windows, Network, K8s, DB, Virt, HW, Obs) DevOps: - .woodpecker/test.yml: rustfmt, clippy, cargo test, tsc, vitest on every push - .woodpecker/release.yml: linux/amd64 + linux/arm64 builds, Gogs release upload Verified: - cargo check: zero errors - tsc --noEmit: zero errors - vitest run: 13/13 unit tests passing Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
73 lines
2.9 KiB
JavaScript
73 lines
2.9 KiB
JavaScript
"use strict";
|
|
/**
|
|
* @license
|
|
* Copyright 2023 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.resolveDownloadUrl = resolveDownloadUrl;
|
|
exports.resolveDownloadPath = resolveDownloadPath;
|
|
exports.relativeExecutablePath = relativeExecutablePath;
|
|
exports.resolveBuildId = resolveBuildId;
|
|
exports.compareVersions = compareVersions;
|
|
const node_path_1 = __importDefault(require("node:path"));
|
|
const httpUtil_js_1 = require("../httpUtil.js");
|
|
const types_js_1 = require("./types.js");
|
|
function archive(platform, buildId) {
|
|
switch (platform) {
|
|
case types_js_1.BrowserPlatform.LINUX_ARM:
|
|
case types_js_1.BrowserPlatform.LINUX:
|
|
return 'chrome-linux';
|
|
case types_js_1.BrowserPlatform.MAC_ARM:
|
|
case types_js_1.BrowserPlatform.MAC:
|
|
return 'chrome-mac';
|
|
case types_js_1.BrowserPlatform.WIN32:
|
|
case types_js_1.BrowserPlatform.WIN64:
|
|
// Windows archive name changed at r591479.
|
|
return parseInt(buildId, 10) > 591479 ? 'chrome-win' : 'chrome-win32';
|
|
}
|
|
}
|
|
function folder(platform) {
|
|
switch (platform) {
|
|
case types_js_1.BrowserPlatform.LINUX_ARM:
|
|
case types_js_1.BrowserPlatform.LINUX:
|
|
return 'Linux_x64';
|
|
case types_js_1.BrowserPlatform.MAC_ARM:
|
|
return 'Mac_Arm';
|
|
case types_js_1.BrowserPlatform.MAC:
|
|
return 'Mac';
|
|
case types_js_1.BrowserPlatform.WIN32:
|
|
return 'Win';
|
|
case types_js_1.BrowserPlatform.WIN64:
|
|
return 'Win_x64';
|
|
}
|
|
}
|
|
function resolveDownloadUrl(platform, buildId, baseUrl = 'https://storage.googleapis.com/chromium-browser-snapshots') {
|
|
return `${baseUrl}/${resolveDownloadPath(platform, buildId).join('/')}`;
|
|
}
|
|
function resolveDownloadPath(platform, buildId) {
|
|
return [folder(platform), buildId, `${archive(platform, buildId)}.zip`];
|
|
}
|
|
function relativeExecutablePath(platform, _buildId) {
|
|
switch (platform) {
|
|
case types_js_1.BrowserPlatform.MAC:
|
|
case types_js_1.BrowserPlatform.MAC_ARM:
|
|
return node_path_1.default.join('chrome-mac', 'Chromium.app', 'Contents', 'MacOS', 'Chromium');
|
|
case types_js_1.BrowserPlatform.LINUX_ARM:
|
|
case types_js_1.BrowserPlatform.LINUX:
|
|
return node_path_1.default.join('chrome-linux', 'chrome');
|
|
case types_js_1.BrowserPlatform.WIN32:
|
|
case types_js_1.BrowserPlatform.WIN64:
|
|
return node_path_1.default.join('chrome-win', 'chrome.exe');
|
|
}
|
|
}
|
|
async function resolveBuildId(platform) {
|
|
return await (0, httpUtil_js_1.getText)(new URL(`https://storage.googleapis.com/chromium-browser-snapshots/${folder(platform)}/LAST_CHANGE`));
|
|
}
|
|
function compareVersions(a, b) {
|
|
return Number(a) - Number(b);
|
|
}
|
|
//# sourceMappingURL=chromium.js.map
|