Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a22662f11b | ||
|
|
75531a9ec3 | ||
|
|
e6ab2667c9 | ||
|
|
3a38b3f7fa | ||
|
|
b69cc4bc4b | ||
|
|
4b7b2bc5c6 | ||
|
|
f6af141f56 |
@@ -24,6 +24,36 @@ jobs:
|
|||||||
- name: Build project
|
- name: Build project
|
||||||
run: npm run build
|
run: npm run build
|
||||||
|
|
||||||
|
- name: Create Gitea Release
|
||||||
|
uses: actions/gitea-release-action@v1
|
||||||
|
with:
|
||||||
|
release_name: ${{ gitea.ref_name }}
|
||||||
|
release_notes: |
|
||||||
|
## Релиз ${{ gitea.ref_name }}
|
||||||
|
|
||||||
|
${{ (github.event.head_commit.message != '' && format('📝 {0}', github.event.head_commit.message)) || '' }}
|
||||||
|
|
||||||
|
### 📦 Что изменилось
|
||||||
|
${{ github.event.head_commit.message || 'Автоматический релиз через CI/CD' }}
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 🔧 Технические детали
|
||||||
|
- **Тег:** `${{ gitea.ref_name }}`
|
||||||
|
- **Ветка:** `${{ gitea.ref }}`
|
||||||
|
- **Автор:** ${{ gitea.actor }}
|
||||||
|
|
||||||
|
### 🚀 Деплой
|
||||||
|
- ✅ Сервер обновлён автоматически
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
> Релиз создан автоматически через Gitea Actions
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
env:
|
||||||
|
GITEA_API_KEY: ${{ secrets.ACCESS_TOKEN }}
|
||||||
|
|
||||||
- name: Install SSH key
|
- name: Install SSH key
|
||||||
uses: webfactory/ssh-agent@v0.9.0
|
uses: webfactory/ssh-agent@v0.9.0
|
||||||
with:
|
with:
|
||||||
|
|||||||
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "uvpn.shop",
|
"name": "frontend",
|
||||||
"version": "0.8.1",
|
"version": "0.9.2",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
+162
-52
@@ -1,45 +1,75 @@
|
|||||||
<template>
|
<template>
|
||||||
<section class="px-6 py-12 max-w-7xl mx-auto">
|
<section class="px-6 py-20 md:px-12 max-w-7xl mx-auto">
|
||||||
<h2 class="text-2xl font-bold mb-6">🌍 Статус серверов</h2>
|
<h2 class="text-3xl md:text-4xl font-bold text-center mb-14">
|
||||||
|
Статус серверов
|
||||||
|
</h2>
|
||||||
|
|
||||||
<div v-if="loading" class="flex justify-center py-8">
|
<div class="flex justify-end mb-4">
|
||||||
<div class="animate-spin rounded-full h-8 w-8 border-b-2 border-blue-600"></div>
|
<button
|
||||||
</div>
|
@click="refreshData"
|
||||||
|
:disabled="loading"
|
||||||
<p v-else-if="error" class="text-red-500">{{ error }}</p>
|
class="px-4 py-2 bg-blue-600 hover:bg-blue-700 text-white rounded-lg text-sm font-medium transition disabled:opacity-50 disabled:cursor-not-allowed flex items-center gap-2"
|
||||||
|
|
||||||
<div v-else class="grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-4 gap-3">
|
|
||||||
<div
|
|
||||||
v-for="node in nodes"
|
|
||||||
:key="node.name"
|
|
||||||
class="bg-white dark:bg-gray-900 rounded-lg p-3 border text-sm"
|
|
||||||
:class="node.isOnline ? 'border-green-400' : 'border-red-400 opacity-60'"
|
|
||||||
>
|
>
|
||||||
<div class="flex items-center gap-1.5 mb-1">
|
<RefreshCw :size="16" :class="{ 'animate-spin': loading }" />
|
||||||
|
{{ loading ? 'Обновление...' : 'Обновить все' }}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="loading && !hosts.length" class="flex justify-center py-12">
|
||||||
|
<div class="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-600"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p v-else-if="error" class="text-center text-red-500 py-12">{{ error }}</p>
|
||||||
|
|
||||||
|
<div v-else class="space-y-2 max-w-3xl mx-auto">
|
||||||
|
<div
|
||||||
|
v-for="host in sortedHosts"
|
||||||
|
:key="host.address"
|
||||||
|
class="flex items-center justify-between bg-white dark:bg-gray-900 rounded-xl px-4 py-2.5 border transition hover:shadow-md"
|
||||||
|
:class="host.isOnline ? 'border-green-500/30' : 'border-red-500/30 opacity-60'"
|
||||||
|
>
|
||||||
|
<div class="flex items-center gap-3">
|
||||||
<img
|
<img
|
||||||
v-if="node.country_code.toLowerCase()"
|
v-if="host.countryCode"
|
||||||
:src="`https://cdn.jsdelivr.net/npm/flag-icons@7.2.3/flags/4x3/${node.country_code.toLowerCase()}.svg`"
|
:src="`https://cdn.jsdelivr.net/npm/flag-icons@7.2.3/flags/4x3/${host.countryCode}.svg`"
|
||||||
class="h-3.5 w-auto"
|
class="h-5 w-auto rounded-sm"
|
||||||
/>
|
/>
|
||||||
<span class="font-semibold text-gray-800 dark:text-white">{{ node.name }}</span>
|
<span class="font-semibold text-gray-800 dark:text-white">{{ host.name }}</span>
|
||||||
<span class="ml-auto text-[10px] px-1.5 py-0.5 rounded-full font-medium"
|
<span
|
||||||
:class="node.isOnline ? 'bg-green-100 text-green-700' : 'bg-red-100 text-red-700'">
|
class="text-[10px] px-2 py-0.5 rounded-full font-medium"
|
||||||
{{ node.isOnline ? 'online' : 'offline' }}
|
:class="host.isOnline ? 'bg-green-100 text-green-700' : 'bg-red-100 text-red-700'"
|
||||||
|
>
|
||||||
|
{{ host.isOnline ? 'online' : 'offline' }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex justify-between text-gray-500 dark:text-gray-400 text-xs">
|
|
||||||
<span>👤 {{ node.users_online }}</span>
|
<div class="flex items-center gap-4">
|
||||||
<span>⏱ {{ formatUptime(node.uptime) }}</span>
|
<span
|
||||||
<span v-if="node.ping !== undefined && node.ping !== null" class="font-mono font-semibold"
|
v-if="host.ping !== undefined && host.ping !== null"
|
||||||
|
class="font-mono font-semibold flex items-center gap-1 min-w-[60px] justify-end"
|
||||||
:class="{
|
:class="{
|
||||||
'text-green-600': node.ping < 50,
|
'text-green-600': host.ping < 200,
|
||||||
'text-yellow-600': node.ping >= 50 && node.ping < 150,
|
'text-yellow-600': host.ping >= 200 && host.ping < 500,
|
||||||
'text-orange-600': node.ping >= 150 && node.ping < 300,
|
'text-red-600': host.ping >= 500,
|
||||||
'text-red-600': node.ping >= 300
|
}"
|
||||||
}">
|
>
|
||||||
{{ node.ping }}ms
|
<Wifi :size="14" />
|
||||||
|
{{ host.ping }}ms
|
||||||
</span>
|
</span>
|
||||||
<span v-else class="text-gray-300">⏳</span>
|
<span v-else class="text-gray-300 min-w-[60px] text-right">—</span>
|
||||||
|
|
||||||
|
<button
|
||||||
|
@click="pingSingleHost(host)"
|
||||||
|
:disabled="host.pinging"
|
||||||
|
class="text-xs px-3 py-1 rounded-lg transition font-medium"
|
||||||
|
:class="[
|
||||||
|
host.isOnline && !host.pinging
|
||||||
|
? 'bg-gray-200 dark:bg-gray-700 text-gray-700 dark:text-gray-300 hover:bg-gray-300 dark:hover:bg-gray-600'
|
||||||
|
: 'bg-gray-100 dark:bg-gray-800 text-gray-400 cursor-not-allowed'
|
||||||
|
]"
|
||||||
|
>
|
||||||
|
{{ host.pinging ? '⏳' : 'Пинг' }}
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -47,35 +77,109 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted, onUnmounted } from 'vue'
|
import { ref, computed, onMounted, onUnmounted } from 'vue'
|
||||||
|
import { Wifi, RefreshCw } from '@lucide/vue'
|
||||||
|
import { getAllCountries } from '@tw-labs/countries'
|
||||||
|
|
||||||
const nodes = ref([])
|
const hosts = ref([])
|
||||||
const loading = ref(true)
|
const loading = ref(true)
|
||||||
const error = ref(null)
|
const error = ref(null)
|
||||||
let interval = null
|
let interval = null
|
||||||
|
|
||||||
const formatUptime = (s) => {
|
const countriesList = getAllCountries()
|
||||||
if (!s) return '0м'
|
|
||||||
const d = Math.floor(s/86400), h = Math.floor((s%86400)/3600), m = Math.floor((s%3600)/60)
|
// Поиск страны по первому слову в названии
|
||||||
return d>0 ? `${d}д ${h}ч` : h>0 ? `${h}ч ${m}м` : `${m}м`
|
const findCountryByFirstWord = (name) => {
|
||||||
|
if (!name) return null
|
||||||
|
|
||||||
|
// Берём первое слово из названия
|
||||||
|
const firstWord = name.split(' ')[0]
|
||||||
|
if (!firstWord) return null
|
||||||
|
|
||||||
|
// Ищем точное совпадение
|
||||||
|
const exact = countriesList.find(c =>
|
||||||
|
c.label.toLowerCase() === firstWord.toLowerCase()
|
||||||
|
)
|
||||||
|
if (exact) return exact
|
||||||
|
|
||||||
|
// Ищем частичное совпадение
|
||||||
|
const partial = countriesList.find(c =>
|
||||||
|
firstWord.toLowerCase().includes(c.label.toLowerCase()) ||
|
||||||
|
c.label.toLowerCase().includes(firstWord.toLowerCase())
|
||||||
|
)
|
||||||
|
return partial || null
|
||||||
}
|
}
|
||||||
|
|
||||||
const pingNode = (node) => new Promise(resolve => {
|
// Сортировка по пингу
|
||||||
const start = performance.now()
|
const sortedHosts = computed(() => {
|
||||||
const ws = new WebSocket(`wss://${node.ip}:${node.port}`)
|
return [...hosts.value].sort((a, b) => {
|
||||||
const timer = setTimeout(() => { ws.close(); resolve(null) }, 3000)
|
if (a.ping === null && b.ping === null) return 0
|
||||||
ws.onopen = () => { clearTimeout(timer); resolve(Math.round(performance.now()-start)); ws.close() }
|
if (a.ping === null) return 1
|
||||||
ws.onerror = () => { clearTimeout(timer); resolve(null) }
|
if (b.ping === null) return -1
|
||||||
|
return a.ping - b.ping
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
const fetchNodes = async () => {
|
// Пинг одного хоста
|
||||||
|
const pingSingleHost = async (host) => {
|
||||||
|
if (host.pinging || !host.isOnline) return
|
||||||
|
host.pinging = true
|
||||||
|
host.ping = null
|
||||||
|
|
||||||
|
const result = await pingHost(host)
|
||||||
|
host.ping = result
|
||||||
|
host.pinging = false
|
||||||
|
}
|
||||||
|
|
||||||
|
// Пинг через fetch
|
||||||
|
const pingHost = async (host) => {
|
||||||
|
const url = `https://${host.address}:${host.port}`
|
||||||
|
const start = performance.now()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const res = await fetch('/api/v1/nodes')
|
await fetch(url, {
|
||||||
|
method: 'HEAD',
|
||||||
|
mode: 'no-cors',
|
||||||
|
cache: 'no-cache',
|
||||||
|
signal: AbortSignal.timeout(5000),
|
||||||
|
})
|
||||||
|
return Math.round(performance.now() - start)
|
||||||
|
} catch {
|
||||||
|
return Math.round(performance.now() - start)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Пинг всех хостов
|
||||||
|
const pingAllHosts = async () => {
|
||||||
|
const pings = await Promise.all(
|
||||||
|
hosts.value.map(async (h) => {
|
||||||
|
if (!h.isOnline) return null
|
||||||
|
return await pingHost(h)
|
||||||
|
})
|
||||||
|
)
|
||||||
|
hosts.value.forEach((h, i) => {
|
||||||
|
if (h.isOnline) h.ping = pings[i]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const fetchHosts = async () => {
|
||||||
|
try {
|
||||||
|
const res = await fetch('/api/v1/hosts')
|
||||||
if (!res.ok) throw new Error()
|
if (!res.ok) throw new Error()
|
||||||
const data = await res.json()
|
const data = await res.json()
|
||||||
nodes.value = data.map(n => ({ ...n, isOnline: true, ping: null }))
|
|
||||||
const pings = await Promise.all(nodes.value.map(n => pingNode(n)))
|
hosts.value = data.map((h) => {
|
||||||
nodes.value.forEach((n, i) => n.ping = pings[i])
|
const country = findCountryByFirstWord(h.name)
|
||||||
|
return {
|
||||||
|
...h,
|
||||||
|
countryCode: country?.code?.toLowerCase() || null,
|
||||||
|
isOnline: true,
|
||||||
|
ping: null,
|
||||||
|
pinging: false,
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
await pingAllHosts()
|
||||||
} catch {
|
} catch {
|
||||||
error.value = 'Ошибка загрузки'
|
error.value = 'Ошибка загрузки'
|
||||||
} finally {
|
} finally {
|
||||||
@@ -83,9 +187,15 @@ const fetchNodes = async () => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const refreshData = async () => {
|
||||||
|
loading.value = true
|
||||||
|
await fetchHosts()
|
||||||
|
loading.value = false
|
||||||
|
}
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
fetchNodes()
|
fetchHosts()
|
||||||
interval = setInterval(fetchNodes, 30000)
|
interval = setInterval(refreshData, 30000)
|
||||||
})
|
})
|
||||||
onUnmounted(() => clearInterval(interval))
|
onUnmounted(() => clearInterval(interval))
|
||||||
</script>
|
</script>
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
|
||||||
<HeroSection />
|
<HeroSection />
|
||||||
<FeaturesSection />
|
<FeaturesSection />
|
||||||
<CompatibilitySection />
|
<CompatibilitySection />
|
||||||
@@ -8,7 +7,6 @@
|
|||||||
<StepsSection />
|
<StepsSection />
|
||||||
<TestimonialsSection />
|
<TestimonialsSection />
|
||||||
<FaqSection />
|
<FaqSection />
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
@@ -21,51 +19,8 @@ import StepsSection from '../components/StepsSection.vue'
|
|||||||
import TestimonialsSection from '../components/TestimonialsSection.vue'
|
import TestimonialsSection from '../components/TestimonialsSection.vue'
|
||||||
import FaqSection from '../components/FaqSection.vue'
|
import FaqSection from '../components/FaqSection.vue'
|
||||||
|
|
||||||
// import { useHead } from '@vueuse/head';
|
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
|
||||||
// useHead({
|
|
||||||
// title: route.meta.title,
|
|
||||||
// meta: [
|
|
||||||
// {
|
|
||||||
// name: 'description',
|
|
||||||
// content: route.meta.description
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// name: 'keywords',
|
|
||||||
// content: route.meta.keywords
|
|
||||||
// },
|
|
||||||
// // Open Graph теги для соцсетей
|
|
||||||
// {
|
|
||||||
// property: 'og:title',
|
|
||||||
// content: route.meta.title
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// property: 'og:description',
|
|
||||||
// content: route.meta.description
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// property: 'og:type',
|
|
||||||
// content: 'website'
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// property: 'og:url',
|
|
||||||
// content: window.location.href // Здесь можно также задать каноничный URL
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// property: 'og:site_name',
|
|
||||||
// content: route.meta.title
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// property: 'telegram:channel',
|
|
||||||
// content: '@uvpn_shop'
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// property: 'tg:site_verification',
|
|
||||||
// content: 'g7j8/rPFXfhyrq5q0QQV7EsYWv4='
|
|
||||||
// },
|
|
||||||
// ]
|
|
||||||
// });
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user