Docker images / prepare-release (push) Successful in 8s
Docker images / backend-test (push) Successful in 2m39s
Docker images / frontend-image (push) Successful in 2m56s
Docker images / updater-image (push) Successful in 44s
Docker images / backend-image (push) Successful in 2m35s
Docker images / notify-webhook (push) Skipped
Docker images / publish-release (push) Successful in 15s
- Added support for managing IPsec peers, including editing and deleting functionality. - Introduced a new UI component for displaying peers and their details within the IPsec server grid. - Updated the IPsec user creation form to allow binding identities to specific peers. - Enhanced backend routes and services to handle peer patching and deletion requests. - Improved data structures to accommodate multiple peers and certificates for each server. - Added tests to ensure proper functionality of new peer management features.
155 lines
4.3 KiB
TypeScript
155 lines
4.3 KiB
TypeScript
import { requestJson } from "@/shared/api/http-client"
|
|
import type {
|
|
IpsecCertBundle,
|
|
IpsecInitRequest,
|
|
IpsecListResponse,
|
|
IpsecPeerPatch,
|
|
IpsecServerSummaryDto,
|
|
IpsecUserCreateRequest,
|
|
IpsecUserCreated,
|
|
IpsecUserPatch,
|
|
} from "@mmapp/contracts/ipsec"
|
|
|
|
export async function listIpsec(
|
|
baseUrl: string,
|
|
opts?: { serverId?: string },
|
|
): Promise<IpsecListResponse> {
|
|
const q = new URLSearchParams()
|
|
if (opts?.serverId) q.set("serverId", opts.serverId)
|
|
const suffix = q.size > 0 ? `?${q.toString()}` : ""
|
|
return requestJson<IpsecListResponse>(baseUrl, `/api/ipsec${suffix}`, { method: "GET" })
|
|
}
|
|
|
|
export async function initIpsecServer(
|
|
baseUrl: string,
|
|
body: IpsecInitRequest,
|
|
): Promise<IpsecServerSummaryDto> {
|
|
return requestJson<IpsecServerSummaryDto>(baseUrl, "/api/ipsec/server/init", {
|
|
method: "POST",
|
|
body: JSON.stringify(body),
|
|
})
|
|
}
|
|
|
|
export async function deleteIpsecServer(
|
|
baseUrl: string,
|
|
serverId: string,
|
|
opts?: { removeCertificates?: boolean },
|
|
): Promise<{ ok: boolean }> {
|
|
const q = new URLSearchParams()
|
|
if (opts?.removeCertificates === false) q.set("removeCertificates", "false")
|
|
const suffix = q.size > 0 ? `?${q.toString()}` : ""
|
|
return requestJson<{ ok: boolean }>(
|
|
baseUrl,
|
|
`/api/ipsec/server/${encodeURIComponent(serverId)}${suffix}`,
|
|
{ method: "DELETE" },
|
|
)
|
|
}
|
|
|
|
export async function createIpsecUser(
|
|
baseUrl: string,
|
|
body: IpsecUserCreateRequest,
|
|
): Promise<IpsecUserCreated> {
|
|
return requestJson<IpsecUserCreated>(baseUrl, "/api/ipsec/users", {
|
|
method: "POST",
|
|
body: JSON.stringify(body),
|
|
})
|
|
}
|
|
|
|
export async function patchIpsecUser(
|
|
baseUrl: string,
|
|
serverId: string,
|
|
clientId: string,
|
|
patch: IpsecUserPatch,
|
|
): Promise<{ ok: boolean }> {
|
|
return requestJson<{ ok: boolean }>(
|
|
baseUrl,
|
|
`/api/ipsec/users/${encodeURIComponent(serverId)}/${encodeURIComponent(clientId)}`,
|
|
{ method: "PATCH", body: JSON.stringify(patch) },
|
|
)
|
|
}
|
|
|
|
export async function deleteIpsecUser(
|
|
baseUrl: string,
|
|
serverId: string,
|
|
clientId: string,
|
|
opts?: { removeCertificate?: boolean },
|
|
): Promise<{ ok: boolean }> {
|
|
const q = new URLSearchParams()
|
|
if (opts?.removeCertificate === false) q.set("removeCertificate", "false")
|
|
const suffix = q.size > 0 ? `?${q.toString()}` : ""
|
|
return requestJson<{ ok: boolean }>(
|
|
baseUrl,
|
|
`/api/ipsec/users/${encodeURIComponent(serverId)}/${encodeURIComponent(clientId)}${suffix}`,
|
|
{ method: "DELETE" },
|
|
)
|
|
}
|
|
|
|
export async function exportIpsecUserCert(
|
|
baseUrl: string,
|
|
serverId: string,
|
|
clientId: string,
|
|
passphrase: string,
|
|
): Promise<IpsecCertBundle> {
|
|
return requestJson<IpsecCertBundle>(
|
|
baseUrl,
|
|
`/api/ipsec/users/${encodeURIComponent(serverId)}/${encodeURIComponent(clientId)}/cert`,
|
|
{ method: "POST", body: JSON.stringify({ passphrase }) },
|
|
)
|
|
}
|
|
|
|
export async function restoreIpsecRevision(
|
|
baseUrl: string,
|
|
revisionId: string,
|
|
serverId: string,
|
|
): Promise<{ ok: boolean }> {
|
|
return requestJson<{ ok: boolean }>(baseUrl, `/api/ipsec/revisions/${encodeURIComponent(revisionId)}/restore`, {
|
|
method: "POST",
|
|
body: JSON.stringify({ serverId }),
|
|
})
|
|
}
|
|
|
|
export async function patchIpsecPeer(
|
|
baseUrl: string,
|
|
serverId: string,
|
|
peerId: string,
|
|
patch: IpsecPeerPatch,
|
|
): Promise<{ ok: boolean }> {
|
|
return requestJson<{ ok: boolean }>(
|
|
baseUrl,
|
|
`/api/ipsec/peers/${encodeURIComponent(serverId)}/${encodeURIComponent(peerId)}`,
|
|
{ method: "PATCH", body: JSON.stringify(patch) },
|
|
)
|
|
}
|
|
|
|
export async function deleteIpsecPeer(
|
|
baseUrl: string,
|
|
serverId: string,
|
|
peerId: string,
|
|
opts?: { force?: boolean },
|
|
): Promise<{ ok: boolean }> {
|
|
const q = new URLSearchParams()
|
|
if (opts?.force) q.set("force", "true")
|
|
const suffix = q.size > 0 ? `?${q.toString()}` : ""
|
|
return requestJson<{ ok: boolean }>(
|
|
baseUrl,
|
|
`/api/ipsec/peers/${encodeURIComponent(serverId)}/${encodeURIComponent(peerId)}${suffix}`,
|
|
{ method: "DELETE" },
|
|
)
|
|
}
|
|
|
|
export async function deleteIpsecCert(
|
|
baseUrl: string,
|
|
serverId: string,
|
|
name: string,
|
|
opts?: { force?: boolean },
|
|
): Promise<{ ok: boolean }> {
|
|
const q = new URLSearchParams()
|
|
if (opts?.force) q.set("force", "true")
|
|
const suffix = q.size > 0 ? `?${q.toString()}` : ""
|
|
return requestJson<{ ok: boolean }>(
|
|
baseUrl,
|
|
`/api/ipsec/certs/${encodeURIComponent(serverId)}${suffix}`,
|
|
{ method: "DELETE", body: JSON.stringify({ name }) },
|
|
)
|
|
}
|