Major architectural simplification removing content type complexity: Database Schema: - Remove 'type' field from content and content_versions tables - Simplify to pure HTML storage with html_content + original_template - Regenerate all sqlc models for SQLite and PostgreSQL API Simplification: - Remove content type routing and validation - Eliminate type-specific handlers (text/markdown/structured) - Unified HTML-first approach for all content operations - Simplify CreateContent and UpdateContent to HTML-only Backend Enhancements: - Update enhancer to only generate data-content-id (no data-content-type) - Improve container expansion utilities with comprehensive block/inline rules - Add Phase 3 preparation with boundary-respecting traversal logic - Strengthen element classification for viable children detection Documentation: - Update TODO.md to reflect Phase 1-3 completion status - Add WORKING_ON.md documenting the architectural transformation - Mark container expansion and HTML-first architecture as complete This completes the transition to a unified HTML-first content management system with automatic style detection and element-based behavior, eliminating the complex multi-type system in favor of semantic HTML-driven editing.
176 lines
4.7 KiB
Go
176 lines
4.7 KiB
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.30.0
|
|
// source: versions.sql
|
|
|
|
package postgresql
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
)
|
|
|
|
const createContentVersion = `-- name: CreateContentVersion :exec
|
|
INSERT INTO content_versions (content_id, site_id, html_content, original_template, created_by)
|
|
VALUES ($1, $2, $3, $4, $5)
|
|
`
|
|
|
|
type CreateContentVersionParams struct {
|
|
ContentID string `json:"content_id"`
|
|
SiteID string `json:"site_id"`
|
|
HtmlContent string `json:"html_content"`
|
|
OriginalTemplate sql.NullString `json:"original_template"`
|
|
CreatedBy string `json:"created_by"`
|
|
}
|
|
|
|
func (q *Queries) CreateContentVersion(ctx context.Context, arg CreateContentVersionParams) error {
|
|
_, err := q.db.ExecContext(ctx, createContentVersion,
|
|
arg.ContentID,
|
|
arg.SiteID,
|
|
arg.HtmlContent,
|
|
arg.OriginalTemplate,
|
|
arg.CreatedBy,
|
|
)
|
|
return err
|
|
}
|
|
|
|
const deleteOldVersions = `-- name: DeleteOldVersions :exec
|
|
DELETE FROM content_versions
|
|
WHERE created_at < $1 AND site_id = $2
|
|
`
|
|
|
|
type DeleteOldVersionsParams struct {
|
|
CreatedBefore int64 `json:"created_before"`
|
|
SiteID string `json:"site_id"`
|
|
}
|
|
|
|
func (q *Queries) DeleteOldVersions(ctx context.Context, arg DeleteOldVersionsParams) error {
|
|
_, err := q.db.ExecContext(ctx, deleteOldVersions, arg.CreatedBefore, arg.SiteID)
|
|
return err
|
|
}
|
|
|
|
const getAllVersionsForSite = `-- name: GetAllVersionsForSite :many
|
|
SELECT
|
|
cv.version_id, cv.content_id, cv.site_id, cv.html_content, cv.original_template, cv.created_at, cv.created_by,
|
|
c.html_content as current_html_content
|
|
FROM content_versions cv
|
|
LEFT JOIN content c ON cv.content_id = c.id AND cv.site_id = c.site_id
|
|
WHERE cv.site_id = $1
|
|
ORDER BY cv.created_at DESC
|
|
LIMIT $2
|
|
`
|
|
|
|
type GetAllVersionsForSiteParams struct {
|
|
SiteID string `json:"site_id"`
|
|
LimitCount int32 `json:"limit_count"`
|
|
}
|
|
|
|
type GetAllVersionsForSiteRow struct {
|
|
VersionID int32 `json:"version_id"`
|
|
ContentID string `json:"content_id"`
|
|
SiteID string `json:"site_id"`
|
|
HtmlContent string `json:"html_content"`
|
|
OriginalTemplate sql.NullString `json:"original_template"`
|
|
CreatedAt int64 `json:"created_at"`
|
|
CreatedBy string `json:"created_by"`
|
|
CurrentHtmlContent sql.NullString `json:"current_html_content"`
|
|
}
|
|
|
|
func (q *Queries) GetAllVersionsForSite(ctx context.Context, arg GetAllVersionsForSiteParams) ([]GetAllVersionsForSiteRow, error) {
|
|
rows, err := q.db.QueryContext(ctx, getAllVersionsForSite, arg.SiteID, arg.LimitCount)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
var items []GetAllVersionsForSiteRow
|
|
for rows.Next() {
|
|
var i GetAllVersionsForSiteRow
|
|
if err := rows.Scan(
|
|
&i.VersionID,
|
|
&i.ContentID,
|
|
&i.SiteID,
|
|
&i.HtmlContent,
|
|
&i.OriginalTemplate,
|
|
&i.CreatedAt,
|
|
&i.CreatedBy,
|
|
&i.CurrentHtmlContent,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
items = append(items, i)
|
|
}
|
|
if err := rows.Close(); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := rows.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
return items, nil
|
|
}
|
|
|
|
const getContentVersion = `-- name: GetContentVersion :one
|
|
SELECT version_id, content_id, site_id, html_content, original_template, created_at, created_by
|
|
FROM content_versions
|
|
WHERE version_id = $1
|
|
`
|
|
|
|
func (q *Queries) GetContentVersion(ctx context.Context, versionID int32) (ContentVersion, error) {
|
|
row := q.db.QueryRowContext(ctx, getContentVersion, versionID)
|
|
var i ContentVersion
|
|
err := row.Scan(
|
|
&i.VersionID,
|
|
&i.ContentID,
|
|
&i.SiteID,
|
|
&i.HtmlContent,
|
|
&i.OriginalTemplate,
|
|
&i.CreatedAt,
|
|
&i.CreatedBy,
|
|
)
|
|
return i, err
|
|
}
|
|
|
|
const getContentVersionHistory = `-- name: GetContentVersionHistory :many
|
|
SELECT version_id, content_id, site_id, html_content, original_template, created_at, created_by
|
|
FROM content_versions
|
|
WHERE content_id = $1 AND site_id = $2
|
|
ORDER BY created_at DESC
|
|
LIMIT $3
|
|
`
|
|
|
|
type GetContentVersionHistoryParams struct {
|
|
ContentID string `json:"content_id"`
|
|
SiteID string `json:"site_id"`
|
|
LimitCount int32 `json:"limit_count"`
|
|
}
|
|
|
|
func (q *Queries) GetContentVersionHistory(ctx context.Context, arg GetContentVersionHistoryParams) ([]ContentVersion, error) {
|
|
rows, err := q.db.QueryContext(ctx, getContentVersionHistory, arg.ContentID, arg.SiteID, arg.LimitCount)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer rows.Close()
|
|
var items []ContentVersion
|
|
for rows.Next() {
|
|
var i ContentVersion
|
|
if err := rows.Scan(
|
|
&i.VersionID,
|
|
&i.ContentID,
|
|
&i.SiteID,
|
|
&i.HtmlContent,
|
|
&i.OriginalTemplate,
|
|
&i.CreatedAt,
|
|
&i.CreatedBy,
|
|
); err != nil {
|
|
return nil, err
|
|
}
|
|
items = append(items, i)
|
|
}
|
|
if err := rows.Close(); err != nil {
|
|
return nil, err
|
|
}
|
|
if err := rows.Err(); err != nil {
|
|
return nil, err
|
|
}
|
|
return items, nil
|
|
}
|