Wiki Phase 4: full-text search + revision history
Final phase of the wiki upgrade (see WIKI_UPGRADE.md). Schema (additive): wiki_revisions table (per-save content snapshots). The FULLTEXT index on wiki_pages(title, body) shipped in Phase 1. Search: - MATCH ... AGAINST natural-language search over title + body, ordered by relevance - public: GET /public/wiki?q= (published only); admin: GET /admin/wiki?q= (all statuses) - public wiki index gains a search box; admin list gains a search field Revision history: - every create/update snapshots the page into wiki_revisions - admin endpoints: list revisions, get one, and restore (restore overwrites the page, rebuilds links, and appends a new revision — history stays append-only); logged as wiki.revision.restore - editor gains a History modal: revision list + word-level diff (jsdiff) of a chosen revision against the current page, with one-click restore Verified end-to-end: search matches body and title; two edits produce three revisions; diff renders added/removed words; restore reverts and records a new revision. No console errors. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -321,11 +321,16 @@ phase if preferred). Do not merge a phase that hasn't been verified.
|
||||
- Implementation note: links are plain anchors to `/wiki/<slug>` (the WYSIWYG fits
|
||||
this better than `[[ ]]` syntax); the sanitizer also allows `data-wiki-slug`.
|
||||
|
||||
### Phase 4 — Discovery & trust
|
||||
### Phase 4 — Discovery & trust ✅
|
||||
- FULLTEXT search (public search box + admin filter); revision history list /
|
||||
diff / restore.
|
||||
- **Exit check**: search returns expected pages; edit a page twice, diff the
|
||||
revisions, restore an older one, confirm a new revision is recorded.
|
||||
- **Verified** (2026-06-27): `?q=` natural-language search matches on both body
|
||||
(`recipes`→crafting) and title (`monsters`); the public search box and admin
|
||||
filter both work. A page edited twice produced 3 revisions; the History modal
|
||||
shows a word-level diff (added vs removed) of an old revision against current;
|
||||
restoring reverted the page and appended a "Restored from revision #N" entry.
|
||||
|
||||
### Verification (every phase)
|
||||
Use the preview workflow, not manual hand-off: start the dev server, exercise the
|
||||
|
||||
10
client/package-lock.json
generated
10
client/package-lock.json
generated
@@ -12,6 +12,7 @@
|
||||
"@tiptap/extension-link": "^2.27.2",
|
||||
"@tiptap/react": "^2.27.2",
|
||||
"@tiptap/starter-kit": "^2.27.2",
|
||||
"diff": "^5.2.2",
|
||||
"dompurify": "^3.4.11",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
@@ -1794,6 +1795,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/diff": {
|
||||
"version": "5.2.2",
|
||||
"resolved": "https://registry.npmjs.org/diff/-/diff-5.2.2.tgz",
|
||||
"integrity": "sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A==",
|
||||
"license": "BSD-3-Clause",
|
||||
"engines": {
|
||||
"node": ">=0.3.1"
|
||||
}
|
||||
},
|
||||
"node_modules/dompurify": {
|
||||
"version": "3.4.11",
|
||||
"resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.4.11.tgz",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"@tiptap/extension-link": "^2.27.2",
|
||||
"@tiptap/react": "^2.27.2",
|
||||
"@tiptap/starter-kit": "^2.27.2",
|
||||
"diff": "^5.2.2",
|
||||
"dompurify": "^3.4.11",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
|
||||
@@ -53,6 +53,7 @@ export const api = {
|
||||
const qs = new URLSearchParams()
|
||||
if (opts.category) qs.set('category', opts.category)
|
||||
if (opts.tag) qs.set('tag', opts.tag)
|
||||
if (opts.q) qs.set('q', opts.q)
|
||||
const s = qs.toString()
|
||||
return req(`/public/wiki${s ? `?${s}` : ''}`)
|
||||
},
|
||||
@@ -90,6 +91,10 @@ export const api = {
|
||||
publishWiki: (slug, published) =>
|
||||
req(`/admin/wiki/${slug}/publish`, { method: 'PATCH', body: { published } }),
|
||||
deleteWiki: (slug) => req(`/admin/wiki/${slug}`, { method: 'DELETE' }),
|
||||
listWikiRevisions: (slug) => req(`/admin/wiki/${slug}/revisions`),
|
||||
getWikiRevision: (slug, id) => req(`/admin/wiki/${slug}/revisions/${id}`),
|
||||
restoreWikiRevision: (slug, id) =>
|
||||
req(`/admin/wiki/${slug}/revisions/${id}/restore`, { method: 'POST' }),
|
||||
listWikiTags: () => req('/admin/wiki/tags'),
|
||||
listWikiCategories: () => req('/admin/wiki/categories'),
|
||||
createWikiCategory: (data) => req('/admin/wiki/categories', { method: 'POST', body: data }),
|
||||
|
||||
@@ -9,7 +9,11 @@ import WikiCategories from './WikiCategories.jsx'
|
||||
export default function WikiAdmin() {
|
||||
const [tick, setTick] = useState(0)
|
||||
const reload = useCallback(() => setTick((t) => t + 1), [])
|
||||
const { loading, error, data } = useAsync(() => api.admin.listWiki(), [tick])
|
||||
const [q, setQ] = useState('')
|
||||
const { loading, error, data } = useAsync(
|
||||
() => api.admin.listWiki(q.trim() ? `?q=${encodeURIComponent(q.trim())}` : ''),
|
||||
[tick, q],
|
||||
)
|
||||
const [editing, setEditing] = useState(null) // null | 'new' | slug
|
||||
const [managingCats, setManagingCats] = useState(false)
|
||||
const pages = data || []
|
||||
@@ -21,6 +25,14 @@ export default function WikiAdmin() {
|
||||
{pages.length} page{pages.length === 1 ? '' : 's'} · edit content and structure
|
||||
</p>
|
||||
<div style={{ display: 'flex', gap: 10 }}>
|
||||
<input
|
||||
type="search"
|
||||
value={q}
|
||||
onChange={(e) => setQ(e.target.value)}
|
||||
className="input"
|
||||
placeholder="Search pages…"
|
||||
style={{ width: 200 }}
|
||||
/>
|
||||
<button onClick={() => setManagingCats(true)} className="pill">
|
||||
Manage sections
|
||||
</button>
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { lazy, Suspense, useEffect, useState } from 'react'
|
||||
import Modal from '../../../components/Modal.jsx'
|
||||
import WikiHistory from './WikiHistory.jsx'
|
||||
import { api } from '../../../api/client.js'
|
||||
|
||||
// Admin-only and heavy (TipTap) — load as its own chunk so the public bundle
|
||||
@@ -22,6 +23,7 @@ export default function WikiEditor({ slug, onClose, onSaved }) {
|
||||
const [loading, setLoading] = useState(isEdit)
|
||||
const [busy, setBusy] = useState(false)
|
||||
const [error, setError] = useState('')
|
||||
const [showHistory, setShowHistory] = useState(false)
|
||||
|
||||
// Categories (dropdown) + pages (internal-link picker), for both new and edit.
|
||||
useEffect(() => {
|
||||
@@ -110,6 +112,7 @@ export default function WikiEditor({ slug, onClose, onSaved }) {
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<Modal
|
||||
title={isEdit ? 'Edit wiki page' : 'New wiki page'}
|
||||
onClose={onClose}
|
||||
@@ -121,6 +124,11 @@ export default function WikiEditor({ slug, onClose, onSaved }) {
|
||||
Delete
|
||||
</button>
|
||||
)}
|
||||
{isEdit && (
|
||||
<button onClick={() => setShowHistory(true)} disabled={busy} className="pill">
|
||||
History
|
||||
</button>
|
||||
)}
|
||||
<button onClick={onClose} disabled={busy} className="pill">
|
||||
Cancel
|
||||
</button>
|
||||
@@ -208,6 +216,17 @@ export default function WikiEditor({ slug, onClose, onSaved }) {
|
||||
</div>
|
||||
)}
|
||||
</Modal>
|
||||
{showHistory && (
|
||||
<WikiHistory
|
||||
slug={slug}
|
||||
onClose={() => setShowHistory(false)}
|
||||
onRestored={() => {
|
||||
setShowHistory(false)
|
||||
onSaved()
|
||||
}}
|
||||
/>
|
||||
)}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
139
client/src/routes/admin/views/WikiHistory.jsx
Normal file
139
client/src/routes/admin/views/WikiHistory.jsx
Normal file
@@ -0,0 +1,139 @@
|
||||
import { useEffect, useMemo, useState } from 'react'
|
||||
import { diffWords } from 'diff'
|
||||
import Modal from '../../../components/Modal.jsx'
|
||||
import { dateTime } from '../../../lib/format.js'
|
||||
import { api } from '../../../api/client.js'
|
||||
|
||||
// Plain-text view of a body, for a readable word-level diff.
|
||||
function toText(html) {
|
||||
if (!html) return ''
|
||||
if (typeof window === 'undefined' || !window.DOMParser) return html
|
||||
const doc = new DOMParser().parseFromString(html, 'text/html')
|
||||
return doc.body.textContent || ''
|
||||
}
|
||||
|
||||
export default function WikiHistory({ slug, onClose, onRestored }) {
|
||||
const [revisions, setRevisions] = useState([])
|
||||
const [current, setCurrent] = useState(null)
|
||||
const [selected, setSelected] = useState(null) // full revision snapshot
|
||||
const [loading, setLoading] = useState(true)
|
||||
const [busy, setBusy] = useState(false)
|
||||
const [error, setError] = useState('')
|
||||
|
||||
useEffect(() => {
|
||||
let active = true
|
||||
Promise.all([api.admin.listWikiRevisions(slug), api.admin.getWiki(slug)])
|
||||
.then(([revs, page]) => {
|
||||
if (!active) return
|
||||
setRevisions(revs)
|
||||
setCurrent(page)
|
||||
})
|
||||
.catch(() => active && setError('Could not load history.'))
|
||||
.finally(() => active && setLoading(false))
|
||||
return () => {
|
||||
active = false
|
||||
}
|
||||
}, [slug])
|
||||
|
||||
async function selectRevision(id) {
|
||||
setError('')
|
||||
try {
|
||||
const rev = await api.admin.getWikiRevision(slug, id)
|
||||
setSelected(rev)
|
||||
} catch (err) {
|
||||
setError(err.message || 'Could not load revision.')
|
||||
}
|
||||
}
|
||||
|
||||
async function restore() {
|
||||
if (!selected) return
|
||||
if (!confirm(`Restore the page to revision #${selected.id}? This creates a new revision.`)) return
|
||||
setBusy(true)
|
||||
try {
|
||||
await api.admin.restoreWikiRevision(slug, selected.id)
|
||||
onRestored()
|
||||
} catch (err) {
|
||||
setError(err.message || 'Could not restore.')
|
||||
setBusy(false)
|
||||
}
|
||||
}
|
||||
|
||||
// Diff the selected revision (old) against the current saved page (new).
|
||||
const parts = useMemo(
|
||||
() => (selected ? diffWords(toText(selected.body), toText(current?.body || '')) : []),
|
||||
[selected, current],
|
||||
)
|
||||
|
||||
return (
|
||||
<Modal
|
||||
title={`History — ${slug}`}
|
||||
onClose={onClose}
|
||||
width={760}
|
||||
footer={
|
||||
<>
|
||||
<button onClick={onClose} disabled={busy} className="pill">
|
||||
Close
|
||||
</button>
|
||||
<button onClick={restore} disabled={busy || !selected} className="btn btn-primary btn-sq">
|
||||
{busy ? 'Restoring…' : 'Restore this revision'}
|
||||
</button>
|
||||
</>
|
||||
}
|
||||
>
|
||||
{loading ? (
|
||||
<span className="spin" />
|
||||
) : error ? (
|
||||
<p className="sans" style={{ margin: 0, color: '#d98b84', fontSize: '0.85rem' }}>{error}</p>
|
||||
) : (
|
||||
<div className="wiki-history">
|
||||
<ul className="wiki-history-list">
|
||||
{revisions.map((r, i) => (
|
||||
<li key={r.id}>
|
||||
<button
|
||||
type="button"
|
||||
className={`wiki-rev${selected?.id === r.id ? ' is-active' : ''}`}
|
||||
onClick={() => selectRevision(r.id)}
|
||||
>
|
||||
<span className="wiki-rev-note">
|
||||
{r.change_note || 'Edit'}
|
||||
{i === 0 && <span className="wiki-rev-latest"> · latest</span>}
|
||||
</span>
|
||||
<span className="wiki-rev-meta">
|
||||
{dateTime(r.created_at)}
|
||||
{r.editor ? ` · ${r.editor}` : ''}
|
||||
</span>
|
||||
</button>
|
||||
</li>
|
||||
))}
|
||||
{revisions.length === 0 && <li className="dim sans" style={{ fontSize: '0.85rem' }}>No revisions yet.</li>}
|
||||
</ul>
|
||||
|
||||
<div className="wiki-history-diff">
|
||||
{!selected ? (
|
||||
<p className="muted sans" style={{ fontSize: '0.9rem' }}>
|
||||
Select a revision to see what changed between it and the current page.
|
||||
</p>
|
||||
) : (
|
||||
<>
|
||||
<p className="sans dim" style={{ margin: '0 0 10px', fontSize: '0.76rem' }}>
|
||||
Diff: revision #{selected.id} → current
|
||||
</p>
|
||||
<div className="wiki-diff">
|
||||
{parts.length === 0 || (parts.length === 1 && !parts[0].added && !parts[0].removed) ? (
|
||||
<span className="muted">No textual differences.</span>
|
||||
) : (
|
||||
parts.map((p, i) => (
|
||||
<span key={i} className={p.added ? 'diff-add' : p.removed ? 'diff-del' : ''}>
|
||||
{p.value}
|
||||
</span>
|
||||
))
|
||||
)}
|
||||
</div>
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</Modal>
|
||||
)
|
||||
}
|
||||
@@ -1,3 +1,4 @@
|
||||
import { useState } from 'react'
|
||||
import { Link, useSearchParams } from 'react-router-dom'
|
||||
import PublicLayout from '../../components/PublicLayout.jsx'
|
||||
import PageHeader from '../../components/PageHeader.jsx'
|
||||
@@ -5,6 +6,30 @@ import { Loading, ErrorState, EmptyState } from '../../components/PageState.jsx'
|
||||
import { useAsync } from '../../lib/useAsync.js'
|
||||
import { api } from '../../api/client.js'
|
||||
|
||||
function SearchBox({ initial, onSubmit }) {
|
||||
const [term, setTerm] = useState(initial || '')
|
||||
return (
|
||||
<form
|
||||
onSubmit={(e) => {
|
||||
e.preventDefault()
|
||||
onSubmit(term.trim())
|
||||
}}
|
||||
style={{ display: 'flex', gap: 8, maxWidth: 460, margin: '0 auto 8px' }}
|
||||
>
|
||||
<input
|
||||
type="search"
|
||||
value={term}
|
||||
onChange={(e) => setTerm(e.target.value)}
|
||||
className="input"
|
||||
placeholder="Search the wiki…"
|
||||
/>
|
||||
<button type="submit" className="btn btn-primary btn-sq">
|
||||
Search
|
||||
</button>
|
||||
</form>
|
||||
)
|
||||
}
|
||||
|
||||
// Group published pages under their category, preserving category sort order and
|
||||
// collecting anything uncategorized into a trailing section.
|
||||
function groupByCategory(categories, pages) {
|
||||
@@ -36,16 +61,19 @@ function PageCard({ page }) {
|
||||
}
|
||||
|
||||
export default function Wiki() {
|
||||
const [searchParams] = useSearchParams()
|
||||
const [searchParams, setSearchParams] = useSearchParams()
|
||||
const activeCategory = searchParams.get('category')
|
||||
const activeTag = searchParams.get('tag')
|
||||
// Tag view fetches a tag-filtered page list; otherwise all pages (grouped here).
|
||||
const activeQ = searchParams.get('q')
|
||||
// Search / tag views fetch a filtered page list; otherwise all pages (grouped here).
|
||||
const pageOpts = activeQ ? { q: activeQ } : activeTag ? { tag: activeTag } : {}
|
||||
const { loading, error, data } = useAsync(
|
||||
() =>
|
||||
Promise.all([api.wikiCategories(), api.wiki(activeTag ? { tag: activeTag } : {})]).then(
|
||||
([categories, pages]) => ({ categories, pages }),
|
||||
),
|
||||
[activeTag],
|
||||
Promise.all([api.wikiCategories(), api.wiki(pageOpts)]).then(([categories, pages]) => ({
|
||||
categories,
|
||||
pages,
|
||||
})),
|
||||
[activeTag, activeQ],
|
||||
)
|
||||
|
||||
const allSections = data ? groupByCategory(data.categories, data.pages) : []
|
||||
@@ -53,7 +81,10 @@ export default function Wiki() {
|
||||
? allSections.filter((s) => s.slug === activeCategory)
|
||||
: allSections
|
||||
const hasPages = data && data.pages.length > 0
|
||||
const filtered = Boolean(activeCategory || activeTag)
|
||||
const flat = Boolean(activeTag || activeQ) // flat-list views
|
||||
const filtered = Boolean(activeCategory || activeTag || activeQ)
|
||||
|
||||
const runSearch = (term) => setSearchParams(term ? { q: term } : {})
|
||||
|
||||
return (
|
||||
<PublicLayout section="wiki">
|
||||
@@ -64,6 +95,8 @@ export default function Wiki() {
|
||||
title="Mysticmoon Wiki"
|
||||
lead="A calm starting point for shard guides, the world and its lore, gameplay systems, and community rules."
|
||||
/>
|
||||
<SearchBox initial={activeQ || ''} onSubmit={runSearch} />
|
||||
|
||||
{loading && <Loading />}
|
||||
{error && <ErrorState message="Could not load the wiki right now." />}
|
||||
{!loading && !error && !hasPages && !filtered && <EmptyState>No wiki pages yet.</EmptyState>}
|
||||
@@ -74,13 +107,14 @@ export default function Wiki() {
|
||||
← All sections
|
||||
</Link>
|
||||
{activeTag && <span className="muted"> · Tagged #{activeTag}</span>}
|
||||
{activeQ && <span className="muted"> · Results for “{activeQ}”</span>}
|
||||
</p>
|
||||
)}
|
||||
|
||||
{/* Tag view: a flat list of matching pages (tags cross categories). */}
|
||||
{!loading && !error && activeTag &&
|
||||
{/* Flat list: search results or a tag filter (both cross categories). */}
|
||||
{!loading && !error && flat &&
|
||||
(data.pages.length === 0 ? (
|
||||
<EmptyState>No pages with this tag.</EmptyState>
|
||||
<EmptyState>{activeQ ? 'No pages match that search.' : 'No pages with this tag.'}</EmptyState>
|
||||
) : (
|
||||
<div className="grid-4" style={{ marginTop: 12 }}>
|
||||
{data.pages.map((p) => (
|
||||
@@ -90,10 +124,10 @@ export default function Wiki() {
|
||||
))}
|
||||
|
||||
{/* Category / full view: grouped sections. */}
|
||||
{!loading && !error && !activeTag && hasPages && activeCategory && sections.length === 0 && (
|
||||
{!loading && !error && !flat && hasPages && activeCategory && sections.length === 0 && (
|
||||
<EmptyState>No pages in this section yet.</EmptyState>
|
||||
)}
|
||||
{!activeTag &&
|
||||
{!flat &&
|
||||
sections.map((section) => (
|
||||
<section key={section.id} style={{ marginTop: 36 }}>
|
||||
<h2
|
||||
|
||||
@@ -447,6 +447,86 @@ button[disabled] {
|
||||
border-bottom: 1px dotted #d98b84;
|
||||
}
|
||||
|
||||
/* ===== Wiki revision history ===== */
|
||||
.wiki-history {
|
||||
display: grid;
|
||||
grid-template-columns: 240px 1fr;
|
||||
gap: 18px;
|
||||
align-items: start;
|
||||
}
|
||||
@media (max-width: 640px) {
|
||||
.wiki-history {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
.wiki-history-list {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
max-height: 360px;
|
||||
overflow-y: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
}
|
||||
.wiki-rev {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
width: 100%;
|
||||
padding: 8px 10px;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 8px;
|
||||
background: var(--panel-flat);
|
||||
color: var(--text);
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
}
|
||||
.wiki-rev:hover {
|
||||
border-color: var(--accent);
|
||||
}
|
||||
.wiki-rev.is-active {
|
||||
border-color: var(--accent);
|
||||
background: var(--blue);
|
||||
}
|
||||
.wiki-rev-note {
|
||||
font-family: var(--sans);
|
||||
font-size: 0.86rem;
|
||||
color: var(--head);
|
||||
}
|
||||
.wiki-rev-latest {
|
||||
color: var(--accent);
|
||||
font-size: 0.74rem;
|
||||
}
|
||||
.wiki-rev-meta {
|
||||
font-family: var(--sans);
|
||||
font-size: 0.72rem;
|
||||
color: var(--dim);
|
||||
}
|
||||
.wiki-diff {
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
font-family: var(--sans);
|
||||
font-size: 0.92rem;
|
||||
line-height: 1.6;
|
||||
color: var(--text);
|
||||
max-height: 360px;
|
||||
overflow-y: auto;
|
||||
padding: 12px 14px;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 8px;
|
||||
background: var(--bg);
|
||||
}
|
||||
.diff-add {
|
||||
background: rgba(95, 185, 138, 0.22);
|
||||
color: #b9e6cd;
|
||||
}
|
||||
.diff-del {
|
||||
background: rgba(176, 102, 95, 0.24);
|
||||
color: #e3b0aa;
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
/* ===== Admin tables ===== */
|
||||
.adm-table {
|
||||
width: 100%;
|
||||
|
||||
@@ -82,6 +82,22 @@ CREATE TABLE IF NOT EXISTS wiki_links (
|
||||
INDEX idx_wiki_links_target (target_slug)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
-- Per-save content snapshots for history / diff / restore.
|
||||
CREATE TABLE IF NOT EXISTS wiki_revisions (
|
||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
page_id INT NOT NULL,
|
||||
title VARCHAR(200) NOT NULL,
|
||||
body MEDIUMTEXT NULL,
|
||||
excerpt VARCHAR(400) NULL,
|
||||
category_id INT NULL,
|
||||
editor_id INT NULL,
|
||||
change_note VARCHAR(280) NULL,
|
||||
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
CONSTRAINT fk_wiki_rev_page FOREIGN KEY (page_id) REFERENCES wiki_pages(id) ON DELETE CASCADE,
|
||||
CONSTRAINT fk_wiki_rev_editor FOREIGN KEY (editor_id) REFERENCES users(id) ON DELETE SET NULL,
|
||||
INDEX idx_wiki_rev_page (page_id, id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS settings (
|
||||
`key` VARCHAR(64) PRIMARY KEY,
|
||||
value TEXT NULL,
|
||||
|
||||
@@ -63,6 +63,17 @@ async function findPublishedBySlug(slug) {
|
||||
return rows[0] || null
|
||||
}
|
||||
|
||||
// Full-text search over title + body, ordered by relevance.
|
||||
async function searchSummaries(q, { publishedOnly = true } = {}) {
|
||||
const pub = publishedOnly ? 'AND p.published = 1' : ''
|
||||
return query(
|
||||
`SELECT ${SUMMARY_COLS} ${FROM}
|
||||
WHERE MATCH(p.title, p.body) AGAINST (? IN NATURAL LANGUAGE MODE) ${pub}
|
||||
ORDER BY MATCH(p.title, p.body) AGAINST (?) DESC, p.title ASC`,
|
||||
[q, q],
|
||||
)
|
||||
}
|
||||
|
||||
// ── Page writes ────────────────────────────────────────────────────────
|
||||
async function insert({
|
||||
slug,
|
||||
@@ -233,6 +244,29 @@ async function getExistingSlugs(slugs) {
|
||||
return new Set(rows.map((r) => r.slug))
|
||||
}
|
||||
|
||||
// ── Revisions ──────────────────────────────────────────────────────────
|
||||
async function insertRevision({ pageId, title, body, excerpt, categoryId, editorId, changeNote }) {
|
||||
return query(
|
||||
'INSERT INTO wiki_revisions (page_id, title, body, excerpt, category_id, editor_id, change_note) ' +
|
||||
'VALUES (?, ?, ?, ?, ?, ?, ?)',
|
||||
[pageId, title, body || null, excerpt || null, categoryId ?? null, editorId ?? null, changeNote || null],
|
||||
)
|
||||
}
|
||||
|
||||
async function listRevisions(pageId) {
|
||||
return query(
|
||||
`SELECT r.id, r.change_note, r.created_at, r.editor_id, u.username AS editor
|
||||
FROM wiki_revisions r LEFT JOIN users u ON u.id = r.editor_id
|
||||
WHERE r.page_id = ? ORDER BY r.id DESC`,
|
||||
[pageId],
|
||||
)
|
||||
}
|
||||
|
||||
async function findRevision(id) {
|
||||
const rows = await query('SELECT * FROM wiki_revisions WHERE id = ? LIMIT 1', [id])
|
||||
return rows[0] || null
|
||||
}
|
||||
|
||||
// ── Seeding (idempotent) ───────────────────────────────────────────────
|
||||
async function seedDefault(slug, title, body) {
|
||||
await query('INSERT IGNORE INTO wiki_pages (slug, title, body) VALUES (?, ?, ?)', [
|
||||
@@ -264,6 +298,7 @@ module.exports = {
|
||||
listAllSummaries,
|
||||
findBySlug,
|
||||
findPublishedBySlug,
|
||||
searchSummaries,
|
||||
insert,
|
||||
updateBySlug,
|
||||
deleteBySlug,
|
||||
@@ -283,6 +318,9 @@ module.exports = {
|
||||
insertLink,
|
||||
getBacklinks,
|
||||
getExistingSlugs,
|
||||
insertRevision,
|
||||
listRevisions,
|
||||
findRevision,
|
||||
seedDefault,
|
||||
seedDefaultCategory,
|
||||
assignCategoryBySlug,
|
||||
|
||||
@@ -34,6 +34,19 @@ async function rebuildLinks(pageId, html) {
|
||||
}
|
||||
}
|
||||
|
||||
// Snapshot the current content of a page into the revision history.
|
||||
async function writeRevision(page, editorId, changeNote = null) {
|
||||
await wikiDb.insertRevision({
|
||||
pageId: page.id,
|
||||
title: page.title,
|
||||
body: page.body,
|
||||
excerpt: page.excerpt,
|
||||
categoryId: page.category_id,
|
||||
editorId,
|
||||
changeNote,
|
||||
})
|
||||
}
|
||||
|
||||
// ── Pages ──────────────────────────────────────────────────────────────
|
||||
async function listPublished(filters = {}) {
|
||||
return wikiDb.listPublishedSummaries(filters)
|
||||
@@ -43,6 +56,10 @@ async function listAll(filters = {}) {
|
||||
return wikiDb.listAllSummaries(filters)
|
||||
}
|
||||
|
||||
async function search(q, opts = {}) {
|
||||
return wikiDb.searchSummaries(q, opts)
|
||||
}
|
||||
|
||||
// Admin detail: page + its tags.
|
||||
async function getBySlug(slug) {
|
||||
const page = await wikiDb.findBySlug(slug)
|
||||
@@ -77,6 +94,7 @@ async function create({ slug, title, body, excerpt, categoryId, published, updat
|
||||
const page = await wikiDb.findBySlug(slug)
|
||||
if (Array.isArray(tags)) await syncTags(page.id, tags)
|
||||
await rebuildLinks(page.id, clean)
|
||||
await writeRevision(page, updatedBy, 'Created')
|
||||
return getBySlug(slug)
|
||||
}
|
||||
|
||||
@@ -102,6 +120,8 @@ async function update(slug, input) {
|
||||
await wikiDb.updateBySlug(slug, fields)
|
||||
if (Array.isArray(input.tags)) await syncTags(current.id, input.tags)
|
||||
if (cleanForLinks != null) await rebuildLinks(current.id, cleanForLinks)
|
||||
const page = await wikiDb.findBySlug(slug)
|
||||
await writeRevision(page, input.updatedBy ?? null, input.changeNote || null)
|
||||
return getBySlug(slug)
|
||||
}
|
||||
|
||||
@@ -120,6 +140,42 @@ async function remove(slug) {
|
||||
return res
|
||||
}
|
||||
|
||||
// ── Revisions ──────────────────────────────────────────────────────────
|
||||
async function listRevisions(slug) {
|
||||
const page = await wikiDb.findBySlug(slug)
|
||||
if (!page) return null
|
||||
return wikiDb.listRevisions(page.id)
|
||||
}
|
||||
|
||||
async function getRevision(slug, revId) {
|
||||
const page = await wikiDb.findBySlug(slug)
|
||||
if (!page) return null
|
||||
const rev = await wikiDb.findRevision(revId)
|
||||
if (!rev || rev.page_id !== page.id) return null
|
||||
return rev
|
||||
}
|
||||
|
||||
// Restore an old revision: overwrite the page with the snapshot, rebuild links,
|
||||
// then record a new revision (history stays append-only).
|
||||
async function restoreRevision(slug, revId, editorId) {
|
||||
const page = await wikiDb.findBySlug(slug)
|
||||
if (!page) return null
|
||||
const rev = await wikiDb.findRevision(revId)
|
||||
if (!rev || rev.page_id !== page.id) return null
|
||||
|
||||
await wikiDb.updateBySlug(slug, {
|
||||
title: rev.title,
|
||||
body: rev.body,
|
||||
excerpt: rev.excerpt,
|
||||
category_id: rev.category_id,
|
||||
updated_by: editorId,
|
||||
})
|
||||
await rebuildLinks(page.id, rev.body)
|
||||
const restored = await wikiDb.findBySlug(slug)
|
||||
await writeRevision(restored, editorId, `Restored from revision #${revId}`)
|
||||
return getBySlug(slug)
|
||||
}
|
||||
|
||||
// ── Tags ───────────────────────────────────────────────────────────────
|
||||
async function listTags() {
|
||||
return wikiDb.listTags()
|
||||
@@ -164,12 +220,16 @@ async function removeCategory(id) {
|
||||
module.exports = {
|
||||
listPublished,
|
||||
listAll,
|
||||
search,
|
||||
getBySlug,
|
||||
getPublishedBySlug,
|
||||
create,
|
||||
update,
|
||||
setPublished,
|
||||
remove,
|
||||
listRevisions,
|
||||
getRevision,
|
||||
restoreRevision,
|
||||
listTags,
|
||||
getTagBySlug,
|
||||
listCategories,
|
||||
|
||||
@@ -172,6 +172,9 @@ async function uploadFile(req, res) {
|
||||
// ── Wiki pages ─────────────────────────────────────────────────────────
|
||||
async function listWiki(req, res) {
|
||||
try {
|
||||
const q = (req.query.q || '').trim()
|
||||
if (q) return res.json(await wiki.search(q, { publishedOnly: false }))
|
||||
|
||||
const filters = {}
|
||||
if (req.query.category) {
|
||||
const category = await wiki.getCategoryBySlug(req.query.category)
|
||||
@@ -246,6 +249,7 @@ async function updateWiki(req, res) {
|
||||
if ('body' in req.body) input.body = req.body.body || null
|
||||
if ('excerpt' in req.body) input.excerpt = req.body.excerpt || null
|
||||
if ('published' in req.body) input.published = Boolean(req.body.published)
|
||||
if ('change_note' in req.body) input.changeNote = req.body.change_note
|
||||
if ('tags' in req.body) input.tags = Array.isArray(req.body.tags) ? req.body.tags : []
|
||||
if ('category_id' in req.body) {
|
||||
const cat = await resolveCategoryId(req.body)
|
||||
@@ -288,6 +292,45 @@ async function deleteWiki(req, res) {
|
||||
}
|
||||
}
|
||||
|
||||
// ── Wiki revisions ─────────────────────────────────────────────────────
|
||||
async function listWikiRevisions(req, res) {
|
||||
try {
|
||||
const revisions = await wiki.listRevisions(req.params.slug)
|
||||
if (revisions == null) return res.status(404).json({ message: 'Not found' })
|
||||
return res.json(revisions)
|
||||
} catch (err) {
|
||||
log.error('listWikiRevisions', err)
|
||||
return res.status(500).json({ message: 'Internal Server Error' })
|
||||
}
|
||||
}
|
||||
|
||||
async function getWikiRevision(req, res) {
|
||||
try {
|
||||
const rev = await wiki.getRevision(req.params.slug, Number(req.params.id))
|
||||
if (!rev) return res.status(404).json({ message: 'Not found' })
|
||||
return res.json(rev)
|
||||
} catch (err) {
|
||||
log.error('getWikiRevision', err)
|
||||
return res.status(500).json({ message: 'Internal Server Error' })
|
||||
}
|
||||
}
|
||||
|
||||
async function restoreWikiRevision(req, res) {
|
||||
try {
|
||||
const page = await wiki.restoreRevision(req.params.slug, Number(req.params.id), req.user.id)
|
||||
if (!page) return res.status(404).json({ message: 'Not found' })
|
||||
await activity.log({
|
||||
req,
|
||||
action: 'wiki.revision.restore',
|
||||
detail: { slug: req.params.slug, revision: Number(req.params.id) },
|
||||
})
|
||||
return res.json(page)
|
||||
} catch (err) {
|
||||
log.error('restoreWikiRevision', err)
|
||||
return res.status(500).json({ message: 'Internal Server Error' })
|
||||
}
|
||||
}
|
||||
|
||||
// ── Wiki tags ──────────────────────────────────────────────────────────
|
||||
async function listWikiTags(req, res) {
|
||||
try {
|
||||
@@ -488,6 +531,9 @@ module.exports = {
|
||||
updateWiki,
|
||||
publishWiki,
|
||||
deleteWiki,
|
||||
listWikiRevisions,
|
||||
getWikiRevision,
|
||||
restoreWikiRevision,
|
||||
listWikiTags,
|
||||
listWikiCategories,
|
||||
createWikiCategory,
|
||||
|
||||
@@ -114,6 +114,7 @@ adminRouter.put(
|
||||
body('category_id').optional({ values: 'null' }).isInt(),
|
||||
body('published').optional().isBoolean(),
|
||||
body('tags').optional().isArray(),
|
||||
body('change_note').optional({ values: 'falsy' }).isString().isLength({ max: 280 }),
|
||||
validate,
|
||||
ctrl.updateWiki,
|
||||
)
|
||||
@@ -123,6 +124,14 @@ adminRouter.patch(
|
||||
validate,
|
||||
ctrl.publishWiki,
|
||||
)
|
||||
adminRouter.get('/wiki/:slug/revisions', ctrl.listWikiRevisions)
|
||||
adminRouter.get('/wiki/:slug/revisions/:id', param('id').isInt(), validate, ctrl.getWikiRevision)
|
||||
adminRouter.post(
|
||||
'/wiki/:slug/revisions/:id/restore',
|
||||
param('id').isInt(),
|
||||
validate,
|
||||
ctrl.restoreWikiRevision,
|
||||
)
|
||||
adminRouter.delete('/wiki/:slug', ctrl.deleteWiki)
|
||||
|
||||
// ── Settings ──────────────────────────────────────────────────────────
|
||||
|
||||
@@ -68,6 +68,10 @@ async function getWikiTags(req, res) {
|
||||
|
||||
async function getWikiList(req, res) {
|
||||
try {
|
||||
// Full-text search takes precedence over category/tag filters.
|
||||
const q = (req.query.q || '').trim()
|
||||
if (q) return res.json(await wiki.search(q, { publishedOnly: true }))
|
||||
|
||||
const filters = {}
|
||||
if (req.query.category) {
|
||||
const category = await wiki.getCategoryBySlug(req.query.category)
|
||||
|
||||
Reference in New Issue
Block a user