Add Logbuch: project update blog with admin, media and API

Public archive with sidebar navigation, project pages, month archive,
search and entry pages with image blocks. Admin area for brands,
projects, post types, users, api clients, media and the entry editor
with drag and drop images, preview per audience, scheduling and
publish checks. Read and write API with bearer tokens, audience
scoping, idempotent creation, OpenAPI document and editorial guide.
Magic link login with configurable allowed domains, whole app behind
the session gate. 456 tests including design rule checks.
This commit is contained in:
Matthias Giesselmann
2026-07-31 21:33:42 +02:00
commit b90ff252d1
291 changed files with 43671 additions and 0 deletions
+74
View File
@@ -0,0 +1,74 @@
import { sql } from 'drizzle-orm'
import { index, integer, jsonb, pgEnum, pgTable, primaryKey, text, timestamp, unique, uuid } from 'drizzle-orm/pg-core'
import { projects } from './brands'
import { media } from './media'
import { postTypes } from './post-types'
export const postAudience = pgEnum('post_audience', ['internal', 'customer', 'public'])
export const postStatus = pgEnum('post_status', ['draft', 'review', 'scheduled', 'published', 'archived'])
export const postLocale = pgEnum('post_locale', ['de', 'en'])
export const issueStatus = pgEnum('issue_status', ['draft', 'scheduled', 'published'])
export const issues = pgTable('issue', {
id: uuid('id').primaryKey().defaultRandom(),
projectId: uuid('project_id').notNull().references(() => projects.id, { onDelete: 'cascade' }),
title: text('title').notNull(),
periodFrom: timestamp('period_from', { withTimezone: true }),
periodTo: timestamp('period_to', { withTimezone: true }),
status: issueStatus('status').notNull().default('draft'),
publishAt: timestamp('publish_at', { withTimezone: true }),
createdAt: timestamp('created_at', { withTimezone: true }).notNull().defaultNow(),
})
export const posts = pgTable('post', {
id: uuid('id').primaryKey().defaultRandom(),
projectId: uuid('project_id').notNull().references(() => projects.id, { onDelete: 'cascade' }),
issueId: uuid('issue_id').references(() => issues.id, { onDelete: 'set null' }),
number: integer('number').notNull(),
slug: text('slug').notNull(),
title: text('title').notNull(),
teaser: text('teaser'),
typeId: uuid('type_id')
.notNull()
.default(sql`post_type_default()`)
.references(() => postTypes.id, { onDelete: 'restrict' }),
audience: postAudience('audience').notNull().default('internal'),
status: postStatus('status').notNull().default('draft'),
locale: postLocale('locale').notNull().default('de'),
translationGroup: uuid('translation_group'),
publishAt: timestamp('publish_at', { withTimezone: true }),
authorName: text('author_name'),
coverMediaId: uuid('cover_media_id').references(() => media.id, { onDelete: 'set null' }),
createdAt: timestamp('created_at', { withTimezone: true }).notNull().defaultNow(),
updatedAt: timestamp('updated_at', { withTimezone: true }).notNull().defaultNow(),
}, table => [
unique('post_project_slug').on(table.projectId, table.slug),
unique('post_project_number').on(table.projectId, table.number),
index('post_publish_at').on(table.publishAt),
index('post_project_status').on(table.projectId, table.status),
])
export const blocks = pgTable('block', {
id: uuid('id').primaryKey().defaultRandom(),
postId: uuid('post_id').notNull().references(() => posts.id, { onDelete: 'cascade' }),
sort: integer('sort').notNull().default(0),
type: text('type').notNull(),
data: jsonb('data').$type<Record<string, unknown>>().notNull().default({}),
}, table => [index('block_post_sort').on(table.postId, table.sort)])
export const tags = pgTable('tag', {
id: uuid('id').primaryKey().defaultRandom(),
projectId: uuid('project_id').notNull().references(() => projects.id, { onDelete: 'cascade' }),
slug: text('slug').notNull(),
label: text('label').notNull(),
}, table => [unique('tag_project_slug').on(table.projectId, table.slug)])
export const postTags = pgTable('post_tag', {
postId: uuid('post_id').notNull().references(() => posts.id, { onDelete: 'cascade' }),
tagId: uuid('tag_id').notNull().references(() => tags.id, { onDelete: 'cascade' }),
}, table => [primaryKey({ columns: [table.postId, table.tagId] })])
export type Issue = typeof issues.$inferSelect
export type Post = typeof posts.$inferSelect
export type Block = typeof blocks.$inferSelect
export type Tag = typeof tags.$inferSelect