mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-02-12 22:44:11 -05:00
101 lines
2.0 KiB
TypeScript
101 lines
2.0 KiB
TypeScript
import { sql } from "drizzle-orm";
|
|
import {
|
|
check,
|
|
date,
|
|
integer,
|
|
primaryKey,
|
|
smallint,
|
|
text,
|
|
timestamp,
|
|
uuid,
|
|
varchar,
|
|
} from "drizzle-orm/pg-core";
|
|
import { externalid, image, language, schema } from "./utils";
|
|
|
|
export const showKind = schema.enum("show_kind", ["serie", "movie"]);
|
|
export const showStatus = schema.enum("show_status", [
|
|
"unknown",
|
|
"finished",
|
|
"airing",
|
|
"planned",
|
|
]);
|
|
export const genres = schema.enum("genres", [
|
|
"action",
|
|
"adventure",
|
|
"animation",
|
|
"comedy",
|
|
"crime",
|
|
"documentary",
|
|
"drama",
|
|
"family",
|
|
"fantasy",
|
|
"history",
|
|
"horror",
|
|
"music",
|
|
"mystery",
|
|
"romance",
|
|
"science-fiction",
|
|
"thriller",
|
|
"war",
|
|
"western",
|
|
"kids",
|
|
"reality",
|
|
"politics",
|
|
"soap",
|
|
"talk",
|
|
]);
|
|
|
|
export const shows = schema.table(
|
|
"shows",
|
|
{
|
|
pk: integer().primaryKey().generatedAlwaysAsIdentity(),
|
|
id: uuid().notNull().unique().defaultRandom(),
|
|
slug: varchar({ length: 255 }).notNull().unique(),
|
|
kind: showKind().notNull(),
|
|
genres: genres().array().notNull(),
|
|
rating: smallint(),
|
|
runtime: integer(),
|
|
status: showStatus().notNull(),
|
|
startAir: date(),
|
|
endAir: date(),
|
|
originalLanguage: language(),
|
|
|
|
externalId: externalid(),
|
|
|
|
createdAt: timestamp({ withTimezone: true, mode: "string" })
|
|
.notNull()
|
|
.defaultNow(),
|
|
nextRefresh: timestamp({ withTimezone: true, mode: "string" }).notNull(),
|
|
},
|
|
(t) => ({
|
|
ratingValid: check(
|
|
"ratingValid",
|
|
sql`0 <= ${t.rating} && ${t.rating} <= 100`,
|
|
),
|
|
runtimeValid: check("runtimeValid", sql`0 <= ${t.runtime}`),
|
|
}),
|
|
);
|
|
|
|
export const showTranslations = schema.table(
|
|
"show_translations",
|
|
{
|
|
pk: integer()
|
|
.notNull()
|
|
.references(() => shows.pk, { onDelete: "cascade" }),
|
|
language: language().notNull(),
|
|
name: text().notNull(),
|
|
description: text(),
|
|
tagline: text(),
|
|
aliases: text().array().notNull(),
|
|
tags: text().array().notNull(),
|
|
trailerUrl: text(),
|
|
poster: image(),
|
|
thumbnail: image(),
|
|
banner: image(),
|
|
logo: image(),
|
|
},
|
|
(t) => ({
|
|
pk: primaryKey({ columns: [t.pk, t.language] }),
|
|
}),
|
|
);
|