feat: add /download and /releases routes in apps/web and sync binary distribution
Some checks are pending
CI Pipeline / Code Quality & Typecheck (push) Waiting to run
CI Pipeline / Test Suite (macos-latest) (push) Blocked by required conditions
CI Pipeline / Test Suite (ubuntu-latest) (push) Blocked by required conditions
CI Pipeline / Test Suite (windows-latest) (push) Blocked by required conditions
CI Pipeline / Build Validation (admin) (push) Blocked by required conditions
CI Pipeline / Build Validation (desktop) (push) Blocked by required conditions
Deploy Landing Page / build (push) Waiting to run
Deploy Landing Page / deploy (push) Blocked by required conditions

This commit is contained in:
Yun Chan 2026-08-20 17:06:51 +09:00
parent 7879d493ea
commit abd26e91af
18 changed files with 1731 additions and 4 deletions

View file

@ -0,0 +1,29 @@
// scripts/capture-forgejo-release-live.js
const { chromium } = require('@playwright/test');
const path = require('path');
const fs = require('fs');
async function capture() {
const browser = await chromium.launch({ channel: 'msedge', headless: true });
const context = await browser.newContext({ viewport: { width: 1440, height: 960 }, deviceScaleFactor: 2 });
const page = await context.newPage();
console.log('Logging in to Forgejo...');
await page.goto('https://git.chanpaca.net/user/login', { waitUntil: 'networkidle' });
await page.fill('input[name="user_name"]', 'yunchan');
await page.fill('input[name="password"]', 'ONVI2v4J#y');
await page.click('button[type="submit"]');
await page.waitForTimeout(3000);
console.log('Navigating to releases...');
await page.goto('https://git.chanpaca.net/yunchan/d3ro-voice/releases', { waitUntil: 'networkidle' });
await page.waitForTimeout(2000);
const shotPath = 'C:/Users/encep/.gemini/antigravity-cli/brain/3ab7ae82-5634-41d5-93a7-3c12c22503e2/screenshots/git_server/05_forgejo_v1_0_0_official_release_with_binary.png';
await page.screenshot({ path: shotPath, fullPage: true });
console.log('Saved:', shotPath);
await browser.close();
}
capture().catch(console.error);

View file

@ -0,0 +1,89 @@
// scripts/ci/sync-and-publish-forgejo-release.mjs
// 1. Copies desktop release binaries to site/public/releases/ for direct Web downloads
// 2. Creates official Release on git.chanpaca.net (Forgejo API) with release notes
import { copyFileSync, mkdirSync, existsSync, readFileSync } from 'node:fs';
import path from 'node:path';
const RELEASE_DIR = 'apps/desktop/release/1.0.0';
const SITE_PUBLIC_RELEASES = 'site/public/releases/1.0.0';
const SITE_PUBLIC_ROOT = 'site/public/releases';
const SITE_DIST_RELEASES = 'site/dist/releases/1.0.0';
const SITE_DIST_ROOT = 'site/dist/releases';
console.log('--- 1. Syncing binary files to site static distribution directories ---');
mkdirSync(SITE_PUBLIC_RELEASES, { recursive: true });
mkdirSync(SITE_DIST_RELEASES, { recursive: true });
const filesToSync = [
'D3RO-Voice-Setup-1.0.0-x64.exe',
'D3RO-Voice-Setup-1.0.0-x64.exe.blockmap',
'latest.yml'
];
for (const file of filesToSync) {
const src = path.join(RELEASE_DIR, file);
if (existsSync(src)) {
// Copy to releases/1.0.0/
copyFileSync(src, path.join(SITE_PUBLIC_RELEASES, file));
copyFileSync(src, path.join(SITE_DIST_RELEASES, file));
// Also copy latest.yml to releases/ root
if (file === 'latest.yml') {
copyFileSync(src, path.join(SITE_PUBLIC_ROOT, file));
copyFileSync(src, path.join(SITE_DIST_ROOT, file));
}
console.log(`✓ Copied ${file} to public distribution paths`);
} else {
console.warn(`! Source file not found: ${src}`);
}
}
console.log('\n--- 2. Publishing Official Release v1.0.0 on Forgejo git.chanpaca.net ---');
const auth = Buffer.from('yunchan:ONVI2v4J#y').toString('base64');
const releasePayload = {
tag_name: 'v1.0.0',
target_commitish: 'main',
name: 'D3RO Voice AI Production Release v1.0.0',
body: `## D3RO Voice AI v1.0.0 Official Release
### 🚀 Major Highlights
- **10+ Global Ad Mediation Engine**: Header bidding waterfall with EthicalAds, Carbon Ads, Google Ad Manager, Playwire, AppLovin, and Unity Ads.
- **Free Tier Rewarded Token Refills**: Watch 15s sponsored video to gain +50 Cloud AI tokens.
- **100% Local Whisper Large-v3-Turbo**: Complete offline speech-to-text transcription with hardware acceleration.
- **Synology NAS Docker Deployment**: Docker Compose package for self-hosted CRM and docs.
### 📦 Binary Checksums (SHA-256)
- \`D3RO-Voice-Setup-1.0.0-x64.exe\`: \`b0ac051443151a2e34e8192f1fcf795586bbafca6eb21f01a79170c079a53ba2\` (102 MB)
- \`D3RO-Voice-Setup-1.0.0-x64.exe.blockmap\`: \`795b7230bec047284785f480026d51b9247d8618e083d88cfda786d1894ca367\`
`,
draft: false,
prerelease: false
};
async function publishRelease() {
try {
const res = await fetch('https://git.chanpaca.net/api/v1/repos/yunchan/d3ro-voice/releases', {
method: 'POST',
headers: {
'Authorization': 'Basic ' + auth,
'Content-Type': 'application/json'
},
body: JSON.stringify(releasePayload)
});
console.log('Forgejo Release Create HTTP Status:', res.status);
const data = await res.json();
if (res.status === 201 || res.status === 200) {
console.log('🎉 Forgejo Release v1.0.0 created successfully:', data.html_url);
} else {
console.log('Response:', data);
}
} catch (err) {
console.error('Failed to create release on Forgejo:', err);
}
}
publishRelease();

View file

@ -0,0 +1,42 @@
// scripts/ci/upload-asset-to-forgejo-release.mjs
// Uploads D3RO-Voice-Setup-1.0.0-x64.exe directly to Forgejo Release v1.0.0
import { readFileSync, existsSync } from 'node:fs';
import path from 'node:path';
const auth = Buffer.from('yunchan:ONVI2v4J#y').toString('base64');
const EXE_PATH = 'apps/desktop/release/1.0.0/D3RO-Voice-Setup-1.0.0-x64.exe';
async function uploadAsset() {
console.log('--- Fetching release ID for v1.0.0 ---');
const relRes = await fetch('https://git.chanpaca.net/api/v1/repos/yunchan/d3ro-voice/releases/tags/v1.0.0', {
headers: { 'Authorization': 'Basic ' + auth }
});
const relData = await relRes.json();
console.log('Release ID:', relData.id, relData.name);
if (!relData.id) {
console.error('Release not found');
return;
}
const fileBuffer = readFileSync(EXE_PATH);
console.log(`Uploading ${EXE_PATH} (${(fileBuffer.length / (1024*1024)).toFixed(1)} MB)...`);
const formData = new FormData();
formData.append('attachment', new Blob([fileBuffer]), 'D3RO-Voice-Setup-1.0.0-x64.exe');
const uploadRes = await fetch(`https://git.chanpaca.net/api/v1/repos/yunchan/d3ro-voice/releases/${relData.id}/assets?name=D3RO-Voice-Setup-1.0.0-x64.exe`, {
method: 'POST',
headers: {
'Authorization': 'Basic ' + auth,
},
body: formData
});
console.log('Upload HTTP Status:', uploadRes.status);
const uploadData = await uploadRes.json();
console.log('Upload Result:', uploadData);
}
uploadAsset().catch(console.error);

View file

@ -0,0 +1,229 @@
// scripts/verify-e2e-downloads-and-releases.js
// Comprehensive End-to-End Test for D3RO Voice Download Center, Binary Delivery, and Release Hub
const { chromium } = require('@playwright/test');
const path = require('path');
const fs = require('fs');
const http = require('http');
const crypto = require('crypto');
const OUTPUT_DIR = 'C:/Users/encep/.gemini/antigravity-cli/brain/3ab7ae82-5634-41d5-93a7-3c12c22503e2/screenshots/e2e_verification';
const EXPECTED_HASH = 'b0ac051443151a2e34e8192f1fcf795586bbafca6eb21f01a79170c079a53ba2';
function serveStatic(dir) {
return new Promise((resolve) => {
const server = http.createServer((req, res) => {
let reqPath = req.url.split('?')[0];
if (reqPath === '/' || reqPath === '') reqPath = '/index.html';
const filePath = path.join(dir, reqPath);
if (fs.existsSync(filePath) && fs.statSync(filePath).isFile()) {
const ext = path.extname(filePath).toLowerCase();
const mime = {
'.html': 'text/html',
'.js': 'application/javascript',
'.css': 'text/css',
'.svg': 'image/svg+xml',
'.exe': 'application/vnd.microsoft.portable-executable',
'.blockmap': 'application/octet-stream',
'.yml': 'text/yaml'
};
const stat = fs.statSync(filePath);
res.writeHead(200, {
'Content-Type': mime[ext] || 'application/octet-stream',
'Content-Length': stat.size
});
fs.createReadStream(filePath).pipe(res);
} else {
res.writeHead(404);
res.end('Not Found: ' + reqPath);
}
});
server.listen(0, '127.0.0.1', () => {
const port = server.address().port;
resolve({ server, port });
});
});
}
async function runE2E() {
if (!fs.existsSync(OUTPUT_DIR)) fs.mkdirSync(OUTPUT_DIR, { recursive: true });
const testResults = {
landingPageButtons: false,
downloadPageLoaded: false,
directBinaryDownload200: false,
sha256HashMatch: false,
forgejoReleaseVerified: false,
clientSideVerifierWorks: false,
evidenceScreenshots: []
};
console.log('========================================================');
console.log('🚀 STARTING RIGOROUS E2E VERIFICATION FOR D3RO VOICE');
console.log('========================================================\n');
// 1. Start static server serving site/dist (with public releases synced)
const siteDistDir = path.resolve(__dirname, '../site/dist');
const { server, port } = await serveStatic(siteDistDir);
const baseUrl = `http://127.0.0.1:${port}`;
console.log(`[TEST 1] Static Web Server started on ${baseUrl}`);
const browser = await chromium.launch({ channel: 'msedge', headless: true });
const context = await browser.newContext({
viewport: { width: 1440, height: 960 },
deviceScaleFactor: 2,
acceptDownloads: true
});
const page = await context.newPage();
// Test 1: Landing Page Download Buttons
console.log('\n[TEST 2] Verifying Landing Page Download CTA buttons...');
await page.goto(baseUrl, { waitUntil: 'networkidle' });
await page.waitForTimeout(1000);
const heroBtnHref = await page.getAttribute('a.glow-btn', 'href');
console.log(' -> Hero download button href:', heroBtnHref);
if (heroBtnHref === '/download.html' || heroBtnHref.includes('download')) {
testResults.landingPageButtons = true;
console.log(' ✓ PASS: Landing page button correctly targets /download.html (no github 404 placeholder)');
} else {
console.error(' ❌ FAIL: Invalid href:', heroBtnHref);
}
const landingShot = path.join(OUTPUT_DIR, '01_landing_page_verified.png');
await page.screenshot({ path: landingShot });
testResults.evidenceScreenshots.push(landingShot);
// Test 2: Navigate to Download Page & Inspect Auto-OS Detection
console.log('\n[TEST 3] Loading Download Center Page (/download.html)...');
await page.goto(`${baseUrl}/download.html`, { waitUntil: 'networkidle' });
await page.waitForTimeout(1500);
const osTitle = await page.textContent('#detectedOsTitle');
const downloadBtnText = await page.textContent('#downloadBtnText');
console.log(' -> Detected OS Title:', osTitle);
console.log(' -> Primary Action Button:', downloadBtnText);
if (osTitle.includes('Windows') && downloadBtnText.includes('Windows')) {
testResults.downloadPageLoaded = true;
console.log(' ✓ PASS: Auto-OS detection correctly identified Windows environment and rendered verified button');
}
const dlCenterShot = path.join(OUTPUT_DIR, '02_download_center_verified.png');
await page.screenshot({ path: dlCenterShot });
testResults.evidenceScreenshots.push(dlCenterShot);
// Test 3: Trigger real binary download & calculate byte-level SHA-256
console.log('\n[TEST 4] Triggering live binary download for D3RO-Voice-Setup-1.0.0-x64.exe...');
const [download] = await Promise.all([
page.waitForEvent('download'),
page.click('#primaryDownloadBtn')
]);
const downloadPath = path.join(OUTPUT_DIR, 'downloaded_installer_test.exe');
await download.saveAs(downloadPath);
const downloadedStat = fs.statSync(downloadPath);
const downloadedSizeMb = (downloadedStat.size / (1024 * 1024)).toFixed(2);
console.log(` -> Downloaded binary size: ${downloadedStat.size} bytes (${downloadedSizeMb} MB)`);
if (downloadedStat.size > 100 * 1024 * 1024) {
testResults.directBinaryDownload200 = true;
console.log(' ✓ PASS: Binary downloaded successfully via HTTP 200 (>100MB complete installer payload)');
} else {
console.error(' ❌ FAIL: Download size unexpectedly small:', downloadedStat.size);
}
// Verify SHA-256 hash of downloaded file
const fileBuffer = fs.readFileSync(downloadPath);
const calculatedHash = crypto.createHash('sha256').update(fileBuffer).digest('hex');
console.log(' -> Calculated SHA-256:', calculatedHash);
console.log(' -> Expected SHA-256: ', EXPECTED_HASH);
if (calculatedHash === EXPECTED_HASH) {
testResults.sha256HashMatch = true;
console.log(' ✓ PASS: Binary integrity 100% MATCH! Zero corruption or tampering.');
} else {
console.error(' ❌ FAIL: Hash mismatch!');
}
// Test 4: Live Client-Side Hash Verifier Simulation on the page
console.log('\n[TEST 5] Testing Client-Side WebCrypto Drag & Drop Verifier Widget...');
await page.setInputFiles('#fileVerifierInput', downloadPath);
await page.waitForTimeout(3000); // Allow WebCrypto subtle digest to compute
const verifyBadgeText = await page.textContent('#verifyBadge');
console.log(' -> Verifier Badge Output:', verifyBadgeText);
if (verifyBadgeText.includes('정상') || verifyBadgeText.includes('OFFICIAL MATCH')) {
testResults.clientSideVerifierWorks = true;
console.log(' ✓ PASS: Client-side UI verified binary with green check badge!');
}
const verifierShot = path.join(OUTPUT_DIR, '03_client_verifier_passed.png');
await page.screenshot({ path: verifierShot });
testResults.evidenceScreenshots.push(verifierShot);
// Test 5: Verify Remote Forgejo Git Server (https://git.chanpaca.net/yunchan/d3ro-voice/releases)
console.log('\n[TEST 6] Verifying Live Remote Forgejo Git Server (git.chanpaca.net)...');
try {
const auth = Buffer.from('yunchan:ONVI2v4J#y').toString('base64');
const apiRes = await fetch('https://git.chanpaca.net/api/v1/repos/yunchan/d3ro-voice/releases/tags/v1.0.0', {
headers: { 'Authorization': 'Basic ' + auth }
});
console.log(' -> Forgejo Release API Status:', apiRes.status);
if (apiRes.status === 200) {
const rel = await apiRes.json();
console.log(` -> Release Name: "${rel.name}", Tag: "${rel.tag_name}"`);
console.log(` -> Total Assets Attached: ${rel.assets.length}`);
if (rel.assets.length > 0) {
console.log(` -> Asset: ${rel.assets[0].name} (${(rel.assets[0].size / (1024*1024)).toFixed(1)} MB)`);
console.log(` -> Asset Download URL: ${rel.assets[0].browser_download_url}`);
testResults.forgejoReleaseVerified = true;
console.log(' ✓ PASS: Forgejo remote server release v1.0.0 is live with downloadable installer attached!');
}
}
} catch (err) {
console.error('Remote check error:', err);
}
// Capture Forgejo Release Page
console.log('\n[TEST 7] Capturing Live Forgejo Release UI...');
try {
await page.goto('https://git.chanpaca.net/user/login', { waitUntil: 'networkidle', timeout: 20000 });
await page.fill('input[name="user_name"]', 'yunchan');
await page.fill('input[name="password"]', 'ONVI2v4J#y');
await page.click('button[type="submit"]');
await page.waitForTimeout(3000);
await page.goto('https://git.chanpaca.net/yunchan/d3ro-voice/releases', { waitUntil: 'networkidle', timeout: 20000 });
await page.waitForTimeout(2000);
const forgejoShot = path.join(OUTPUT_DIR, '04_forgejo_releases_verified.png');
await page.screenshot({ path: forgejoShot, fullPage: true });
testResults.evidenceScreenshots.push(forgejoShot);
console.log(' ✓ Saved Forgejo Releases Screenshot:', forgejoShot);
} catch (e) {
console.warn('Forgejo UI capture warning:', e.message);
}
// Cleanup
fs.unlinkSync(downloadPath);
await browser.close();
server.close();
console.log('\n========================================================');
console.log('📊 FINAL E2E AUDIT SCORECARD:');
console.log('========================================================');
console.log('1. Landing Page Download Links: ', testResults.landingPageButtons ? '✅ 100% PASSED' : '❌ FAILED');
console.log('2. Download Center Rendering: ', testResults.downloadPageLoaded ? '✅ 100% PASSED' : '❌ FAILED');
console.log('3. Direct 102MB Binary Download: ', testResults.directBinaryDownload200 ? '✅ 100% PASSED' : '❌ FAILED');
console.log('4. SHA-256 Hash Integrity Match: ', testResults.sha256HashMatch ? '✅ 100% PASSED' : '❌ FAILED');
console.log('5. Client WebCrypto Verifier: ', testResults.clientSideVerifierWorks ? '✅ 100% PASSED' : '❌ FAILED');
console.log('6. Remote Forgejo Git v1.0.0 Asset:', testResults.forgejoReleaseVerified ? '✅ 100% PASSED' : '❌ FAILED');
console.log('========================================================\n');
fs.writeFileSync(path.join(OUTPUT_DIR, 'e2e_results.json'), JSON.stringify(testResults, null, 2));
}
runE2E().catch(console.error);