All checks were successful
Release / Scraper / Test (push) Successful in 10s
Release / UI / Build (push) Successful in 26s
Release / v2 / Build ui-v2 (push) Successful in 17s
Release / Scraper / Docker (push) Successful in 47s
Release / UI / Docker (push) Successful in 56s
CI / Scraper / Lint (pull_request) Successful in 7s
CI / Scraper / Test (pull_request) Successful in 8s
CI / UI / Build (pull_request) Successful in 16s
CI / Scraper / Docker Push (pull_request) Has been skipped
CI / UI / Docker Push (pull_request) Has been skipped
Release / v2 / Docker / ui-v2 (push) Successful in 56s
Release / v2 / Test backend (push) Successful in 4m35s
iOS CI / Build (pull_request) Successful in 4m28s
Release / v2 / Docker / backend (push) Successful in 1m29s
Release / v2 / Docker / runner (push) Successful in 1m39s
iOS CI / Test (pull_request) Successful in 9m51s
- backend/: Go API server and runner binaries with PocketBase + MinIO storage - ui-v2/: SvelteKit frontend rewrite - docker-compose-new.yml: compose file for the v2 stack - .gitea/workflows/release-v2.yaml: CI/CD for backend, runner, and ui-v2 Docker Hub images - scripts/pb-init.sh: migrate from wget to curl, add superuser bootstrap for fresh installs - .env.example: document DOCKER_BUILDKIT=1 for Colima users
132 lines
5.1 KiB
Go
132 lines
5.1 KiB
Go
// Package domain contains the core value types shared across all packages
|
|
// in this module. It has zero internal imports — only the standard library.
|
|
// Every other package imports domain; domain imports nothing from this module.
|
|
package domain
|
|
|
|
import "time"
|
|
|
|
// ── Book types ────────────────────────────────────────────────────────────────
|
|
|
|
// BookMeta carries all bibliographic information about a novel.
|
|
type BookMeta struct {
|
|
Slug string `json:"slug"`
|
|
Title string `json:"title"`
|
|
Author string `json:"author"`
|
|
Cover string `json:"cover,omitempty"`
|
|
Status string `json:"status,omitempty"`
|
|
Genres []string `json:"genres,omitempty"`
|
|
Summary string `json:"summary,omitempty"`
|
|
TotalChapters int `json:"total_chapters,omitempty"`
|
|
SourceURL string `json:"source_url"`
|
|
Ranking int `json:"ranking,omitempty"`
|
|
}
|
|
|
|
// CatalogueEntry is a lightweight book reference returned by catalogue pages.
|
|
type CatalogueEntry struct {
|
|
Title string `json:"title"`
|
|
URL string `json:"url"`
|
|
}
|
|
|
|
// ChapterRef is a reference to a single chapter returned by chapter-list pages.
|
|
type ChapterRef struct {
|
|
Number int `json:"number"`
|
|
Title string `json:"title"`
|
|
URL string `json:"url"`
|
|
Volume int `json:"volume,omitempty"`
|
|
}
|
|
|
|
// Chapter contains the fully-extracted text of a single chapter.
|
|
type Chapter struct {
|
|
Ref ChapterRef `json:"ref"`
|
|
Text string `json:"text"`
|
|
}
|
|
|
|
// RankingItem represents a single entry in the novel ranking list.
|
|
type RankingItem struct {
|
|
Rank int `json:"rank"`
|
|
Slug string `json:"slug"`
|
|
Title string `json:"title"`
|
|
Author string `json:"author,omitempty"`
|
|
Cover string `json:"cover,omitempty"`
|
|
Status string `json:"status,omitempty"`
|
|
Genres []string `json:"genres,omitempty"`
|
|
SourceURL string `json:"source_url,omitempty"`
|
|
Updated time.Time `json:"updated,omitempty"`
|
|
}
|
|
|
|
// ── Storage record types ──────────────────────────────────────────────────────
|
|
|
|
// ChapterInfo is a lightweight chapter descriptor stored in the index.
|
|
type ChapterInfo struct {
|
|
Number int `json:"number"`
|
|
Title string `json:"title"`
|
|
Date string `json:"date,omitempty"`
|
|
}
|
|
|
|
// ReadingProgress holds a single user's reading position for one book.
|
|
type ReadingProgress struct {
|
|
Slug string `json:"slug"`
|
|
Chapter int `json:"chapter"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
// ── Task record types ─────────────────────────────────────────────────────────
|
|
|
|
// TaskStatus enumerates the lifecycle states of any task.
|
|
type TaskStatus string
|
|
|
|
const (
|
|
TaskStatusPending TaskStatus = "pending"
|
|
TaskStatusRunning TaskStatus = "running"
|
|
TaskStatusDone TaskStatus = "done"
|
|
TaskStatusFailed TaskStatus = "failed"
|
|
TaskStatusCancelled TaskStatus = "cancelled"
|
|
)
|
|
|
|
// ScrapeTask represents a book-scraping job stored in PocketBase.
|
|
type ScrapeTask struct {
|
|
ID string `json:"id"`
|
|
Kind string `json:"kind"` // "catalogue" | "book" | "book_range"
|
|
TargetURL string `json:"target_url"` // non-empty for single-book tasks
|
|
FromChapter int `json:"from_chapter,omitempty"`
|
|
ToChapter int `json:"to_chapter,omitempty"`
|
|
WorkerID string `json:"worker_id,omitempty"`
|
|
Status TaskStatus `json:"status"`
|
|
BooksFound int `json:"books_found"`
|
|
ChaptersScraped int `json:"chapters_scraped"`
|
|
ChaptersSkipped int `json:"chapters_skipped"`
|
|
Errors int `json:"errors"`
|
|
Started time.Time `json:"started"`
|
|
Finished time.Time `json:"finished,omitempty"`
|
|
ErrorMessage string `json:"error_message,omitempty"`
|
|
}
|
|
|
|
// ScrapeResult is the outcome reported by the runner after finishing a ScrapeTask.
|
|
type ScrapeResult struct {
|
|
BooksFound int `json:"books_found"`
|
|
ChaptersScraped int `json:"chapters_scraped"`
|
|
ChaptersSkipped int `json:"chapters_skipped"`
|
|
Errors int `json:"errors"`
|
|
ErrorMessage string `json:"error_message,omitempty"`
|
|
}
|
|
|
|
// AudioTask represents an audio-generation job stored in PocketBase.
|
|
type AudioTask struct {
|
|
ID string `json:"id"`
|
|
CacheKey string `json:"cache_key"` // "slug/chapter/voice"
|
|
Slug string `json:"slug"`
|
|
Chapter int `json:"chapter"`
|
|
Voice string `json:"voice"`
|
|
WorkerID string `json:"worker_id,omitempty"`
|
|
Status TaskStatus `json:"status"`
|
|
ErrorMessage string `json:"error_message,omitempty"`
|
|
Started time.Time `json:"started"`
|
|
Finished time.Time `json:"finished,omitempty"`
|
|
}
|
|
|
|
// AudioResult is the outcome reported by the runner after finishing an AudioTask.
|
|
type AudioResult struct {
|
|
ObjectKey string `json:"object_key,omitempty"`
|
|
ErrorMessage string `json:"error_message,omitempty"`
|
|
}
|