55 lines
No EOL
1.6 KiB
TypeScript
55 lines
No EOL
1.6 KiB
TypeScript
'use server';
|
|
|
|
export async function getConfig() {
|
|
const res = await fetch('http://192.168.1.69:2019/config/');
|
|
|
|
if (!res.ok)
|
|
throw new Error('Failed to fetch caddy config. Please check the network and try again.');
|
|
|
|
let caddyConfig: CaddyConfig = await res.json();
|
|
|
|
return caddyConfig;
|
|
}
|
|
|
|
export async function getServer() {
|
|
const res = await fetch('http://localhost:3000/api/caddy/servers');
|
|
|
|
if (!res.ok)
|
|
throw new Error('Failed to fetch caddy config. Please check the network and try again.');
|
|
|
|
let server: Server = await res.json();
|
|
return server;
|
|
}
|
|
|
|
export async function deleteRoute(route: Route, index: number = 0) {
|
|
let res = await fetch("http://localhost:3000/api/caddy/routes", {
|
|
method: 'DELETE',
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
},
|
|
body: JSON.stringify(route)
|
|
|
|
})
|
|
|
|
if (!res.ok) throw new Error('Failed to remove route. Please check the network and try again.');
|
|
|
|
return res.json();
|
|
}
|
|
|
|
export async function getUpstreamRequests(route: Route) {
|
|
let upstreams: UpstreamRequest[] = await fetch(`http://192.168.1.69:2019/reverse_proxy/upstreams`, {
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
},
|
|
}).then(res => res.json());
|
|
|
|
if (!upstreams) throw new Error('Failed to fetch upstreams. Please check the network and try again.')
|
|
|
|
return upstreams;
|
|
}
|
|
|
|
export async function getRoutes() {
|
|
let res = await fetch('http://localhost:3000/api/caddy/routes', { cache: 'no-cache'});
|
|
if (!res.ok) throw new Error('Failed to fetch routes');
|
|
return await res.json();
|
|
} |