feat(server): serve normalized OpenAPI spec at /api/v1/spec.json with shared schema components

Extract spec generation into `openapi-spec.ts` with a `generateOpenApiSpec` function that registers common `$ref` schemas (Title, Person, Episode, Season, etc.) to deduplicate inline definitions across the spec. Add a `/api/v1/spec.json` interceptor that returns the fully normalized document, and point the Scalar docs UI at it instead of the plugin's raw generator output.

Also strip oRPC's impossible `{ not: {} }` void placeholders from request/response bodies via `normalizeOpenApiSpec`, and fix the handler registration so both `/api/v1` and `/api/v1/*` routes are matched.
This commit is contained in:
2026-03-14 20:05:44 -04:00
parent aede4fc90a
commit 33fd871114
20 changed files with 5153 additions and 2928 deletions
+6 -3
View File
@@ -5,7 +5,7 @@ import { registerJobScheduleProvider } from "@sofa/core/system-health";
import { closeDatabase } from "@sofa/db/client";
import { runMigrations } from "@sofa/db/migrate";
import { createLogger } from "@sofa/logger";
import { Hono } from "hono";
import { type Context, Hono } from "hono";
import { serveStatic } from "hono/bun";
import { cors } from "hono/cors";
import { getJobSchedules, startJobs, stopJobs } from "./cron";
@@ -84,13 +84,16 @@ app.all("/rpc/*", async (c) => {
});
// oRPC OpenAPI handler + Scalar docs
app.all("/api/v1/*", async (c) => {
const handleOpenApi = async (c: Context) => {
const { response } = await openApiHandler.handle(c.req.raw, {
prefix: "/api/v1",
context: { headers: c.req.raw.headers },
});
return response ?? c.text("Not found", 404);
});
};
app.all("/api/v1", handleOpenApi);
app.all("/api/v1/*", handleOpenApi);
// ─── SPA static serving (production) ─────────────────────────
+75 -5
View File
@@ -2,9 +2,13 @@ import { SmartCoercionPlugin } from "@orpc/json-schema";
import { OpenAPIHandler } from "@orpc/openapi/fetch";
import { OpenAPIReferencePlugin } from "@orpc/openapi/plugins";
import { onError } from "@orpc/server";
import { ZodToJsonSchemaConverter } from "@orpc/zod/zod4";
import { createLogger } from "@sofa/logger";
import { router } from "./router";
import {
generateOpenApiSpec,
openApiTags,
schemaConverters,
} from "./openapi-spec";
import { implementedRouter } from "./router";
const log = createLogger("openapi");
@@ -13,10 +17,15 @@ const sessionCookieName = isSecure
? "__Secure-better-auth.session_token"
: "better-auth.session_token";
// https://orpc.dev/docs/openapi/plugins/smart-coercion
const schemaConverters = [new ZodToJsonSchemaConverter()];
function escapeHtml(value: string): string {
return value
.replaceAll("&", "&")
.replaceAll('"', """)
.replaceAll("<", "&lt;")
.replaceAll(">", "&gt;");
}
export const openApiHandler = new OpenAPIHandler(router, {
export const openApiHandler = new OpenAPIHandler(implementedRouter, {
plugins: [
new SmartCoercionPlugin({ schemaConverters }),
new OpenAPIReferencePlugin({
@@ -27,6 +36,7 @@ export const openApiHandler = new OpenAPIHandler(router, {
version: process.env.APP_VERSION || "0.0.0",
},
servers: [{ url: "/api/v1" }],
tags: [...openApiTags],
components: {
securitySchemes: {
session: {
@@ -38,9 +48,69 @@ export const openApiHandler = new OpenAPIHandler(router, {
},
},
},
// Load the spec from /spec.json so the docs use the normalized document
// rather than the plugin's raw generator output.
renderDocsHtml: (specUrl, title, head, scriptUrl, config) => {
const scalarConfig = {
url: specUrl,
...(typeof config === "object" && config !== null ? config : {}),
};
return `
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>${escapeHtml(title)}</title>
${head}
</head>
<body>
<div id="app" data-config="${escapeHtml(JSON.stringify(scalarConfig))}"></div>
<script src="${escapeHtml(scriptUrl)}"></script>
<script>
Scalar.createApiReference('#app', JSON.parse(document.getElementById('app').dataset.config))
</script>
</body>
</html>
`;
},
}),
],
interceptors: [
async (options) => {
const requestPathname =
options.request.url.pathname.replace(/\/$/, "") || "/";
const prefix = options.prefix?.replace(/\/$/, "") || "";
const specPath = `${prefix}/spec.json`.replace(/\/$/, "") || "/";
if (options.request.method !== "GET" || requestPathname !== specPath) {
return options.next();
}
const spec = await generateOpenApiSpec({
title: "Sofa API",
version: process.env.APP_VERSION || "0.0.0",
servers: [{ url: prefix || "/api/v1" }],
sessionCookieName,
tags: [...openApiTags],
});
return {
matched: true,
response: {
status: 200,
headers: {
"content-type": "application/json",
},
body: new File([JSON.stringify(spec)], "spec.json", {
type: "application/json",
}),
},
};
},
onError((error) => {
log.error("OpenAPI error", error);
}),
+259
View File
@@ -0,0 +1,259 @@
import { OpenAPIGenerator } from "@orpc/openapi";
import { ZodToJsonSchemaConverter } from "@orpc/zod/zod4";
import {
BackupSchema,
CastMemberSchema,
EpisodeSchema,
IntegrationEventSchema,
IntegrationSchema,
JobSchema,
PersonCreditSchema,
PersonSchema,
RecommendationItemSchema,
ResolvedTitleSchema,
SeasonSchema,
SystemHealthSchema,
TmdbBrowseItem,
} from "@sofa/api/schemas";
import { implementedRouter } from "./router";
export const schemaConverters = [new ZodToJsonSchemaConverter()];
export const openApiTags = [
{ name: "Titles", description: "Movie and TV show management" },
{ name: "Episodes", description: "Episode watch tracking" },
{ name: "Seasons", description: "Season watch tracking" },
{ name: "People", description: "Cast and crew information" },
{ name: "Dashboard", description: "User dashboard data" },
{ name: "Explore", description: "Discover trending and popular content" },
{ name: "Search", description: "Search for movies and TV shows" },
{
name: "Discover",
description: "Advanced content discovery with filters",
},
{ name: "System", description: "Server status and configuration" },
{ name: "Integrations", description: "Media server integrations" },
{ name: "Admin", description: "Server administration" },
{ name: "Account", description: "User account management" },
] as const;
const generator = new OpenAPIGenerator({
schemaConverters,
});
const httpMethods = [
"get",
"put",
"post",
"delete",
"options",
"head",
"patch",
"trace",
] as const;
type OpenApiSpec = Awaited<ReturnType<OpenAPIGenerator["generate"]>>;
function isRecord(value: unknown): value is Record<string, unknown> {
return typeof value === "object" && value !== null && !Array.isArray(value);
}
function isEmptyRecord(value: unknown): value is Record<string, never> {
return isRecord(value) && Object.keys(value).length === 0;
}
function isImpossibleSchema(schema: unknown): boolean {
return (
isRecord(schema) &&
Object.keys(schema).length === 1 &&
"not" in schema &&
isEmptyRecord(schema.not)
);
}
function normalizeSchema(schema: unknown): unknown {
if (!isRecord(schema)) {
return schema;
}
if (isImpossibleSchema(schema)) {
return undefined;
}
const normalized = { ...schema };
for (const key of ["anyOf", "oneOf", "allOf"] as const) {
const branches = normalized[key];
if (!Array.isArray(branches)) continue;
const nextBranches = branches.flatMap((branch) => {
const nextBranch = normalizeSchema(branch);
return nextBranch === undefined ? [] : [nextBranch];
});
if (nextBranches.length === 0) {
return undefined;
}
normalized[key] = nextBranches;
}
if (isRecord(normalized.properties)) {
const nextProperties = Object.fromEntries(
Object.entries(normalized.properties).flatMap(
([name, propertySchema]) => {
const nextPropertySchema = normalizeSchema(propertySchema);
return nextPropertySchema === undefined
? []
: [[name, nextPropertySchema]];
},
),
);
if (Object.keys(nextProperties).length > 0) {
normalized.properties = nextProperties;
} else {
delete normalized.properties;
}
if (Array.isArray(normalized.required)) {
const propertyNames = new Set(Object.keys(nextProperties));
const nextRequired = normalized.required.filter(
(name): name is string =>
typeof name === "string" && propertyNames.has(name),
);
if (nextRequired.length > 0) {
normalized.required = nextRequired;
} else {
delete normalized.required;
}
}
}
if ("items" in normalized) {
const nextItems = normalizeSchema(normalized.items);
if (nextItems === undefined) {
delete normalized.items;
} else {
normalized.items = nextItems;
}
}
if (isRecord(normalized.additionalProperties)) {
const nextAdditionalProperties = normalizeSchema(
normalized.additionalProperties,
);
if (nextAdditionalProperties === undefined) {
delete normalized.additionalProperties;
} else {
normalized.additionalProperties = nextAdditionalProperties;
}
}
return normalized;
}
function normalizeContent(
content: Record<string, { schema?: unknown }> | undefined,
): Record<string, { schema?: unknown }> | undefined {
if (!content) {
return undefined;
}
for (const [mediaType, mediaTypeObject] of Object.entries(content)) {
const nextSchema = normalizeSchema(mediaTypeObject.schema);
if (nextSchema === undefined) {
delete content[mediaType];
continue;
}
mediaTypeObject.schema = nextSchema;
}
return Object.keys(content).length > 0 ? content : undefined;
}
export function normalizeOpenApiSpec<T extends OpenApiSpec>(spec: T): T {
for (const pathItem of Object.values(spec.paths ?? {})) {
if (!pathItem) continue;
for (const method of httpMethods) {
const operation = pathItem[method];
if (!operation) continue;
if (operation.requestBody && "content" in operation.requestBody) {
const nextContent = normalizeContent(operation.requestBody.content);
if (nextContent) {
operation.requestBody.content =
nextContent as typeof operation.requestBody.content;
} else {
delete operation.requestBody;
}
}
for (const response of Object.values(operation.responses ?? {})) {
if (!response || !("content" in response)) continue;
const nextContent = normalizeContent(response.content);
if (nextContent) {
response.content = nextContent as typeof response.content;
} else {
delete response.content;
}
}
}
}
return spec;
}
export async function generateOpenApiSpec(options: {
title: string;
version: string;
servers: Array<{ url: string }>;
sessionCookieName: string;
tags?: Array<{ name: string; description?: string }>;
}): Promise<OpenApiSpec> {
const spec = await generator.generate(implementedRouter, {
info: {
title: options.title,
version: options.version,
},
servers: options.servers,
tags: options.tags,
commonSchemas: {
Title: { schema: ResolvedTitleSchema },
Person: { schema: PersonSchema },
PersonCredit: { schema: PersonCreditSchema },
Episode: { schema: EpisodeSchema },
Season: { schema: SeasonSchema },
CastMember: { schema: CastMemberSchema },
BrowseItem: { schema: TmdbBrowseItem },
Recommendation: { schema: RecommendationItemSchema },
Integration: { schema: IntegrationSchema },
IntegrationEvent: { schema: IntegrationEventSchema },
Backup: { schema: BackupSchema },
Job: { schema: JobSchema },
SystemHealth: { schema: SystemHealthSchema },
},
components: {
securitySchemes: {
session: {
type: "apiKey",
name: options.sessionCookieName,
in: "cookie",
description: "Better Auth session cookie",
},
},
},
});
// oRPC represents void/undefined with an impossible schema placeholder.
// OpenAPI has no "undefined" payload, so drop impossible request/response
// bodies entirely while preserving real `null` schemas.
return normalizeOpenApiSpec(spec);
}
+4 -2
View File
@@ -13,7 +13,7 @@ import * as status from "./procedures/status";
import * as system from "./procedures/system";
import * as titles from "./procedures/titles";
export const router = os.router({
export const implementedRouter = {
titles: {
detail: titles.detail,
resolve: titles.resolve,
@@ -87,6 +87,8 @@ export const router = os.router({
uploadAvatar: account.uploadAvatar,
removeAvatar: account.removeAvatar,
},
});
};
export const router = os.router(implementedRouter);
export type Router = typeof router;
+17 -9
View File
@@ -5,23 +5,31 @@ full: true
_openapi:
toc:
- depth: 2
title: Update Name
url: '#update-name'
title: Update display name
url: '#update-display-name'
- depth: 2
title: Upload Avatar
title: Upload avatar
url: '#upload-avatar'
- depth: 2
title: Remove Avatar
title: Remove avatar
url: '#remove-avatar'
structuredData:
headings:
- content: Update Name
id: update-name
- content: Upload Avatar
- content: Update display name
id: update-display-name
- content: Upload avatar
id: upload-avatar
- content: Remove Avatar
- content: Remove avatar
id: remove-avatar
contents: []
contents:
- content: Change the current user's display name.
heading: update-display-name
- content: >-
Upload a new profile avatar image. Accepts JPEG, PNG, WebP, or GIF up
to 2 MB.
heading: upload-avatar
- content: Delete the current user's profile avatar, reverting to the default.
heading: remove-avatar
---
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
+87 -49
View File
@@ -5,73 +5,111 @@ full: true
_openapi:
toc:
- depth: 2
title: List
url: '#list'
title: List backups
url: '#list-backups'
- depth: 2
title: Create
url: '#create'
title: Create backup
url: '#create-backup'
- depth: 2
title: Delete
url: '#delete'
title: Delete backup
url: '#delete-backup'
- depth: 2
title: Restore
url: '#restore'
title: Restore from backup
url: '#restore-from-backup'
- depth: 2
title: Schedule
url: '#schedule'
title: Get backup schedule
url: '#get-backup-schedule'
- depth: 2
title: Update Schedule
url: '#update-schedule'
title: Update backup schedule
url: '#update-backup-schedule'
- depth: 2
title: Registration
url: '#registration'
title: Get registration status
url: '#get-registration-status'
- depth: 2
title: Toggle Registration
title: Toggle registration
url: '#toggle-registration'
- depth: 2
title: Update Check
url: '#update-check'
title: Get update check status
url: '#get-update-check-status'
- depth: 2
title: Toggle Update Check
url: '#toggle-update-check'
title: Toggle update checks
url: '#toggle-update-checks'
- depth: 2
title: Telemetry
url: '#telemetry'
title: Get telemetry status
url: '#get-telemetry-status'
- depth: 2
title: Toggle Telemetry
title: Toggle telemetry
url: '#toggle-telemetry'
- depth: 2
title: Trigger Job
url: '#trigger-job'
title: Trigger cron job
url: '#trigger-cron-job'
structuredData:
headings:
- content: List
id: list
- content: Create
id: create
- content: Delete
id: delete
- content: Restore
id: restore
- content: Schedule
id: schedule
- content: Update Schedule
id: update-schedule
- content: Registration
id: registration
- content: Toggle Registration
- content: List backups
id: list-backups
- content: Create backup
id: create-backup
- content: Delete backup
id: delete-backup
- content: Restore from backup
id: restore-from-backup
- content: Get backup schedule
id: get-backup-schedule
- content: Update backup schedule
id: update-backup-schedule
- content: Get registration status
id: get-registration-status
- content: Toggle registration
id: toggle-registration
- content: Update Check
id: update-check
- content: Toggle Update Check
id: toggle-update-check
- content: Telemetry
id: telemetry
- content: Toggle Telemetry
- content: Get update check status
id: get-update-check-status
- content: Toggle update checks
id: toggle-update-checks
- content: Get telemetry status
id: get-telemetry-status
- content: Toggle telemetry
id: toggle-telemetry
- content: Trigger Job
id: trigger-job
contents: []
- content: Trigger cron job
id: trigger-cron-job
contents:
- content: Fetch all database backups with their sizes and creation times.
heading: list-backups
- content: >-
Create a new manual database backup. The backup is tagged as a manual
backup.
heading: create-backup
- content: Permanently delete a database backup file by filename.
heading: delete-backup
- content: >-
Upload a database backup file and restore it. A pre-restore backup is
automatically created before overwriting the current database.
heading: restore-from-backup
- content: Fetch the current automated backup schedule configuration.
heading: get-backup-schedule
- content: >-
Update the automated backup schedule. Only provided fields are
changed; omitted fields keep their current values.
heading: update-backup-schedule
- content: Check whether new user registration is currently open or closed.
heading: get-registration-status
- content: Open or close new user registration.
heading: toggle-registration
- content: >-
Fetch whether automatic update checks are enabled, and the latest
cached check result if available.
heading: get-update-check-status
- content: Enable or disable automatic update checks against the public API.
heading: toggle-update-checks
- content: >-
Fetch whether anonymous telemetry is enabled and when the last report
was sent.
heading: get-telemetry-status
- content: Enable or disable anonymous telemetry reporting.
heading: toggle-telemetry
- content: >-
Manually trigger a background cron job by name. The job runs
asynchronously.
heading: trigger-cron-job
---
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
+39 -21
View File
@@ -5,33 +5,51 @@ full: true
_openapi:
toc:
- depth: 2
title: Stats
url: '#stats'
title: Get dashboard statistics
url: '#get-dashboard-statistics'
- depth: 2
title: Continue Watching
url: '#continue-watching'
title: Get continue watching list
url: '#get-continue-watching-list'
- depth: 2
title: Library
url: '#library'
title: Get user library
url: '#get-user-library'
- depth: 2
title: Recommendations
url: '#recommendations'
title: Get personalized recommendations
url: '#get-personalized-recommendations'
- depth: 2
title: Watch History
url: '#watch-history'
title: Get watch history
url: '#get-watch-history'
structuredData:
headings:
- content: Stats
id: stats
- content: Continue Watching
id: continue-watching
- content: Library
id: library
- content: Recommendations
id: recommendations
- content: Watch History
id: watch-history
contents: []
- content: Get dashboard statistics
id: get-dashboard-statistics
- content: Get continue watching list
id: get-continue-watching-list
- content: Get user library
id: get-user-library
- content: Get personalized recommendations
id: get-personalized-recommendations
- content: Get watch history
id: get-watch-history
contents:
- content: >-
Fetch summary counts for the current user: movies watched this month,
episodes this week, library size, and completed titles.
heading: get-dashboard-statistics
- content: >-
Fetch TV shows the user is currently watching, with the next unwatched
episode and progress for each.
heading: get-continue-watching-list
- content: Fetch all titles in the user's library with their tracking statuses.
heading: get-user-library
- content: >-
Fetch personalized title recommendations based on the user's library
and watch history.
heading: get-personalized-recommendations
- content: >-
Fetch the user's watch counts grouped by time period. Useful for
rendering activity charts.
heading: get-watch-history
---
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
+9 -5
View File
@@ -6,13 +6,17 @@ _openapi:
method: GET
toc:
- depth: 2
title: Discover
url: '#discover'
title: Discover titles by genre
url: '#discover-titles-by-genre'
structuredData:
headings:
- content: Discover
id: discover
contents: []
- content: Discover titles by genre
id: discover-titles-by-genre
contents:
- content: >-
Browse movies or TV shows filtered by genre, sorted by popularity.
Returns user statuses and episode progress.
heading: discover-titles-by-genre
---
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
+21 -13
View File
@@ -5,23 +5,31 @@ full: true
_openapi:
toc:
- depth: 2
title: Watch
url: '#watch'
title: Mark episode watched
url: '#mark-episode-watched'
- depth: 2
title: Unwatch
url: '#unwatch'
title: Mark episode unwatched
url: '#mark-episode-unwatched'
- depth: 2
title: Batch Watch
url: '#batch-watch'
title: Batch mark episodes watched
url: '#batch-mark-episodes-watched'
structuredData:
headings:
- content: Watch
id: watch
- content: Unwatch
id: unwatch
- content: Batch Watch
id: batch-watch
contents: []
- content: Mark episode watched
id: mark-episode-watched
- content: Mark episode unwatched
id: mark-episode-unwatched
- content: Batch mark episodes watched
id: batch-mark-episodes-watched
contents:
- content: Record a watch event for a single TV episode.
heading: mark-episode-watched
- content: Remove the watch record for a single TV episode.
heading: mark-episode-unwatched
- content: >-
Record watch events for multiple episodes at once. Useful for marking
a range of episodes as watched.
heading: batch-mark-episodes-watched
---
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
+25 -13
View File
@@ -5,23 +5,35 @@ full: true
_openapi:
toc:
- depth: 2
title: Trending
url: '#trending'
title: Get trending titles
url: '#get-trending-titles'
- depth: 2
title: Popular
url: '#popular'
title: Get popular titles
url: '#get-popular-titles'
- depth: 2
title: Genres
url: '#genres'
title: List genres
url: '#list-genres'
structuredData:
headings:
- content: Trending
id: trending
- content: Popular
id: popular
- content: Genres
id: genres
contents: []
- content: Get trending titles
id: get-trending-titles
- content: Get popular titles
id: get-popular-titles
- content: List genres
id: list-genres
contents:
- content: >-
Fetch today's trending movies and/or TV shows from TMDB, including a
featured hero title and the user's statuses.
heading: get-trending-titles
- content: >-
Fetch currently popular movies or TV shows from TMDB with the user's
tracking statuses.
heading: get-popular-titles
- content: >-
Fetch the list of TMDB genres for movies or TV shows. Used to populate
genre filters for discovery.
heading: list-genres
---
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
+31 -17
View File
@@ -5,28 +5,42 @@ full: true
_openapi:
toc:
- depth: 2
title: List
url: '#list'
title: List integrations
url: '#list-integrations'
- depth: 2
title: Create
url: '#create'
title: Create or update integration
url: '#create-or-update-integration'
- depth: 2
title: Delete
url: '#delete'
title: Delete integration
url: '#delete-integration'
- depth: 2
title: Regenerate Token
url: '#regenerate-token'
title: Regenerate webhook token
url: '#regenerate-webhook-token'
structuredData:
headings:
- content: List
id: list
- content: Create
id: create
- content: Delete
id: delete
- content: Regenerate Token
id: regenerate-token
contents: []
- content: List integrations
id: list-integrations
- content: Create or update integration
id: create-or-update-integration
- content: Delete integration
id: delete-integration
- content: Regenerate webhook token
id: regenerate-webhook-token
contents:
- content: >-
Fetch all configured media server integrations for the current user,
including recent webhook/sync events for each.
heading: list-integrations
- content: >-
Create a new media server integration or update an existing one.
Generates a unique webhook token for the provider.
heading: create-or-update-integration
- content: Remove a media server integration and all its event history.
heading: delete-integration
- content: >-
Generate a new webhook token for an integration. The old token is
immediately invalidated.
heading: regenerate-webhook-token
---
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
+17 -9
View File
@@ -5,18 +5,26 @@ full: true
_openapi:
toc:
- depth: 2
title: Detail
url: '#detail'
title: Get person details
url: '#get-person-details'
- depth: 2
title: Resolve
url: '#resolve'
title: Resolve TMDB ID to local person
url: '#resolve-tmdb-id-to-local-person'
structuredData:
headings:
- content: Detail
id: detail
- content: Resolve
id: resolve
contents: []
- content: Get person details
id: get-person-details
- content: Resolve TMDB ID to local person
id: resolve-tmdb-id-to-local-person
contents:
- content: >-
Fetch a person's profile and filmography. Imports from TMDB on first
access if not yet cached locally.
heading: get-person-details
- content: >-
Look up or import a person by their TMDB ID. Returns the internal ID
for use with other endpoints.
heading: resolve-tmdb-id-to-local-person
---
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
+9 -5
View File
@@ -6,13 +6,17 @@ _openapi:
method: GET
toc:
- depth: 2
title: Search
url: '#search'
title: Search movies, TV shows, and people
url: '#search-movies-tv-shows-and-people'
structuredData:
headings:
- content: Search
id: search
contents: []
- content: Search movies, TV shows, and people
id: search-movies-tv-shows-and-people
contents:
- content: >-
Full-text search across movies, TV shows, and people via TMDB.
Optionally filter by media type.
heading: search-movies-tv-shows-and-people
---
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
+15 -9
View File
@@ -5,18 +5,24 @@ full: true
_openapi:
toc:
- depth: 2
title: Watch
url: '#watch'
title: Mark season watched
url: '#mark-season-watched'
- depth: 2
title: Unwatch
url: '#unwatch'
title: Mark season unwatched
url: '#mark-season-unwatched'
structuredData:
headings:
- content: Watch
id: watch
- content: Unwatch
id: unwatch
contents: []
- content: Mark season watched
id: mark-season-watched
- content: Mark season unwatched
id: mark-season-unwatched
contents:
- content: Mark all episodes in a season as watched in a single operation.
heading: mark-season-watched
- content: >-
Remove all watch records for episodes in a season in a single
operation.
heading: mark-season-unwatched
---
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
+35 -17
View File
@@ -5,28 +5,46 @@ full: true
_openapi:
toc:
- depth: 2
title: Public Info
url: '#public-info'
title: Get public instance info
url: '#get-public-instance-info'
- depth: 2
title: Auth Config
url: '#auth-config'
title: Get authentication config
url: '#get-authentication-config'
- depth: 2
title: Status
url: '#status'
title: Get system status
url: '#get-system-status'
- depth: 2
title: Health
url: '#health'
title: Get system health report
url: '#get-system-health-report'
structuredData:
headings:
- content: Public Info
id: public-info
- content: Auth Config
id: auth-config
- content: Status
id: status
- content: Health
id: health
contents: []
- content: Get public instance info
id: get-public-instance-info
- content: Get authentication config
id: get-authentication-config
- content: Get system status
id: get-system-status
- content: Get system health report
id: get-system-health-report
contents:
- content: >-
Fetch public information about this Sofa instance. Does not require
authentication. Used by the login screen to display instance details.
heading: get-public-instance-info
- content: >-
Fetch the authentication configuration including OIDC availability,
password login status, and registration state. Does not require
authentication.
heading: get-authentication-config
- content: >-
Quick check of whether TMDB is configured. Does not require
authentication.
heading: get-system-status
- content: >-
Comprehensive health check covering database, TMDB connectivity, cron
jobs, image cache, backups, and environment. Does not require
authentication.
heading: get-system-health-report
---
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
+79 -41
View File
@@ -5,58 +5,96 @@ full: true
_openapi:
toc:
- depth: 2
title: Detail
url: '#detail'
title: Get title details
url: '#get-title-details'
- depth: 2
title: Resolve
url: '#resolve'
title: Resolve TMDB ID to local title
url: '#resolve-tmdb-id-to-local-title'
- depth: 2
title: Update Status
url: '#update-status'
title: Update tracking status
url: '#update-tracking-status'
- depth: 2
title: Update Rating
url: '#update-rating'
title: Rate a title
url: '#rate-a-title'
- depth: 2
title: Watch Movie
url: '#watch-movie'
title: Mark movie as watched
url: '#mark-movie-as-watched'
- depth: 2
title: Watch All
url: '#watch-all'
title: Mark all episodes watched
url: '#mark-all-episodes-watched'
- depth: 2
title: User Info
url: '#user-info'
title: Get user's title info
url: '#get-users-title-info'
- depth: 2
title: Recommendations
url: '#recommendations'
title: Get title recommendations
url: '#get-title-recommendations'
- depth: 2
title: Hydrate Seasons
url: '#hydrate-seasons'
title: Hydrate TV seasons
url: '#hydrate-tv-seasons'
- depth: 2
title: Quick Add
url: '#quick-add'
title: Quick add title to library
url: '#quick-add-title-to-library'
structuredData:
headings:
- content: Detail
id: detail
- content: Resolve
id: resolve
- content: Update Status
id: update-status
- content: Update Rating
id: update-rating
- content: Watch Movie
id: watch-movie
- content: Watch All
id: watch-all
- content: User Info
id: user-info
- content: Recommendations
id: recommendations
- content: Hydrate Seasons
id: hydrate-seasons
- content: Quick Add
id: quick-add
contents: []
- content: Get title details
id: get-title-details
- content: Resolve TMDB ID to local title
id: resolve-tmdb-id-to-local-title
- content: Update tracking status
id: update-tracking-status
- content: Rate a title
id: rate-a-title
- content: Mark movie as watched
id: mark-movie-as-watched
- content: Mark all episodes watched
id: mark-all-episodes-watched
- content: Get user's title info
id: get-users-title-info
- content: Get title recommendations
id: get-title-recommendations
- content: Hydrate TV seasons
id: hydrate-tv-seasons
- content: Quick add title to library
id: quick-add-title-to-library
contents:
- content: >-
Fetch full title metadata including seasons, cast, and streaming
availability. Imports from TMDB on first access if not yet cached
locally.
heading: get-title-details
- content: >-
Look up or import a title by its TMDB ID and media type. Returns the
internal ID for use with other endpoints.
heading: resolve-tmdb-id-to-local-title
- content: >-
Set the user's tracking status for a title. Use null to remove the
title from the library entirely.
heading: update-tracking-status
- content: Set a 0-5 star rating for a title. Use 0 to clear the rating.
heading: rate-a-title
- content: Log a watch event for a movie. Automatically sets status to completed.
heading: mark-movie-as-watched
- content: >-
Mark every episode of a TV show as watched. Requires seasons to be
hydrated first.
heading: mark-all-episodes-watched
- content: >-
Fetch the current user's tracking status, rating, and watched episode
IDs for a title.
heading: get-users-title-info
- content: >-
Fetch similar titles based on locally cached recommendation data,
along with the user's statuses for each.
heading: get-title-recommendations
- content: >-
Fetch full season and episode data from TMDB for a TV show. Required
before tracking individual episodes.
heading: hydrate-tv-seasons
- content: >-
Import a title by TMDB ID and add it to the user's watchlist in one
step. If the title already exists in the user's library, returns
alreadyAdded: true.
heading: quick-add-title-to-library
---
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
+3163 -2182
View File
File diff suppressed because it is too large Load Diff
+331 -32
View File
@@ -61,18 +61,44 @@ import {
export const contract = {
titles: {
detail: oc
.route({ method: "GET", path: "/titles/{id}", tags: ["Titles"] })
.route({
method: "GET",
path: "/titles/{id}",
tags: ["Titles"],
summary: "Get title details",
description:
"Fetch full title metadata including seasons, cast, and streaming availability. Imports from TMDB on first access if not yet cached locally.",
successDescription:
"Full title with seasons, cast, and availability offers",
})
.input(IdParam)
.output(TitleDetailOutput),
.output(TitleDetailOutput)
.errors({
NOT_FOUND: { message: "Title not found" },
}),
resolve: oc
.route({ method: "POST", path: "/titles/resolve", tags: ["Titles"] })
.route({
method: "POST",
path: "/titles/resolve",
tags: ["Titles"],
summary: "Resolve TMDB ID to local title",
description:
"Look up or import a title by its TMDB ID and media type. Returns the internal ID for use with other endpoints.",
successDescription: "Internal title ID",
})
.input(TmdbIdTypeParam)
.output(TitleResolveOutput),
.output(TitleResolveOutput)
.errors({
NOT_FOUND: { message: "Title not found" },
}),
updateStatus: oc
.route({
method: "PUT",
path: "/titles/{id}/status",
tags: ["Titles"],
summary: "Update tracking status",
description:
"Set the user's tracking status for a title. Use null to remove the title from the library entirely.",
})
.input(UpdateStatusInput)
.output(z.void()),
@@ -81,6 +107,9 @@ export const contract = {
method: "PUT",
path: "/titles/{id}/rating",
tags: ["Titles"],
summary: "Rate a title",
description:
"Set a 0-5 star rating for a title. Use 0 to clear the rating.",
})
.input(UpdateRatingInput)
.output(z.void()),
@@ -89,6 +118,9 @@ export const contract = {
method: "POST",
path: "/titles/{id}/watch",
tags: ["Titles"],
summary: "Mark movie as watched",
description:
"Log a watch event for a movie. Automatically sets status to completed.",
})
.input(IdParam)
.output(z.void()),
@@ -97,6 +129,9 @@ export const contract = {
method: "POST",
path: "/titles/{id}/watch-all",
tags: ["Titles"],
summary: "Mark all episodes watched",
description:
"Mark every episode of a TV show as watched. Requires seasons to be hydrated first.",
})
.input(IdParam)
.output(z.void()),
@@ -105,6 +140,11 @@ export const contract = {
method: "GET",
path: "/titles/{id}/user-info",
tags: ["Titles"],
summary: "Get user's title info",
description:
"Fetch the current user's tracking status, rating, and watched episode IDs for a title.",
successDescription:
"User's status, rating, and list of watched episode IDs",
})
.input(IdParam)
.output(UserInfoOutput),
@@ -113,6 +153,10 @@ export const contract = {
method: "GET",
path: "/titles/{id}/recommendations",
tags: ["Titles"],
summary: "Get title recommendations",
description:
"Fetch similar titles based on locally cached recommendation data, along with the user's statuses for each.",
successDescription: "Recommended titles with user statuses",
})
.input(IdParam)
.output(TitleRecommendationsOutput),
@@ -121,6 +165,10 @@ export const contract = {
method: "POST",
path: "/titles/{id}/hydrate-seasons",
tags: ["Titles"],
summary: "Hydrate TV seasons",
description:
"Fetch full season and episode data from TMDB for a TV show. Required before tracking individual episodes.",
successDescription: "Hydrated seasons with episodes",
})
.input(HydrateSeasonsInput)
.output(HydrateSeasonsOutput),
@@ -129,9 +177,17 @@ export const contract = {
method: "POST",
path: "/titles/quick-add",
tags: ["Titles"],
summary: "Quick add title to library",
description:
"Import a title by TMDB ID and add it to the user's watchlist in one step. If the title already exists in the user's library, returns alreadyAdded: true.",
successDescription:
"Title ID and whether it was already in the library",
})
.input(TmdbIdTypeParam)
.output(QuickAddOutput),
.output(QuickAddOutput)
.errors({
INTERNAL_SERVER_ERROR: { message: "Failed to import title from TMDB" },
}),
},
episodes: {
watch: oc
@@ -139,6 +195,8 @@ export const contract = {
method: "POST",
path: "/episodes/{id}/watch",
tags: ["Episodes"],
summary: "Mark episode watched",
description: "Record a watch event for a single TV episode.",
})
.input(IdParam)
.output(z.void()),
@@ -147,6 +205,8 @@ export const contract = {
method: "POST",
path: "/episodes/{id}/unwatch",
tags: ["Episodes"],
summary: "Mark episode unwatched",
description: "Remove the watch record for a single TV episode.",
})
.input(IdParam)
.output(z.void()),
@@ -155,6 +215,9 @@ export const contract = {
method: "POST",
path: "/episodes/batch-watch",
tags: ["Episodes"],
summary: "Batch mark episodes watched",
description:
"Record watch events for multiple episodes at once. Useful for marking a range of episodes as watched.",
})
.input(BatchWatchInput)
.output(z.void()),
@@ -165,6 +228,9 @@ export const contract = {
method: "POST",
path: "/seasons/{id}/watch",
tags: ["Seasons"],
summary: "Mark season watched",
description:
"Mark all episodes in a season as watched in a single operation.",
})
.input(IdParam)
.output(z.void()),
@@ -173,19 +239,45 @@ export const contract = {
method: "POST",
path: "/seasons/{id}/unwatch",
tags: ["Seasons"],
summary: "Mark season unwatched",
description:
"Remove all watch records for episodes in a season in a single operation.",
})
.input(IdParam)
.output(z.void()),
},
people: {
detail: oc
.route({ method: "GET", path: "/people/{id}", tags: ["People"] })
.route({
method: "GET",
path: "/people/{id}",
tags: ["People"],
summary: "Get person details",
description:
"Fetch a person's profile and filmography. Imports from TMDB on first access if not yet cached locally.",
successDescription:
"Person profile, filmography credits, and user statuses for their titles",
})
.input(IdParam)
.output(PersonDetailOutput),
.output(PersonDetailOutput)
.errors({
NOT_FOUND: { message: "Person not found" },
}),
resolve: oc
.route({ method: "POST", path: "/people/resolve", tags: ["People"] })
.route({
method: "POST",
path: "/people/resolve",
tags: ["People"],
summary: "Resolve TMDB ID to local person",
description:
"Look up or import a person by their TMDB ID. Returns the internal ID for use with other endpoints.",
successDescription: "Internal person ID",
})
.input(TmdbIdParam)
.output(PersonResolveOutput),
.output(PersonResolveOutput)
.errors({
NOT_FOUND: { message: "Person not found" },
}),
},
dashboard: {
stats: oc
@@ -193,6 +285,10 @@ export const contract = {
method: "GET",
path: "/dashboard/stats",
tags: ["Dashboard"],
summary: "Get dashboard statistics",
description:
"Fetch summary counts for the current user: movies watched this month, episodes this week, library size, and completed titles.",
successDescription: "Aggregate watch statistics",
})
.output(DashboardStatsOutput),
continueWatching: oc
@@ -200,6 +296,11 @@ export const contract = {
method: "GET",
path: "/dashboard/continue-watching",
tags: ["Dashboard"],
summary: "Get continue watching list",
description:
"Fetch TV shows the user is currently watching, with the next unwatched episode and progress for each.",
successDescription:
"In-progress shows with next episode and watch progress",
})
.output(ContinueWatchingOutput),
library: oc
@@ -207,6 +308,10 @@ export const contract = {
method: "GET",
path: "/dashboard/library",
tags: ["Dashboard"],
summary: "Get user library",
description:
"Fetch all titles in the user's library with their tracking statuses.",
successDescription: "Library items with user statuses",
})
.output(LibraryOutput),
recommendations: oc
@@ -214,6 +319,10 @@ export const contract = {
method: "GET",
path: "/dashboard/recommendations",
tags: ["Dashboard"],
summary: "Get personalized recommendations",
description:
"Fetch personalized title recommendations based on the user's library and watch history.",
successDescription: "Recommended titles",
})
.output(DashboardRecommendationsOutput),
watchHistory: oc
@@ -221,6 +330,10 @@ export const contract = {
method: "GET",
path: "/dashboard/watch-history",
tags: ["Dashboard"],
summary: "Get watch history",
description:
"Fetch the user's watch counts grouped by time period. Useful for rendering activity charts.",
successDescription: "Watch counts bucketed by time period",
})
.input(WatchHistoryInput)
.output(WatchHistoryOutput),
@@ -231,40 +344,87 @@ export const contract = {
method: "GET",
path: "/explore/trending",
tags: ["Explore"],
summary: "Get trending titles",
description:
"Fetch today's trending movies and/or TV shows from TMDB, including a featured hero title and the user's statuses.",
successDescription: "Trending items, hero spotlight, and user statuses",
})
.input(TrendingTypeParam)
.output(TrendingOutput),
.output(TrendingOutput)
.errors({
PRECONDITION_FAILED: { message: "TMDB API key is not configured" },
}),
popular: oc
.route({
method: "GET",
path: "/explore/popular",
tags: ["Explore"],
summary: "Get popular titles",
description:
"Fetch currently popular movies or TV shows from TMDB with the user's tracking statuses.",
successDescription: "Popular items with user statuses",
})
.input(MediaTypeParam)
.output(PopularOutput),
.output(PopularOutput)
.errors({
PRECONDITION_FAILED: { message: "TMDB API key is not configured" },
}),
genres: oc
.route({
method: "GET",
path: "/explore/genres",
tags: ["Explore"],
summary: "List genres",
description:
"Fetch the list of TMDB genres for movies or TV shows. Used to populate genre filters for discovery.",
successDescription: "Genre ID/name pairs",
})
.input(MediaTypeParam)
.output(GenresOutput),
.output(GenresOutput)
.errors({
PRECONDITION_FAILED: { message: "TMDB API key is not configured" },
}),
},
search: oc
.route({ method: "GET", path: "/search", tags: ["Search"] })
.route({
method: "GET",
path: "/search",
tags: ["Search"],
summary: "Search movies, TV shows, and people",
description:
"Full-text search across movies, TV shows, and people via TMDB. Optionally filter by media type.",
successDescription: "Search results with metadata",
})
.input(SearchInput)
.output(SearchOutput),
.output(SearchOutput)
.errors({
PRECONDITION_FAILED: { message: "TMDB API key is not configured" },
}),
discover: oc
.route({ method: "GET", path: "/discover", tags: ["Discover"] })
.route({
method: "GET",
path: "/discover",
tags: ["Discover"],
summary: "Discover titles by genre",
description:
"Browse movies or TV shows filtered by genre, sorted by popularity. Returns user statuses and episode progress.",
successDescription: "Filtered titles with user statuses",
})
.input(DiscoverInput)
.output(DiscoverOutput),
.output(DiscoverOutput)
.errors({
PRECONDITION_FAILED: { message: "TMDB API key is not configured" },
}),
system: {
publicInfo: oc
.route({
method: "GET",
path: "/system/public-info",
tags: ["System"],
summary: "Get public instance info",
description:
"Fetch public information about this Sofa instance. Does not require authentication. Used by the login screen to display instance details.",
successDescription: "Instance configuration and status",
})
.output(PublicInfoOutput),
authConfig: oc
@@ -272,13 +432,33 @@ export const contract = {
method: "GET",
path: "/system/auth-config",
tags: ["System"],
summary: "Get authentication config",
description:
"Fetch the authentication configuration including OIDC availability, password login status, and registration state. Does not require authentication.",
successDescription: "Authentication provider configuration",
})
.output(AuthConfigOutput),
status: oc
.route({ method: "GET", path: "/system/status", tags: ["System"] })
.route({
method: "GET",
path: "/system/status",
tags: ["System"],
summary: "Get system status",
description:
"Quick check of whether TMDB is configured. Does not require authentication.",
successDescription: "TMDB configuration status",
})
.output(SystemStatusOutput),
health: oc
.route({ method: "GET", path: "/system/health", tags: ["System"] })
.route({
method: "GET",
path: "/system/health",
tags: ["System"],
summary: "Get system health report",
description:
"Comprehensive health check covering database, TMDB connectivity, cron jobs, image cache, backups, and environment. Does not require authentication.",
successDescription: "Full system health report",
})
.output(SystemHealthOutput),
},
integrations: {
@@ -287,6 +467,10 @@ export const contract = {
method: "GET",
path: "/integrations",
tags: ["Integrations"],
summary: "List integrations",
description:
"Fetch all configured media server integrations for the current user, including recent webhook/sync events for each.",
successDescription: "Integrations with their recent events",
})
.output(IntegrationsListOutput),
create: oc
@@ -294,6 +478,10 @@ export const contract = {
method: "POST",
path: "/integrations",
tags: ["Integrations"],
summary: "Create or update integration",
description:
"Create a new media server integration or update an existing one. Generates a unique webhook token for the provider.",
successDescription: "Created or updated integration with token",
})
.input(CreateIntegrationInput)
.output(IntegrationOutput),
@@ -302,6 +490,9 @@ export const contract = {
method: "DELETE",
path: "/integrations/{provider}",
tags: ["Integrations"],
summary: "Delete integration",
description:
"Remove a media server integration and all its event history.",
})
.input(ProviderParam)
.output(z.void()),
@@ -310,17 +501,40 @@ export const contract = {
method: "POST",
path: "/integrations/{provider}/regenerate-token",
tags: ["Integrations"],
summary: "Regenerate webhook token",
description:
"Generate a new webhook token for an integration. The old token is immediately invalidated.",
successDescription: "Integration with new token",
})
.input(ProviderParam)
.output(IntegrationOutput),
.output(IntegrationOutput)
.errors({
NOT_FOUND: { message: "Integration not found" },
}),
},
admin: {
backups: {
list: oc
.route({ method: "GET", path: "/admin/backups", tags: ["Admin"] })
.route({
method: "GET",
path: "/admin/backups",
tags: ["Admin"],
summary: "List backups",
description:
"Fetch all database backups with their sizes and creation times.",
successDescription: "Available backups",
})
.output(BackupsListOutput),
create: oc
.route({ method: "POST", path: "/admin/backups", tags: ["Admin"] })
.route({
method: "POST",
path: "/admin/backups",
tags: ["Admin"],
summary: "Create backup",
description:
"Create a new manual database backup. The backup is tagged as a manual backup.",
successDescription: "Created backup metadata",
})
.input(z.void())
.output(BackupCreateOutput),
delete: oc
@@ -328,22 +542,38 @@ export const contract = {
method: "DELETE",
path: "/admin/backups/{filename}",
tags: ["Admin"],
summary: "Delete backup",
description: "Permanently delete a database backup file by filename.",
})
.input(FilenameParam)
.output(z.void()),
.output(z.void())
.errors({
NOT_FOUND: { message: "Backup not found" },
BAD_REQUEST: { message: "Failed to delete backup" },
}),
restore: oc
.route({
method: "POST",
path: "/admin/backups/restore",
tags: ["Admin"],
summary: "Restore from backup",
description:
"Upload a database backup file and restore it. A pre-restore backup is automatically created before overwriting the current database.",
})
.input(RestoreBackupInput)
.output(z.void()),
.output(z.void())
.errors({
BAD_REQUEST: { message: "Backup restoration failed" },
}),
schedule: oc
.route({
method: "GET",
path: "/admin/backups/schedule",
tags: ["Admin"],
summary: "Get backup schedule",
description:
"Fetch the current automated backup schedule configuration.",
successDescription: "Backup schedule settings",
})
.output(BackupScheduleOutput),
updateSchedule: oc
@@ -351,29 +581,75 @@ export const contract = {
method: "PUT",
path: "/admin/backups/schedule",
tags: ["Admin"],
summary: "Update backup schedule",
description:
"Update the automated backup schedule. Only provided fields are changed; omitted fields keep their current values.",
})
.input(UpdateScheduleInput)
.output(z.void()),
},
registration: oc
.route({ method: "GET", path: "/admin/registration", tags: ["Admin"] })
.route({
method: "GET",
path: "/admin/registration",
tags: ["Admin"],
summary: "Get registration status",
description:
"Check whether new user registration is currently open or closed.",
successDescription: "Registration open/closed state",
})
.output(RegistrationOutput),
toggleRegistration: oc
.route({ method: "PUT", path: "/admin/registration", tags: ["Admin"] })
.route({
method: "PUT",
path: "/admin/registration",
tags: ["Admin"],
summary: "Toggle registration",
description: "Open or close new user registration.",
})
.input(ToggleRegistrationInput)
.output(z.void()),
updateCheck: oc
.route({ method: "GET", path: "/admin/update-check", tags: ["Admin"] })
.route({
method: "GET",
path: "/admin/update-check",
tags: ["Admin"],
summary: "Get update check status",
description:
"Fetch whether automatic update checks are enabled, and the latest cached check result if available.",
successDescription: "Update check configuration and latest result",
})
.output(UpdateCheckOutput),
toggleUpdateCheck: oc
.route({ method: "PUT", path: "/admin/update-check", tags: ["Admin"] })
.route({
method: "PUT",
path: "/admin/update-check",
tags: ["Admin"],
summary: "Toggle update checks",
description:
"Enable or disable automatic update checks against the public API.",
})
.input(ToggleUpdateCheckInput)
.output(z.void()),
telemetry: oc
.route({ method: "GET", path: "/admin/telemetry", tags: ["Admin"] })
.route({
method: "GET",
path: "/admin/telemetry",
tags: ["Admin"],
summary: "Get telemetry status",
description:
"Fetch whether anonymous telemetry is enabled and when the last report was sent.",
successDescription: "Telemetry configuration and last report time",
})
.output(TelemetryOutput),
toggleTelemetry: oc
.route({ method: "PUT", path: "/admin/telemetry", tags: ["Admin"] })
.route({
method: "PUT",
path: "/admin/telemetry",
tags: ["Admin"],
summary: "Toggle telemetry",
description: "Enable or disable anonymous telemetry reporting.",
})
.input(ToggleTelemetryInput)
.output(z.void()),
triggerJob: oc
@@ -381,17 +657,37 @@ export const contract = {
method: "POST",
path: "/admin/jobs/trigger",
tags: ["Admin"],
summary: "Trigger cron job",
description:
"Manually trigger a background cron job by name. The job runs asynchronously.",
})
.input(TriggerJobInput)
.output(TriggerJobOutput),
.output(TriggerJobOutput)
.errors({
NOT_FOUND: { message: "Job not found" },
}),
},
account: {
updateName: oc
.route({ method: "PUT", path: "/account/name", tags: ["Account"] })
.route({
method: "PUT",
path: "/account/name",
tags: ["Account"],
summary: "Update display name",
description: "Change the current user's display name.",
})
.input(UpdateNameInput)
.output(z.void()),
uploadAvatar: oc
.route({ method: "POST", path: "/account/avatar", tags: ["Account"] })
.route({
method: "POST",
path: "/account/avatar",
tags: ["Account"],
summary: "Upload avatar",
description:
"Upload a new profile avatar image. Accepts JPEG, PNG, WebP, or GIF up to 2 MB.",
successDescription: "URL of the uploaded avatar image",
})
.input(UploadAvatarInput)
.output(UploadAvatarOutput),
removeAvatar: oc
@@ -399,6 +695,9 @@ export const contract = {
method: "DELETE",
path: "/account/avatar",
tags: ["Account"],
summary: "Remove avatar",
description:
"Delete the current user's profile avatar, reverting to the default.",
})
.input(z.void())
.output(z.void()),
File diff suppressed because it is too large Load Diff
+9 -37
View File
@@ -1,43 +1,15 @@
import { OpenAPIGenerator } from "@orpc/openapi";
import { ZodToJsonSchemaConverter } from "@orpc/zod/zod4";
import { contract } from "@sofa/api/contract";
import packageJson from "../apps/server/package.json" with { type: "json" };
import {
generateOpenApiSpec,
openApiTags,
} from "../apps/server/src/orpc/openapi-spec";
const generator = new OpenAPIGenerator({
schemaConverters: [new ZodToJsonSchemaConverter()],
});
const spec = await generator.generate(contract, {
info: { title: "Sofa API", version: packageJson.version || "1.0.0" },
const spec = await generateOpenApiSpec({
title: "Sofa API",
version: packageJson.version || "1.0.0",
servers: [{ url: "https://sofa.example.com/api/v1" }],
tags: [
{ name: "Titles", description: "Movie and TV show management" },
{ name: "Episodes", description: "Episode watch tracking" },
{ name: "Seasons", description: "Season watch tracking" },
{ name: "People", description: "Cast and crew information" },
{ name: "Dashboard", description: "User dashboard data" },
{ name: "Explore", description: "Discover trending and popular content" },
{ name: "Search", description: "Search for movies and TV shows" },
{
name: "Discover",
description: "Advanced content discovery with filters",
},
{ name: "System", description: "Server status and configuration" },
{ name: "Integrations", description: "Media server integrations" },
{ name: "Admin", description: "Server administration" },
{ name: "Account", description: "User account management" },
],
components: {
securitySchemes: {
session: {
type: "apiKey",
name: "better-auth.session_token",
in: "cookie",
description: "Better Auth session cookie",
},
},
},
sessionCookieName: "better-auth.session_token",
tags: [...openApiTags],
});
// Normalize file upload media types that fumadocs-openapi doesn't support