mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-02-08 04:21:18 -05:00
* feat: display notification when new release is available * refactor: standalone re-usable cache util * refactor: clear cache on server startup * refactor: add timeout to gh release fetch * fix: run with app version env variable
82 lines
1.8 KiB
TypeScript
82 lines
1.8 KiB
TypeScript
import { type } from "arktype";
|
|
import { describeRoute, resolver } from "hono-openapi";
|
|
|
|
export const capabilitiesSchema = type({
|
|
rclone: "boolean",
|
|
sysAdmin: "boolean",
|
|
});
|
|
|
|
export const systemInfoResponse = type({
|
|
capabilities: capabilitiesSchema,
|
|
});
|
|
|
|
export type SystemInfoDto = typeof systemInfoResponse.infer;
|
|
|
|
export const releaseInfoSchema = type({
|
|
version: "string",
|
|
url: "string",
|
|
publishedAt: "string",
|
|
body: "string",
|
|
});
|
|
|
|
export const updateInfoResponse = type({
|
|
currentVersion: "string",
|
|
latestVersion: "string",
|
|
hasUpdate: "boolean",
|
|
missedReleases: releaseInfoSchema.array(),
|
|
});
|
|
|
|
export type UpdateInfoDto = typeof updateInfoResponse.infer;
|
|
|
|
export const systemInfoDto = describeRoute({
|
|
description: "Get system information including available capabilities",
|
|
tags: ["System"],
|
|
operationId: "getSystemInfo",
|
|
responses: {
|
|
200: {
|
|
description: "System information with enabled capabilities",
|
|
content: {
|
|
"application/json": {
|
|
schema: resolver(systemInfoResponse),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
export const getUpdatesDto = describeRoute({
|
|
description: "Check for application updates from GitHub",
|
|
tags: ["System"],
|
|
operationId: "getUpdates",
|
|
responses: {
|
|
200: {
|
|
description: "Update information and missed releases",
|
|
content: {
|
|
"application/json": {
|
|
schema: resolver(updateInfoResponse),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
export const downloadResticPasswordBodySchema = type({
|
|
password: "string",
|
|
});
|
|
|
|
export const downloadResticPasswordDto = describeRoute({
|
|
description: "Download the Restic password file for backup recovery. Requires password re-authentication.",
|
|
tags: ["System"],
|
|
operationId: "downloadResticPassword",
|
|
responses: {
|
|
200: {
|
|
description: "Restic password file content",
|
|
content: {
|
|
"text/plain": {
|
|
schema: { type: "string" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|