feat: uuid for sub link

This commit is contained in:
2026-03-31 14:25:24 +08:00
parent 21c91fc213
commit ec2c5bab80
4 changed files with 68 additions and 22 deletions

View File

@@ -1,28 +1,30 @@
import { Router } from 'express';
import crypto from 'crypto';
import db from '../db.js';
import { generateSurgeConfig } from '../services/generator.js';
const router = Router();
// GET /surge - Surge client subscription endpoint (no auth required)
router.get('/', (req, res) => {
const host = req.headers.host || 'localhost:3456';
const protocol = req.secure ? 'https' : 'http';
const hostUrl = `${protocol}://${host}/surge`;
// GET /api/config/surge-token - get current surge token
router.get('/surge-token', (_req, res) => {
const row = db.prepare("SELECT value FROM config WHERE key = 'surge_token'").get() as any;
res.json({ token: row?.value || null });
});
const config = generateSurgeConfig(hostUrl);
res.set({
'Content-Type': 'text/plain; charset=utf-8',
'Content-Disposition': 'attachment; filename=sub-router.conf',
});
res.send(config);
// POST /api/config/surge-token - regenerate surge token
router.post('/surge-token', (_req, res) => {
const token = crypto.randomUUID();
db.prepare("INSERT OR REPLACE INTO config (key, value) VALUES ('surge_token', ?)").run(token);
res.json({ token });
});
// GET /api/config/preview - preview generated config
router.get('/preview', (req, res) => {
const host = req.headers.host || 'localhost:3456';
const protocol = req.secure ? 'https' : 'http';
const hostUrl = `${protocol}://${host}/surge`;
const row = db.prepare("SELECT value FROM config WHERE key = 'surge_token'").get() as any;
const token = row?.value || '';
const hostUrl = `${protocol}://${host}/surge/${token}`;
const config = generateSurgeConfig(hostUrl);
res.json({ config });