v1.0.9 upd connections instruct and upd backend realisation

This commit is contained in:
2026-09-19 15:54:26 +03:00
parent 7de197fa81
commit db9be1a90a
4 changed files with 276 additions and 406 deletions

View File

@ -1,22 +1,47 @@
// lib/common/services/network.service.js
//
// Определение сети, в которой находится устройство.
// Проверка подключения через эндпоинты бэкенда:
//
// - внутри локальной сети принтера (Wi-Fi UnitPrintLocal)
// домен unitprint.ru резолвится на 192.168.20.1 — локальный сервер печати;
// - из интернета домен отвечает публичным адресом 95.165.135.233.
// - /api/is_server — публичный сервер unitprint.ru.
// Отвечает {"is_server":true} → интернет есть, скан доступен;
// - local.unitprint.ru/api/is_local — локальный сервер печати.
// Отвечает {"is_local":true} → устройство в Wi-Fi принтера (UnitPrintLocal),
// печать доступна.
//
// Сайт всегда отдаётся с unitprint.ru, поэтому проверка локалки ходит
// на отдельный хост local.unitprint.ru: вне локальной сети принтера
// он просто недоступен.
//
// Скан работает только через интернет, печать — только через локальную сеть.
export const DOMAIN = 'unitprint.ru';
export const PUBLIC_IP = '95.165.135.233';
export const LOCAL_IP = '192.168.20.1';
export const LOCAL_HOST = 'local.unitprint.ru';
export const LOCAL_WIFI_NAME = 'UnitPrintLocal';
/**
* Сетевая доступность URL.
* mode: 'no-cors' — чтобы CORS не мешал: важен сам факт ответа сервера,
* а не содержимое ответа. Любой HTTP-ответ = хост доступен.
* GET с таймаутом, читаем JSON.
* @returns {Promise<any|null>} null — если хост недоступен или ошибка.
*/
async function getJson(url, timeoutMs = 4000) {
if (typeof fetch === 'undefined') return null;
const controller = new AbortController();
const timer = setTimeout(() => controller.abort(), timeoutMs);
try {
const res = await fetch(url, {
method: 'GET',
cache: 'no-store',
signal: controller.signal,
});
if (!res.ok) return null;
return await res.json();
} catch {
return null;
} finally {
clearTimeout(timer);
}
}
/**
* Доступность хоста в режиме 'no-cors': CORS не мешает, важен сам факт ответа.
*/
async function canReach(url, timeoutMs = 4000) {
if (typeof fetch === 'undefined') return false;
@ -37,33 +62,27 @@ async function canReach(url, timeoutMs = 4000) {
}
}
/** Доступен ли локальный сервер печати (192.168.20.1) */
export async function isLocalServerReachable() {
/**
* Устройство в локальной сети принтера:
* local.unitprint.ru/api/is_local отвечает {"is_local":true}.
*/
export async function isLocalNetwork() {
const ts = Date.now();
if (await canReach(`http://${LOCAL_IP}/api/version?ping=${ts}`, 3000)) return true;
return canReach(`https://${LOCAL_IP}/api/version?ping=${ts}`, 3000);
}
const httpsUrl = `https://${LOCAL_HOST}/api/is_local?ping=${ts}`;
const httpUrl = `http://${LOCAL_HOST}/api/is_local?ping=${ts}`;
/** Есть ли интернет (домен отвечает публичным сервером) */
export function isInternetReachable() {
return canReach(`https://${DOMAIN}/api/version?ping=${Date.now()}`, 5000);
const data = (await getJson(httpsUrl, 3000)) ?? (await getJson(httpUrl, 3000));
if (data) return data.is_local === true;
// JSON не читается (CORS / самоподписанный сертификат) —fallback:
// сам факт ответа local.unitprint.ru означает, что мы в локалке.
return canReach(httpsUrl, 3000);
}
/**
* Определяет текущий режим сети.
* @returns {Promise<'local' | 'internet' | 'offline'>}
* - 'local' → устройство в сети принтера (домен → 192.168.20.1)
* - 'internet' → устройство в интернете (домен → 95.165.135.233)
* - 'offline' → нет ни того, ни другого
* Есть интернет: публичный сервер отвечает на /api/is_server.
*/
export async function detectNetwork() {
const [local, internet] = await Promise.all([
isLocalServerReachable(),
isInternetReachable(),
]);
// Локальная сеть в приоритете: если 192.168.20.1 доступен,
// значит домен сейчас указывает на локальный сервер печати.
if (local) return 'local';
if (internet) return 'internet';
return 'offline';
export async function isServerReachable() {
const data = await getJson(`/api/is_server?ping=${Date.now()}`, 5000);
return data?.is_server === true;
}

View File

@ -1,68 +1,58 @@
<!--
lib/common/ui/NetworkGate.svelte
Экран-блокиратор: не пускает дальше, пока устройство не окажется в нужной сети.
mode:
- 'need-internet' — нужен интернет (домен → 95.165.135.233). Используется в скане.
- 'need-local' — нужна локальная сеть принтера (домен → 192.168.20.1). Перед печатью.
Как только сеть появилась — показывает «Подключено» и вызывает onReady().
lib/common/ui/NetworkGate.svelte
Экран-блокиратор: не пускает дальше, пока устройство не окажется в нужной сети.
mode:
- 'need-internet' — нужен интернет (/api/is_server отвечает true). Используется в скане.
- 'need-local' — нужна локальная сеть принтера (local.unitprint.ru/api/is_local отвечает true). Перед печатью.
Сам опрашивает подключение; как только оно появилось — показывает «Подключено» и вызывает onReady().
-->
<script>
import { onMount } from 'svelte';
import { detectNetwork, LOCAL_WIFI_NAME } from '$lib/common/services/network.service.js';
import { onMount } from 'svelte';
import { isLocalNetwork, isServerReachable, LOCAL_WIFI_NAME } from '$lib/common/services/network.service.js';
let {
let {
/** 'need-internet' | 'need-local' */
mode,
onReady = () => {},
onBack = () => {},
pollMs = 3000,
} = $props();
} = $props();
/** 'checking' — первая проверка, 'waiting' — ждём сеть, 'success' — сеть появилась */
let status = $state('checking');
let copySuccess = $state(false);
let success = $state(false);
let busy = false;
let finished = false;
let timer = null;
let busy = false;
let finished = false;
let timer = null;
const isLocalMode = $derived(mode === 'need-local');
const isLocalMode = $derived(mode === 'need-local');
async function check() {
async function check() {
if (busy || finished) return;
busy = true;
try {
const net = await detectNetwork();
const ok = isLocalMode ? net === 'local' : net === 'internet';
const ok = isLocalMode ? await isLocalNetwork() : await isServerReachable();
if (ok) {
finished = true;
status = 'success';
success = true;
stopPoll();
setTimeout(() => onReady?.(), 900);
} else if (status === 'checking') {
status = 'waiting';
startPoll();
}
} finally {
busy = false;
}
}
}
function startPoll() {
function startPoll() {
stopPoll();
timer = setInterval(check, pollMs);
}
function stopPoll() {
}
function stopPoll() {
if (timer) clearInterval(timer);
timer = null;
}
}
onMount(() => {
onMount(() => {
check();
startPoll();
const onVis = () => {
if (document.visibilityState === 'visible') check();
};
@ -71,57 +61,16 @@ onMount(() => {
document.removeEventListener('visibilitychange', onVis);
stopPoll();
};
});
/* ── копирование имени сети ── */
async function copyWifiName() {
let success = false;
if (navigator.clipboard && window.isSecureContext) {
try {
await navigator.clipboard.writeText(LOCAL_WIFI_NAME);
success = true;
} catch (err) {
console.warn('Clipboard API failed:', err);
}
}
if (!success) {
try {
const textArea = document.createElement('textarea');
textArea.value = LOCAL_WIFI_NAME;
textArea.style.position = 'fixed';
textArea.style.left = '-9999px';
textArea.style.opacity = '0';
document.body.appendChild(textArea);
textArea.focus();
textArea.select();
const deprecated = /** @type {any} */ (document).execCommand;
if (deprecated && deprecated.call(document, 'copy')) success = true;
document.body.removeChild(textArea);
} catch (err) {
console.error('Fallback copy failed:', err);
}
}
if (success) {
copySuccess = true;
setTimeout(() => (copySuccess = false), 2000);
}
}
});
</script>
<div class="gate-container">
<header class="gate-header">
<button type="button" class="back-btn" onclick={() => onBack?.()}>←</button>
<h1>{isLocalMode ? 'Подключение к принтеру' : 'Нет интернета'}</h1>
</header>
<main class="gate-content">
{#if status === 'checking'}
<div class="state-block">
<div class="spinner big"></div>
<p class="state-title">Проверка подключения…</p>
<p class="state-sub">Определяем, в какой вы сети</p>
</div>
{:else if status === 'success'}
{#if success}
<div class="state-block">
<div class="success-icon">
<svg width="42" height="42" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="20 6 9 17 4 12"></polyline></svg>
@ -149,22 +98,21 @@ async function copyWifiName() {
<div class="gate-info">
{#if isLocalMode}
<h2>Нет связи с принтером</h2>
<h2>Подключитесь к принтеру</h2>
<p>Печать доступна только в локальной сети принтера. Подключите устройство к сети:</p>
{:else}
<h2>Необходимо подключение к интернету</h2>
<p>Убедитесь, что вы отключены от локальной сети Wi-Fi принтера.</p>
<p>Сканирование доступно только онлайн</p>
{/if}
</div>
<div class="steps">
{#if isLocalMode}
<div class="steps-card">
<div class="step">
<span class="step-num">1</span>
<div class="step-body">
<span class="step-body">
<span class="step-text">Подключитесь к Wi-Fi</span>
<div class="wifi-chip-row">
<span class="wifi-chip">
<span class="wifi-name">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M5 12.55a11 11 0 0 1 14.08 0"></path>
<path d="M8.53 16.11a6 6 0 0 1 6.95 0"></path>
@ -172,18 +120,7 @@ async function copyWifiName() {
</svg>
{LOCAL_WIFI_NAME}
</span>
<button
type="button"
class="copy-btn"
class:success={copySuccess}
onclick={copyWifiName}
title={copySuccess ? 'Скопировано' : 'Скопировать название сети'}
aria-label={copySuccess ? 'Скопировано' : 'Скопировать название сети'}
>
{copySuccess ? '✓' : '📋'}
</button>
</div>
</div>
</span>
</div>
<div class="step">
<span class="step-num">2</span>
@ -193,31 +130,19 @@ async function copyWifiName() {
<span class="step-num">3</span>
<span class="step-text">Отключите VPN</span>
</div>
{:else}
<div class="step">
<span class="step-num">1</span>
<span class="step-text">Отключитесь от сети <strong>{LOCAL_WIFI_NAME}</strong></span>
</div>
<div class="step">
<span class="step-num">2</span>
<span class="step-text">Включите мобильный интернет или подключитесь к другому Wi-Fi</span>
</div>
{/if}
</div>
<div class="waiting-row">
<div class="spinner small"></div>
<span>{isLocalMode ? 'Ожидание подключения к принтеру…' : 'Ожидание интернета…'}</span>
<span>Ожидание подключения…</span>
</div>
<p class="auto-hint">Как только подключение появится — продолжим автоматически</p>
<button type="button" class="retry-btn" onclick={check}>Проверить снова</button>
{/if}
</main>
</div>
<style>
.gate-container {
.gate-container {
width: 100%;
min-height: 100dvh;
display: flex;
@ -225,14 +150,13 @@ async function copyWifiName() {
background: radial-gradient(120% 60% at 50% -10%, rgba(99, 102, 241, 0.18) 0%, transparent 60%);
font-family: system-ui, -apple-system, sans-serif;
color: #f5f7fa;
}
.gate-header {
}
.gate-header {
padding: 24px 20px 8px;
display: flex;
align-items: center;
position: relative;
}
.back-btn {
}
.back-btn {
background: none;
border: none;
color: #6366f1;
@ -240,21 +164,11 @@ async function copyWifiName() {
font-weight: 600;
cursor: pointer;
padding: 8px 4px;
margin-right: auto;
min-height: 44px;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}
.gate-header h1 {
margin: 0;
font-size: 28px;
font-weight: 700;
position: absolute;
left: 50%;
transform: translateX(-50%);
white-space: nowrap;
}
.gate-content {
}
.gate-content {
flex: 1;
width: 100%;
max-width: 520px;
@ -265,10 +179,9 @@ async function copyWifiName() {
flex-direction: column;
align-items: center;
gap: 22px;
}
/* ── состояния checking / success ── */
.state-block {
}
/* ── состояние success ── */
.state-block {
flex: 1;
display: flex;
flex-direction: column;
@ -277,11 +190,11 @@ async function copyWifiName() {
gap: 14px;
text-align: center;
padding: 40px 0;
}
.state-title { margin: 0; font-size: 19px; font-weight: 700; color: #f5f7fa; }
.state-title.ok { color: #4ade80; }
.state-sub { margin: 0; font-size: 14px; color: #8b93a1; }
.success-icon {
}
.state-title { margin: 0; font-size: 19px; font-weight: 700; color: #f5f7fa; }
.state-title.ok { color: #4ade80; }
.state-sub { margin: 0; font-size: 14px; color: #8b93a1; }
.success-icon {
width: 88px;
height: 88px;
border-radius: 50%;
@ -291,14 +204,13 @@ async function copyWifiName() {
box-shadow: 0 16px 38px -12px rgba(34, 197, 94, 0.55);
color: #fff;
animation: pop-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop-in {
}
@keyframes pop-in {
from { transform: scale(0.5); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}
/* ── состояние waiting ── */
.icon-wrap {
}
/* ── состояние ожидания ── */
.icon-wrap {
width: 92px;
height: 92px;
border-radius: 28px;
@ -306,32 +218,32 @@ async function copyWifiName() {
place-items: center;
color: #fff;
margin-top: 6px;
}
.icon-wrap.local {
}
.icon-wrap.local {
background: linear-gradient(135deg, #5b8cff 0%, #38c6ff 100%);
box-shadow: 0 16px 38px -12px rgba(72, 150, 255, 0.55);
}
.icon-wrap.internet {
}
.icon-wrap.internet {
background: linear-gradient(135deg, #34d399 0%, #2dd4bf 100%);
box-shadow: 0 16px 38px -12px rgba(52, 211, 153, 0.55);
}
.gate-info { text-align: center; display: flex; flex-direction: column; gap: 8px; }
.gate-info h2 { margin: 0; font-size: 21px; font-weight: 700; letter-spacing: -0.01em; }
.gate-info p { margin: 0; font-size: 14px; line-height: 1.5; color: #9ca3af; }
/* ── шаги ── */
.steps { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.step {
}
.gate-info { text-align: center; display: flex; flex-direction: column; gap: 8px; }
.gate-info h2 { margin: 0; font-size: 21px; font-weight: 700; letter-spacing: -0.01em; }
.gate-info p { margin: 0; font-size: 14px; line-height: 1.5; color: #9ca3af; }
/* ── единый блок шагов ── */
.steps-card {
width: 100%;
display: flex;
align-items: center;
gap: 14px;
flex-direction: column;
gap: 12px;
padding: 14px 16px;
border-radius: 16px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.08);
text-align: left;
}
.step-num {
}
.step { display: flex; align-items: center; gap: 14px; }
.step-num {
width: 26px;
height: 26px;
border-radius: 50%;
@ -344,57 +256,22 @@ async function copyWifiName() {
color: #a5b4fc;
font-size: 13px;
font-weight: 700;
}
.step-text { font-size: 15px; line-height: 1.45; color: #e5e9f0; }
.step-text strong { color: #fff; }
.step-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
/* ── плашка Wi-Fi + копирование ── */
.wifi-chip-row { display: flex; align-items: center; gap: 10px; }
.wifi-chip {
flex: 1;
min-width: 0;
display: flex;
}
.step-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.step-text { font-size: 15px; line-height: 1.45; color: #e5e9f0; }
/* имя Wi-Fi без рамки, просто иконка + текст */
.wifi-name {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 12px 14px;
border-radius: 12px;
background: rgba(91, 140, 255, 0.14);
border: 1px solid rgba(91, 140, 255, 0.45);
color: #fff;
font-size: 16px;
color: #7db4ff;
font-size: 15px;
font-weight: 700;
letter-spacing: 0.01em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.wifi-chip svg { flex-shrink: 0; color: #7db4ff; }
.copy-btn {
width: 46px;
height: 46px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
background: rgba(99, 102, 241, 0.2);
border: 1px solid rgba(99, 102, 241, 0.4);
border-radius: 12px;
color: #fff;
font-size: 20px;
cursor: pointer;
transition: all 0.2s ease;
padding: 0;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}
.copy-btn:hover { background: rgba(99, 102, 241, 0.35); border-color: #6366f1; }
.copy-btn:active { transform: scale(0.95); }
.copy-btn.success { background: rgba(34, 197, 94, 0.25); border-color: rgba(34, 197, 94, 0.5); }
/* ── ожидание ── */
.waiting-row {
}
.wifi-name svg { flex-shrink: 0; }
/* ── ожидание ── */
.waiting-row {
display: flex;
align-items: center;
gap: 10px;
@ -402,43 +279,17 @@ async function copyWifiName() {
color: #8b93a1;
font-size: 14px;
font-weight: 600;
}
.auto-hint {
margin: -12px 0 0;
text-align: center;
color: rgba(139, 147, 161, 0.6);
font-size: 12px;
line-height: 1.4;
}
.retry-btn {
width: 100%;
padding: 16px 24px;
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.14);
background: rgba(255, 255, 255, 0.06);
color: #f5f7fa;
font-size: 16px;
font-weight: 700;
cursor: pointer;
transition: background 0.2s ease, border-color 0.2s ease;
touch-action: manipulation;
-webkit-tap-highlight-color: transparent;
}
.retry-btn:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.24); }
/* ── спиннер ── */
.spinner {
}
/* ── спиннер ── */
.spinner {
border-radius: 50%;
border: 3px solid rgba(255, 255, 255, 0.12);
border-top-color: #6366f1;
animation: gate-spin 0.8s linear infinite;
}
.spinner.big { width: 46px; height: 46px; }
.spinner.small { width: 18px; height: 18px; border-width: 2px; }
@keyframes gate-spin { to { transform: rotate(360deg); } }
@media (max-width: 380px) {
.gate-header h1 { font-size: 22px; }
}
.spinner.small { width: 18px; height: 18px; border-width: 2px; }
@keyframes gate-spin { to { transform: rotate(360deg); } }
@media (max-width: 380px) {
.gate-info h2 { font-size: 19px; }
}
}
</style>

View File

@ -205,5 +205,5 @@
<div class="version">
<span>v{backendVersion}</span>
<span>v1.0.8</span>
<span>v1.0.9</span>
</div>

View File

@ -7,7 +7,7 @@
import PaymentPage from '$lib/common/ui/PaymentPage.svelte';
import { plFiles, plCopies } from '$lib/common/utils/pricing.util.js';
import NetworkGate from '$lib/common/ui/NetworkGate.svelte';
import { detectNetwork } from '$lib/common/services/network.service.js';
import { isLocalNetwork } from '$lib/common/services/network.service.js';
let { onBack = () => {} } = $props();
const store = createPrintStore();
@ -47,7 +47,7 @@
async function handleConfirmPayment() {
if (printNetGate === 'checking') return;
printNetGate = 'checking';
const net = await detectNetwork();
const net = await isLocalNetwork();
if (net === 'local') {
printNetGate = null;
store.submitPrint();
@ -77,7 +77,7 @@
<div class="page-container">
<div class="net-checking">
<div class="net-spinner"></div>
<p>Проверка подключения к принтеру</p>
<p>Проверка подключения…</p>
</div>
</div>
{:else}