Feat : login sys
Some checks failed
Build and Push Docker Images / docker (push) Failing after 11s

This commit is contained in:
jeanotx32
2026-05-18 22:44:02 -04:00
parent cf0b3f0acf
commit d799ae503c
6808 changed files with 856331 additions and 45 deletions

View File

@@ -1,33 +1,23 @@
const BASE = '/api'
export async function fetchAllStatus() {
const res = await fetch(`${BASE}/status`)
if (!res.ok) throw new Error(`HTTP ${res.status}`)
return res.json()
// ─── Token helpers ────────────────────────────────────────────────────────────
export function getToken() { return localStorage.getItem('token') }
export function setToken(t) { t ? localStorage.setItem('token', t) : localStorage.removeItem('token') }
function authHeaders(extra = {}) {
const token = getToken()
return token
? { 'Content-Type': 'application/json', Authorization: `Bearer ${token}`, ...extra }
: { 'Content-Type': 'application/json', ...extra }
}
export async function fetchLogs(vpsId, containerId, lines = 200) {
const res = await fetch(`${BASE}/vps/${vpsId}/containers/${containerId}/logs?lines=${lines}`)
if (!res.ok) throw new Error(`HTTP ${res.status}`)
return res.json()
}
export async function containerAction(vpsId, containerId, action) {
const res = await fetch(`${BASE}/vps/${vpsId}/containers/${containerId}/action`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ action }),
})
if (!res.ok) throw new Error(`HTTP ${res.status}`)
return res.json()
}
export async function addVps(data) {
const res = await fetch(`${BASE}/vps`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(data),
})
async function handleResponse(res) {
if (res.status === 401) {
setToken(null)
window.dispatchEvent(new Event('auth:expired'))
throw new Error('Session expirée, veuillez vous reconnecter.')
}
if (!res.ok) {
const err = await res.json().catch(() => ({}))
throw new Error(err.detail ?? `HTTP ${res.status}`)
@@ -35,8 +25,68 @@ export async function addVps(data) {
return res.json()
}
export async function deleteVps(vpsId) {
const res = await fetch(`${BASE}/vps/${vpsId}`, { method: 'DELETE' })
if (!res.ok) throw new Error(`HTTP ${res.status}`)
return res.json()
// ─── Auth ─────────────────────────────────────────────────────────────────────
export async function authStatus() {
const res = await fetch(`${BASE}/auth/status`)
return handleResponse(res)
}
export async function register(username, password) {
const res = await fetch(`${BASE}/auth/register`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ username, password }),
})
return handleResponse(res)
}
export async function login(username, password) {
const res = await fetch(`${BASE}/auth/login`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ username, password }),
})
return handleResponse(res)
}
// ─── VPS ──────────────────────────────────────────────────────────────────────
export async function fetchAllStatus() {
const res = await fetch(`${BASE}/status`, { headers: authHeaders() })
return handleResponse(res)
}
export async function fetchLogs(vpsId, containerId, lines = 200) {
const res = await fetch(
`${BASE}/vps/${vpsId}/containers/${containerId}/logs?lines=${lines}`,
{ headers: authHeaders() }
)
return handleResponse(res)
}
export async function containerAction(vpsId, containerId, action) {
const res = await fetch(`${BASE}/vps/${vpsId}/containers/${containerId}/action`, {
method: 'POST',
headers: authHeaders(),
body: JSON.stringify({ action }),
})
return handleResponse(res)
}
export async function addVps(data) {
const res = await fetch(`${BASE}/vps`, {
method: 'POST',
headers: authHeaders(),
body: JSON.stringify(data),
})
return handleResponse(res)
}
export async function deleteVps(vpsId) {
const res = await fetch(`${BASE}/vps/${vpsId}`, {
method: 'DELETE',
headers: authHeaders(),
})
return handleResponse(res)
}