Managed Flask: app.py, index.html, CI workflow
Deploy drhider / validate (push) Waiting to run

This commit is contained in:
2026-07-11 16:07:22 +04:00
parent a455f9da7b
commit a89df864f9
4 changed files with 384 additions and 0 deletions
+209
View File
@@ -0,0 +1,209 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DrHider — обфускация документов</title>
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg">
<style>
:root {
--bg: #f5f5f5;
--card: #ffffff;
--border: #e0e0e0;
--text: #1a1a1a;
--muted: #888;
--brand: #2563eb;
--red: #ef4444;
--green: #22c55e;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font: 14px system-ui, sans-serif; color: var(--text); background: var(--bg); min-height: 100vh; }
.topbar {
background: var(--card); border-bottom: 1px solid var(--border);
padding: 0 24px; height: 52px; display: flex; align-items: center; gap: 12px;
font-weight: 600; font-size: 15px;
}
.content { max-width: 780px; margin: 28px auto; padding: 0 16px; }
.card {
background: var(--card); border-radius: 10px;
border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,.05);
overflow: hidden;
}
.card-header {
background: #fafafa; padding: 10px 16px;
font-weight: 600; font-size: 14px;
border-bottom: 1px solid var(--border);
}
.card-body { padding: 16px; }
.file-input-wrap { margin-bottom: 12px; }
.file-input-wrap input[type="file"] { width: 100%; font-size: 14px; }
.table-wrap {
border: 1px solid var(--border); border-radius: 6px;
overflow-y: auto; max-height: 60vh;
}
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th {
background: #fafafa; text-transform: uppercase; padding: 6px 10px;
border-right: 1px solid var(--border); text-align: left;
font-weight: 600; font-size: 11px; color: var(--muted);
}
td {
padding: 6px 10px; border-right: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
tr:hover td { background: rgba(37,99,235,.03); }
.name-cell { max-width: 400px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.num-cell { text-align: right; white-space: nowrap; }
.empty-row td { color: var(--muted); text-align: center; padding: 24px; }
.remove-btn {
cursor: pointer; color: #f87171; background: none; border: none;
padding: 2px 6px; font-size: 15px; line-height: 1;
}
.remove-btn:hover { color: var(--red); }
.footer-bar {
margin-top: 12px; display: flex; justify-content: space-between; align-items: center;
font-size: 13px; color: var(--muted);
}
.btn {
height: 34px; border-radius: 6px; padding: 0 16px; font-size: 13px;
font-family: inherit; cursor: pointer; border: 1px solid var(--border);
background: var(--card); color: var(--text);
display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-primary:hover { opacity: .9; }
.btn:disabled { opacity: .4; cursor: not-allowed; }
.status { margin-top: 12px; padding: 8px 12px; border-radius: 6px; font-size: 13px; display: none; }
.status.success { background: #dcfce7; color: #166534; display: block; }
.status.error { background: #fef2f2; color: #991b1b; display: block; }
.status.info { background: #eff6ff; color: #1e40af; display: block; }
</style>
</head>
<body>
<div class="topbar">
🛡️ DrHider — обфускация документов
<span style="font-weight:400;color:var(--muted);font-size:12px;margin-left:auto;">v{{ version }}</span>
</div>
<div class="content">
<div class="card">
<div class="card-header">Выбор файлов</div>
<div class="card-body">
<p style="color:var(--muted);margin-bottom:12px;font-size:13px;">
Загрузите документы (.docx, .xlsx, .pptx, .pdf, .txt).<br>
DrHider заменит все персональные данные, реквизиты компаний, телефоны, email на фиктивные значения.
</p>
<div class="file-input-wrap">
<input type="file" id="fileInput" multiple accept=".docx,.xlsx,.pptx,.pdf,.txt,.doc,.xls,.ppt">
</div>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>Имя</th>
<th style="width:90px;">Размер</th>
<th style="width:40px;"></th>
</tr>
</thead>
<tbody id="fileList">
<tr class="empty-row"><td colspan="3">Нет выбранных файлов</td></tr>
</tbody>
</table>
</div>
<div class="footer-bar">
<span id="fileCount">0 файлов</span>
<button class="btn btn-primary" id="uploadBtn" disabled onclick="uploadFiles()">
🛡️ Обфусцировать
</button>
</div>
<div class="status" id="status"></div>
</div>
</div>
</div>
<script>
const fileInput = document.getElementById('fileInput');
const fileList = document.getElementById('fileList');
const fileCount = document.getElementById('fileCount');
const uploadBtn = document.getElementById('uploadBtn');
const status = document.getElementById('status');
let selectedFiles = [];
function formatSize(bytes) {
if (bytes < 1024) return bytes + ' B';
if (bytes < 1024 * 1024) return (bytes / 1024).toFixed(1) + ' KB';
return (bytes / (1024 * 1024)).toFixed(1) + ' MB';
}
function renderFiles() {
if (selectedFiles.length === 0) {
fileList.innerHTML = '<tr class="empty-row"><td colspan="3">Нет выбранных файлов</td></tr>';
} else {
fileList.innerHTML = selectedFiles.map((f, i) =>
'<tr>' +
'<td class="name-cell">' + f.name + '</td>' +
'<td class="num-cell">' + formatSize(f.size) + '</td>' +
'<td><button class="remove-btn" onclick="removeFile(' + i + ')">✕</button></td>' +
'</tr>'
).join('');
}
fileCount.textContent = selectedFiles.length + ' файлов';
uploadBtn.disabled = selectedFiles.length === 0;
}
function removeFile(i) {
selectedFiles.splice(i, 1);
// Пересоздаём FileList через DataTransfer
const dt = new DataTransfer();
selectedFiles.forEach(f => dt.items.add(f));
fileInput.files = dt.files;
renderFiles();
}
fileInput.addEventListener('change', () => {
selectedFiles = Array.from(fileInput.files);
renderFiles();
});
function uploadFiles() {
if (selectedFiles.length === 0) return;
status.className = 'status info';
status.textContent = 'Обфускация...';
uploadBtn.disabled = true;
const formData = new FormData();
selectedFiles.forEach(f => formData.append('files', f));
fetch('/api/drhider', { method: 'POST', body: formData })
.then(res => {
if (!res.ok) return res.json().then(e => { throw new Error(e.error || 'Ошибка сервера'); });
const disp = res.headers.get('Content-Disposition') || '';
const nameMatch = disp.match(/filename="?(.+?)"?$/);
const filename = nameMatch ? nameMatch[1] : 'drhider_output.zip';
return res.blob().then(blob => ({ blob, filename }));
})
.then(({ blob, filename }) => {
status.className = 'status success';
status.textContent = 'Готово! Скачивание началось.';
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = filename;
a.click();
URL.revokeObjectURL(url);
uploadBtn.disabled = false;
})
.catch(err => {
status.className = 'status error';
status.textContent = 'Ошибка: ' + err.message;
uploadBtn.disabled = false;
});
}
</script>
</body>
</html>