feat: add app download
ci-api / test (push) Successful in 27m41s
ci-web / test (push) Successful in 14m6s

This commit is contained in:
Xor290
2026-08-09 15:35:29 +02:00
parent 0609ca30d0
commit d8794358c5
13 changed files with 520 additions and 24 deletions
+2
View File
@@ -20,6 +20,7 @@ import (
"github.com/omnex/control-plane/api/internal/config" "github.com/omnex/control-plane/api/internal/config"
"github.com/omnex/control-plane/api/internal/db" "github.com/omnex/control-plane/api/internal/db"
"github.com/omnex/control-plane/api/internal/demos" "github.com/omnex/control-plane/api/internal/demos"
"github.com/omnex/control-plane/api/internal/downloads"
"github.com/omnex/control-plane/api/internal/k8s" "github.com/omnex/control-plane/api/internal/k8s"
"github.com/omnex/control-plane/api/internal/profile" "github.com/omnex/control-plane/api/internal/profile"
"github.com/omnex/control-plane/api/internal/router" "github.com/omnex/control-plane/api/internal/router"
@@ -191,6 +192,7 @@ func main() {
DemosH: demos.NewHandler(demoSvc, helmProv), DemosH: demos.NewHandler(demoSvc, helmProv),
SubH: sub.NewHandler(codeStore, demoSvc), SubH: sub.NewHandler(codeStore, demoSvc),
ProfileH: profile.NewHandler(profileStore), ProfileH: profile.NewHandler(profileStore),
DownloadsH: downloads.NewHandler(cfg.AppDownloadsDir, userStore, demoSvc),
} }
r := router.New(deps) r := router.New(deps)
@@ -21,6 +21,7 @@ type Config struct {
FrontendImage string FrontendImage string
BackendImage string BackendImage string
LBTelegramImage string LBTelegramImage string
AppDownloadsDir string // OMNEX_APP_DOWNLOADS_DIR : répertoire des .apk téléchargeables (voir internal/downloads)
} }
// Load lit la config. Fail-secure : secret JWT obligatoire ; en prod base + Redis aussi. // Load lit la config. Fail-secure : secret JWT obligatoire ; en prod base + Redis aussi.
@@ -45,6 +46,7 @@ func Load() (Config, error) {
FrontendImage: os.Getenv("FRONTEND_IMAGE_APP"), FrontendImage: os.Getenv("FRONTEND_IMAGE_APP"),
BackendImage: os.Getenv("BACKEND_IMAGE_APP"), BackendImage: os.Getenv("BACKEND_IMAGE_APP"),
LBTelegramImage: os.Getenv("LBTELEGRAM_IMAGE_APP"), LBTelegramImage: os.Getenv("LBTELEGRAM_IMAGE_APP"),
AppDownloadsDir: getenv("OMNEX_APP_DOWNLOADS_DIR", "/app-downloads"),
} }
if cfg.Env == "prod" { if cfg.Env == "prod" {
@@ -0,0 +1,135 @@
// Package downloads expose les applications mobiles (.apk) téléchargeables
// par un client ayant une démo active ou un abonnement premium en cours.
// Les fichiers sont déposés manuellement (pas de build automatisé) dans le
// répertoire configuré (voir config.AppDownloadsDir) : le contenu du
// répertoire est listé dynamiquement, aucun nom de fichier n'est en dur.
package downloads
import (
"net/http"
"os"
"path/filepath"
"sort"
"strings"
"time"
"github.com/gin-gonic/gin"
"github.com/omnex/control-plane/api/internal/auth"
"github.com/omnex/control-plane/api/internal/demos"
)
type App struct {
Name string `json:"name"`
SizeBytes int64 `json:"size_bytes"`
}
type Handler struct {
dir string
users auth.UserStore
demos *demos.Service // optionnel : nil => éligibilité basée uniquement sur l'abonnement
}
func NewHandler(dir string, users auth.UserStore, demoSvc *demos.Service) *Handler {
return &Handler{dir: dir, users: users, demos: demoSvc}
}
// eligible : démo active OU abonnement premium non expiré.
func (h *Handler) eligible(username string) (bool, error) {
if user, found := h.users.ByUsername(username); found {
if user.TypeAbo == "premium" && time.Now().UTC().Before(user.ExpiredAt) {
return true, nil
}
}
if h.demos == nil {
return false, nil
}
list, err := h.demos.ListForUser(username)
if err != nil {
return false, err
}
for _, d := range list {
if d.Status.Active() {
return true, nil
}
}
return false, nil
}
// List renvoie les apps disponibles et si le client courant a le droit de
// les télécharger — la liste reste visible même si non éligible, pour
// afficher un message explicite côté front plutôt qu'une page vide.
func (h *Handler) List(c *gin.Context) {
p := auth.PrincipalFrom(c)
if p == nil {
c.JSON(http.StatusUnauthorized, gin.H{"error": "non authentifié"})
return
}
ok, err := h.eligible(p.Username)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "erreur serveur"})
return
}
apps, err := h.listFiles()
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "erreur serveur"})
return
}
c.JSON(http.StatusOK, gin.H{"eligible": ok, "items": apps})
}
// Download sert un fichier .apk du répertoire — revérifie l'éligibilité
// côté serveur (le flag "eligible" de List n'est qu'un affichage).
func (h *Handler) Download(c *gin.Context) {
p := auth.PrincipalFrom(c)
if p == nil {
c.JSON(http.StatusUnauthorized, gin.H{"error": "non authentifié"})
return
}
ok, err := h.eligible(p.Username)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "erreur serveur"})
return
}
if !ok {
c.JSON(http.StatusForbidden, gin.H{"error": "démo ou abonnement actif requis"})
return
}
name := c.Param("name")
// Un seul segment de chemin, extension .apk uniquement : exclut toute
// tentative de traversée de répertoire (pas de "/" ni "\\" autorisés).
if name == "" || strings.ContainsAny(name, "/\\") || filepath.Ext(name) != ".apk" {
c.JSON(http.StatusBadRequest, gin.H{"error": "nom de fichier invalide"})
return
}
full := filepath.Join(h.dir, name)
if _, err := os.Stat(full); err != nil {
c.JSON(http.StatusNotFound, gin.H{"error": "fichier introuvable"})
return
}
c.FileAttachment(full, name)
}
func (h *Handler) listFiles() ([]App, error) {
entries, err := os.ReadDir(h.dir)
if err != nil {
if os.IsNotExist(err) {
return []App{}, nil
}
return nil, err
}
out := make([]App, 0, len(entries))
for _, e := range entries {
if e.IsDir() || filepath.Ext(e.Name()) != ".apk" {
continue
}
info, err := e.Info()
if err != nil {
continue
}
out = append(out, App{Name: e.Name(), SizeBytes: info.Size()})
}
sort.Slice(out, func(i, j int) bool { return out[i].Name < out[j].Name })
return out, nil
}
@@ -9,6 +9,7 @@ import (
"github.com/omnex/control-plane/api/internal/auth" "github.com/omnex/control-plane/api/internal/auth"
"github.com/omnex/control-plane/api/internal/config" "github.com/omnex/control-plane/api/internal/config"
"github.com/omnex/control-plane/api/internal/demos" "github.com/omnex/control-plane/api/internal/demos"
"github.com/omnex/control-plane/api/internal/downloads"
"github.com/omnex/control-plane/api/internal/httpx" "github.com/omnex/control-plane/api/internal/httpx"
"github.com/omnex/control-plane/api/internal/profile" "github.com/omnex/control-plane/api/internal/profile"
"github.com/omnex/control-plane/api/internal/session" "github.com/omnex/control-plane/api/internal/session"
@@ -24,6 +25,7 @@ type Deps struct {
DemosH *demos.Handler DemosH *demos.Handler
SubH *sub.Handler SubH *sub.Handler
ProfileH *profile.Handler ProfileH *profile.Handler
DownloadsH *downloads.Handler
} }
// New construit l'engine Gin avec toute la chaîne de sécurité. // New construit l'engine Gin avec toute la chaîne de sécurité.
@@ -61,6 +63,10 @@ func New(d Deps) *gin.Engine {
if d.DemosH != nil { if d.DemosH != nil {
client.GET("/demos/mine", d.DemosH.ListMine) client.GET("/demos/mine", d.DemosH.ListMine)
} }
if d.DownloadsH != nil {
client.GET("/apps", d.DownloadsH.List)
client.GET("/apps/:name", d.DownloadsH.Download)
}
} }
// Espace admin : provisioning des démos (admin uniquement). // Espace admin : provisioning des démos (admin uniquement).
admin := authed.Group("") admin := authed.Group("")
+25 -10
View File
@@ -13,7 +13,6 @@ services:
interval: 5s interval: 5s
timeout: 3s timeout: 3s
retries: 10 retries: 10
# Pas de port exposé : accès interne uniquement (défense en profondeur).
redis: redis:
image: redis:7-alpine image: redis:7-alpine
@@ -33,8 +32,26 @@ services:
depends_on: depends_on:
api: api:
condition: service_healthy condition: service_healthy
waf:
image: xor1234/omnex-waf:latest
restart: unless-stopped
environment:
- DISABLE_MODSEC_ENV_SUBST=true
- PARANOIA=2
- ANOMALY_INBOUND=5
- ANOMALY_OUTBOUND=4
- MODSEC_AUDIT_LOG=/var/log/modsec/modsec_audit.log
volumes:
- ./nginx/certs:/etc/nginx/certs:ro
- /var/log/waf/nginx:/var/log/nginx
- /var/log/waf/modsec:/var/log/modsec
ports: ports:
- "3000:80" - "80:80"
- "443:443"
depends_on:
- web
- api
api: api:
image: xor1234/omnex-api:latest image: xor1234/omnex-api:latest
@@ -59,22 +76,20 @@ services:
BACKEND_IMAGE_APP: ${BACKEND_IMAGE_APP:-xor1234/backend-mln:helm} BACKEND_IMAGE_APP: ${BACKEND_IMAGE_APP:-xor1234/backend-mln:helm}
LBTELEGRAM_IMAGE_APP: ${LBTELEGRAM_IMAGE_APP:-xor1234/lbtelegram:helm} LBTELEGRAM_IMAGE_APP: ${LBTELEGRAM_IMAGE_APP:-xor1234/lbtelegram:helm}
KUBECONFIG: /kubeconfig/config KUBECONFIG: /kubeconfig/config
OMNEX_APP_DOWNLOADS_DIR: /app-downloads
volumes: volumes:
- ../deploy/chart-gestion:/charts:ro - ../deploy/chart-gestion:/charts:ro
- /home/xor_fakers/.kube/config:/kubeconfig/config:ro - ${KUBECONFIG_HOST_PATH:-/home/xor_fakers/.kube/config}:/kubeconfig/config:ro
# Dossier où déposer manuellement les .apk (Admin Panel / Client) à
# rendre téléchargeables aux clients ayant une démo ou un abonnement
# actif — voir control-plane/api/internal/downloads.
- ../app:/app-downloads:ro
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/healthz"] test: ["CMD", "curl", "-f", "http://localhost:8080/healthz"]
interval: 5s interval: 5s
timeout: 3s timeout: 3s
retries: 10 retries: 10
# Le temps que le fix "EnsureSharedInfra en arrière-plan" soit déployé
# (voir control-plane/api/cmd/api/main.go) : laisse la marge pour que
# le "helm upgrade --install --wait --timeout 5m" bloquant échoue tout
# seul si le cluster est injoignable, plutôt que de faire échouer
# `docker compose up` avant même que le serveur HTTP démarre.
start_period: 330s start_period: 330s
ports:
- "8080:8080"
volumes: volumes:
pgdata: pgdata:
+18
View File
@@ -0,0 +1,18 @@
# WAF (Nginx + ModSecurity/OWASP CRS) — même pattern que
# projet_gestion_commande/docker-prod/backend/Dockerfile (stage "waf") :
# seul point de terminaison TLS + reverse-proxy devant web/api.
FROM owasp/modsecurity-crs:nginx-alpine
USER root
RUN mkdir -p /var/log/modsec /etc/nginx/certs && \
chown -R nginx:nginx /var/log/modsec /etc/nginx/certs /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/app.conf
COPY custom-rules.conf /etc/nginx/modsec/custom-rules.conf
RUN echo "Include /etc/nginx/modsec/custom-rules.conf" > /etc/nginx/modsec/custom-includes.conf && \
rm -f /etc/nginx/templates/conf.d/default.conf.template || true
USER nginx
EXPOSE 80 443
CMD ["nginx", "-g", "daemon off;"]
+48
View File
@@ -0,0 +1,48 @@
# Exclure le corps des requêtes/réponses de l'audit log pour garder des
# lignes de taille raisonnable.
SecAuditLogParts ABIFHZ
SecRule IP:BANNED "@eq 1" \
"id:100000,phase:1,deny,status:403,log,\
msg:'IP is banned'"
SecRule IP:REPUTATION_SCORE "@ge 100" \
"id:100099,phase:1,deny,status:403,log,\
msg:'Critical reputation score',\
setvar:'ip.blocked=1',expirevar:'ip.blocked=86400'"
SecRule TX:SQL_INJECTION_SCORE "@ge 5" \
"id:100001,phase:2,deny,status:403,log,\
msg:'SQL Injection detected',\
setvar:'ip.banned=1',expirevar:'ip.banned=172800'"
SecRule TX:XSS_SCORE "@ge 5" \
"id:100010,phase:2,deny,status:403,log,\
msg:'XSS detected',\
setvar:'ip.banned=1',expirevar:'ip.banned=172800'"
SecRule TX:RCE_SCORE "@ge 5" \
"id:100020,phase:2,deny,status:403,log,\
msg:'RCE detected',\
setvar:'ip.banned=1',expirevar:'ip.banned=259200'"
SecRule TX:LFI_SCORE "@ge 5" \
"id:100030,phase:2,deny,status:403,log,\
msg:'LFI detected',\
setvar:'ip.banned=1',expirevar:'ip.banned=172800'"
SecRule TX:INBOUND_ANOMALY_SCORE "@ge 20" \
"id:100060,phase:2,deny,status:403,log,\
msg:'Critical anomaly score',\
setvar:'ip.banned=1',expirevar:'ip.banned=172800'"
# Rate limit basique par IP (indépendant du RateLimit Go déjà en place sur
# /auth/login côté control-plane — celui-ci protège tout le reste).
SecAction \
"id:400161,phase:1,nolog,pass,\
setvar:'ip.request_window_1sec=+1',\
expirevar:'ip.request_window_1sec=1'"
SecRule IP:REQUEST_WINDOW_1SEC "@gt 20" \
"id:400160,phase:1,deny,status:429,log,\
msg:'Too many requests'"
+138
View File
@@ -0,0 +1,138 @@
# Request ID correlation
map $http_x_request_id $req_id {
default $http_x_request_id;
"" $request_id;
}
# HTTP → HTTPS
server {
listen 80;
listen [::]:80;
server_name _;
return 301 https://$host$request_uri;
}
# HTTPS — Hardened + ModSecurity
server {
listen 443 ssl;
listen [::]:443 ssl;
http2 on;
server_name _;
server_tokens off;
# ---------------------------------------------------
# TLS (certs copiés par ansible/playbook-certbot.yml, voir
# docker-compose.yml service waf)
# ---------------------------------------------------
ssl_certificate /etc/nginx/certs/fullchain.pem;
ssl_certificate_key /etc/nginx/certs/privkey.pem;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256;
ssl_prefer_server_ciphers off;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 1d;
ssl_session_tickets off;
resolver 127.0.0.11 valid=10s ipv6=off;
resolver_timeout 5s;
# ---------------------------------------------------
# En-têtes de sécurité
# ---------------------------------------------------
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload" always;
add_header X-Frame-Options "DENY" always;
add_header X-Content-Type-Options "nosniff" always;
add_header Referrer-Policy "no-referrer" always;
add_header Content-Security-Policy "default-src 'none'; frame-ancestors 'none'" always;
# ---------------------------------------------------
# Limites et timeouts
# ---------------------------------------------------
client_max_body_size 10M;
client_body_buffer_size 128k;
client_header_buffer_size 1k;
large_client_header_buffers 4 8k;
client_body_timeout 30s;
client_header_timeout 30s;
send_timeout 30s;
keepalive_timeout 65s;
# ---------------------------------------------------
# ModSecurity WAF
# ---------------------------------------------------
modsecurity on;
modsecurity_rules_file /etc/nginx/modsec/custom-rules.conf;
# ---------------------------------------------------
# API control-plane Go (voir control-plane/api/internal/router)
# ---------------------------------------------------
location /api/ {
limit_except GET POST PATCH DELETE OPTIONS { deny all; }
set $upstream_api http://api:8080;
proxy_pass $upstream_api;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Request-ID $req_id;
proxy_hide_header X-Powered-By;
proxy_connect_timeout 60s;
proxy_send_timeout 300s;
proxy_read_timeout 300s;
}
location = /healthz {
set $upstream_api http://api:8080;
proxy_pass $upstream_api;
}
# ---------------------------------------------------
# Frontend React SPA
# ---------------------------------------------------
location / {
set $upstream_web http://web:80;
proxy_pass $upstream_web;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
# ---------------------------------------------------
# Blocage fichiers sensibles / scans courants
# ---------------------------------------------------
location ~ /\. {
deny all;
access_log off;
log_not_found off;
}
location ~* \.(env|git|sql|bak|log|conf|ini|sh)$ {
deny all;
access_log off;
log_not_found off;
}
location ~* (package\.json|package-lock\.json|yarn\.lock|Dockerfile|docker-compose)$ {
deny all;
access_log off;
log_not_found off;
}
location ~* (wp-admin|wp-login|wp-content|xmlrpc|\.php)$ {
deny all;
access_log off;
log_not_found off;
}
}
+2
View File
@@ -10,6 +10,7 @@ import { Demos } from './pages/backoffice/Demos'
import { PremiumDemos } from './pages/backoffice/PremiumDemos' import { PremiumDemos } from './pages/backoffice/PremiumDemos'
import { Codes } from './pages/backoffice/Codes' import { Codes } from './pages/backoffice/Codes'
import { Subscription } from './pages/backoffice/Subscription' import { Subscription } from './pages/backoffice/Subscription'
import { AppDownloads } from './pages/backoffice/AppDownloads'
import { Profile } from './pages/backoffice/Profile' import { Profile } from './pages/backoffice/Profile'
import { PublicLayout } from './components/PublicLayout' import { PublicLayout } from './components/PublicLayout'
import { BackofficeLayout } from './components/BackofficeLayout' import { BackofficeLayout } from './components/BackofficeLayout'
@@ -103,6 +104,7 @@ export function App() {
} }
/> />
<Route path="subscription" element={<Subscription />} /> <Route path="subscription" element={<Subscription />} />
<Route path="downloads" element={<AppDownloads />} />
<Route path="profile" element={<Profile />} /> <Route path="profile" element={<Profile />} />
</Route> </Route>
+6
View File
@@ -55,6 +55,7 @@ export function BackofficeLayout() {
</Heading> </Heading>
<HStack spacing={1} display={{ base: 'none', md: 'flex' }}> <HStack spacing={1} display={{ base: 'none', md: 'flex' }}>
{isClient && <NavItem to="/app/subscription">Abonnement</NavItem>} {isClient && <NavItem to="/app/subscription">Abonnement</NavItem>}
{isClient && <NavItem to="/app/downloads">Applications</NavItem>}
{(isAdmin || isClient) && <NavItem to="/app/profile">Profile</NavItem>} {(isAdmin || isClient) && <NavItem to="/app/profile">Profile</NavItem>}
{isAdmin && <NavItem to="/app/demos">Démos</NavItem>} {isAdmin && <NavItem to="/app/demos">Démos</NavItem>}
{isAdmin && <NavItem to="/app/premium">Premium</NavItem>} {isAdmin && <NavItem to="/app/premium">Premium</NavItem>}
@@ -99,6 +100,11 @@ export function BackofficeLayout() {
Abonnement Abonnement
</NavItem> </NavItem>
)} )}
{isClient && (
<NavItem to="/app/downloads" onClick={onClose} mobile>
Applications
</NavItem>
)}
{isAdmin && ( {isAdmin && (
<NavItem to="/app/demos" onClick={onClose} mobile> <NavItem to="/app/demos" onClick={onClose} mobile>
Démos Démos
+19
View File
@@ -147,6 +147,16 @@ export interface AlertSettings {
telegram_chat_id: string telegram_chat_id: string
} }
export interface AppDownload {
name: string
size_bytes: number
}
export interface AppDownloadsResponse {
eligible: boolean
items: AppDownload[]
}
// --- Endpoints --- // --- Endpoints ---
export const api = { export const api = {
@@ -221,4 +231,13 @@ export const api = {
getAlertSettings: () => request<AlertSettings>('GET', '/profile/alerts'), getAlertSettings: () => request<AlertSettings>('GET', '/profile/alerts'),
setAlertSettings: (settings: AlertSettings) => setAlertSettings: (settings: AlertSettings) =>
request<AlertSettings>('POST', '/profile/alerts', settings), request<AlertSettings>('POST', '/profile/alerts', settings),
listAppDownloads: () => request<AppDownloadsResponse>('GET', '/apps'),
}
// URL de téléchargement direct d'une app — le cookie de session httpOnly
// suffit à authentifier la navigation (voir auth.tokenFromRequest côté API),
// pas besoin de fetch + blob.
export function appDownloadUrl(name: string): string {
return `${BASE}/api/v1/apps/${encodeURIComponent(name)}`
} }
+13
View File
@@ -72,6 +72,19 @@ export function timeRemaining(expiresAt: string, now: number = Date.now()): stri
return `${hours} h ${mins} min` return `${hours} h ${mins} min`
} }
// Taille de fichier lisible (ex. "42.3 Mo").
export function formatFileSize(bytes: number): string {
if (bytes < 1024) return `${bytes} o`
const units = ['Ko', 'Mo', 'Go']
let value = bytes / 1024
let unitIndex = 0
while (value >= 1024 && unitIndex < units.length - 1) {
value /= 1024
unitIndex += 1
}
return `${value.toFixed(1)} ${units[unitIndex]}`
}
export function formatDate(iso: string): string { export function formatDate(iso: string): string {
return new Date(iso).toLocaleDateString('fr-FR', { return new Date(iso).toLocaleDateString('fr-FR', {
day: '2-digit', day: '2-digit',
+92
View File
@@ -0,0 +1,92 @@
import { useCallback, useEffect, useState } from 'react'
import {
Box,
Button,
Flex,
HStack,
Heading,
Spacer,
Spinner,
Stack,
Text,
VStack,
useToast,
} from '@chakra-ui/react'
import { useNavigate } from 'react-router-dom'
import { api, ApiError, appDownloadUrl, type AppDownload } from '../../lib/api'
import { formatFileSize } from '../../lib/format'
const DownloadIcon = () => (
<Box as="svg" w="16px" h="16px" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
<Box as="path" d="M12 3v12m0 0-4-4m4 4 4-4M5 21h14" />
</Box>
)
export function AppDownloads() {
const toast = useToast()
const navigate = useNavigate()
const [items, setItems] = useState<AppDownload[]>([])
const [eligible, setEligible] = useState(false)
const [loading, setLoading] = useState(true)
const load = useCallback(async () => {
try {
const res = await api.listAppDownloads()
setItems(res.items ?? [])
setEligible(res.eligible)
} catch (err) {
if (err instanceof ApiError && err.status === 401) navigate('/login')
else toast({ status: 'error', title: 'Chargement des applications impossible' })
} finally {
setLoading(false)
}
}, [navigate, toast])
useEffect(() => {
void load()
}, [load])
return (
<>
<Flex mb={6} align="center">
<Heading size="md">Applications</Heading>
<Spacer />
</Flex>
<Box mb={8} p={6} borderWidth="1px" borderRadius="lg" bg="bg-surface">
{loading ? (
<Spinner />
) : !eligible ? (
<Text color="gray.500">
Le téléchargement des applications nécessite une démo ou un abonnement actif.
</Text>
) : items.length === 0 ? (
<Text color="gray.500">Aucune application disponible pour le moment.</Text>
) : (
<VStack align="stretch" spacing={3}>
{items.map((item) => (
<HStack key={item.name} justify="space-between" flexWrap="wrap" rowGap={2}>
<Stack spacing={0}>
<Text fontFamily="mono">{item.name}</Text>
<Text fontSize="sm" color="gray.500">
{formatFileSize(item.size_bytes)}
</Text>
</Stack>
<Button
as="a"
href={appDownloadUrl(item.name)}
download={item.name}
size="sm"
colorScheme="primary"
leftIcon={<DownloadIcon />}
>
Télécharger
</Button>
</HStack>
))}
</VStack>
)}
</Box>
</>
)
}