Backend
- Post 加 cover_url,Tag 加 color;老库 ALTER 兼容
- admin API: GET /api/admin/dashboard,POST /bulk,POST /tags/:id/merge,
PUT /tags/:id 接 {name,color},Settings 加 light_skin_id(兼容老 theme_id)
- 白名单兜底(非法 light_skin_id 落 paper)
- 新增合并 / Dashboard / Theme 测试覆盖
Frontend
- AdminLayout 改为侧边栏布局;新增 Dashboard 总览页
- PostsView 卡片化预览 + 筛选 chip + 批量操作 + 排序
- EditorView 增强:封面图 / WYSIWYG↔MD 双模式 / 实时大纲 / 字数统计 /
自动保存条 / ⌘S / unsaved 守卫(beforeunload + beforeRouteLeave)
- TagsView 加色板 + 合并到目标
- SettingsView 主题外观改为「亮色皮肤」三选一 + 「暗色皮肤」固定墨色说明
- 新增 CommandPalette(⌘K)+ ShortcutsPanel(?)
- api.js 接新接口;router.js 拆 /admin → /admin/posts
主题 / 皮肤双轴
- site.js: themeMode(light/dark/auto)+ light_skin_id;data-theme 前台,
data-admin-theme 后台(仅跟随 mode 切明暗)
- styles.css: :root[data-theme] 四套皮肤 + :root[data-admin-theme=dark] 后台墨感
- 修 sticky head / ThemeSwitcher / 表单 / 批量条 等 token 引用
- 后台用独立 --admin-* 系列,与前台主题解耦
- 左栏底部放 inline 形态 ThemeSwitcher(图标按钮 36×36),mobile 保留浮窗
a11y
- 全局 :focus-visible 描边(前后台跟随 token)
- prefers-reduced-motion 全局降级
- color-scheme 随主题切
- meta theme-color 双套(light/dark)
- 命令面板 / 快捷键面板:role=dialog aria-modal aria-label + 搜索框 aria-label
- icon-only 按钮加 aria-label(tag × / 清除选择 / 移除封面等)
- 输入框 aria-label + spellcheck=false
- PostsView 筛选同步 URL(可分享、可刷新保留)
- img width/height + loading=lazy
- utils.js 用 Intl.DateTimeFormat(zh-CN / sv-SE)
431 lines
10 KiB
Go
431 lines
10 KiB
Go
// Package admin serves the authenticated surface at /api/admin/*.
|
|
// It is mounted separately from the public API so the two never share a
|
|
// handler chain.
|
|
package admin
|
|
|
|
import (
|
|
"crypto/subtle"
|
|
"errors"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"oneblog/internal/config"
|
|
"oneblog/internal/httpx"
|
|
"oneblog/internal/model"
|
|
"oneblog/internal/store"
|
|
)
|
|
|
|
type API struct {
|
|
Store *store.Store
|
|
Cfg *config.Config
|
|
Sessions *Sessions
|
|
}
|
|
|
|
const cookieName = "one_session"
|
|
|
|
func (a *API) Routes() http.Handler {
|
|
mux := http.NewServeMux()
|
|
mux.HandleFunc("/api/admin/login", a.login)
|
|
mux.HandleFunc("/api/admin/logout", a.logout)
|
|
mux.HandleFunc("/api/admin/me", a.guard(a.me))
|
|
|
|
mux.HandleFunc("/api/admin/dashboard", a.guard(a.dashboard))
|
|
mux.HandleFunc("/api/admin/posts", a.guard(a.listPosts))
|
|
mux.HandleFunc("/api/admin/posts/", a.guard(a.postByID))
|
|
mux.HandleFunc("/api/admin/tags", a.guard(a.listTags))
|
|
mux.HandleFunc("/api/admin/tags/", a.guard(a.tagByID))
|
|
mux.HandleFunc("/api/admin/settings", a.guard(a.settings))
|
|
return mux
|
|
}
|
|
|
|
// guard requires a valid session; the token may arrive as a cookie (browser)
|
|
// or as a Bearer token (CLI / API client).
|
|
func (a *API) guard(next http.HandlerFunc) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
token := bearer(r)
|
|
if token == "" {
|
|
if c, err := r.Cookie(cookieName); err == nil {
|
|
token = c.Value
|
|
}
|
|
}
|
|
if token == "" || !a.valid(token) {
|
|
httpx.Unauthorized(w)
|
|
return
|
|
}
|
|
next(w, r)
|
|
}
|
|
}
|
|
|
|
func bearer(r *http.Request) string {
|
|
h := r.Header.Get("Authorization")
|
|
if strings.HasPrefix(strings.ToLower(h), "bearer ") {
|
|
return strings.TrimSpace(h[7:])
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (a *API) valid(token string) bool {
|
|
_, err := a.Sessions.Verify(token)
|
|
return err == nil
|
|
}
|
|
|
|
// ---------- auth ----------
|
|
|
|
type loginRequest struct {
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
}
|
|
|
|
func (a *API) login(w http.ResponseWriter, r *http.Request) {
|
|
if r.Method != http.MethodPost {
|
|
httpx.Error(w, http.StatusMethodNotAllowed, "POST required")
|
|
return
|
|
}
|
|
var in loginRequest
|
|
if err := httpx.Decode(r, &in); err != nil {
|
|
httpx.BadRequest(w, "invalid body")
|
|
return
|
|
}
|
|
userOK := subtle.ConstantTimeCompare([]byte(in.Username), []byte(a.Cfg.AdminUser)) == 1
|
|
passOK := subtle.ConstantTimeCompare([]byte(in.Password), []byte(a.Cfg.AdminPass)) == 1
|
|
if !userOK || !passOK {
|
|
httpx.Unauthorized(w)
|
|
return
|
|
}
|
|
token, exp := a.Sessions.Issue(a.Cfg.AdminUser)
|
|
http.SetCookie(w, &http.Cookie{
|
|
Name: cookieName,
|
|
Value: token,
|
|
Path: "/",
|
|
HttpOnly: true,
|
|
SameSite: http.SameSiteLaxMode,
|
|
Expires: exp,
|
|
MaxAge: a.Sessions.TTL(),
|
|
})
|
|
httpx.OK(w, map[string]any{"token": token, "expires_at": exp.UTC().Format(rfc3339)})
|
|
}
|
|
|
|
const rfc3339 = "2006-01-02T15:04:05Z07:00"
|
|
|
|
func (a *API) logout(w http.ResponseWriter, r *http.Request) {
|
|
http.SetCookie(w, &http.Cookie{
|
|
Name: cookieName,
|
|
Value: "",
|
|
Path: "/",
|
|
HttpOnly: true,
|
|
SameSite: http.SameSiteLaxMode,
|
|
MaxAge: -1,
|
|
})
|
|
httpx.OK(w, map[string]any{"ok": true})
|
|
}
|
|
|
|
func (a *API) me(w http.ResponseWriter, r *http.Request) {
|
|
httpx.OK(w, map[string]any{"user": a.Cfg.AdminUser})
|
|
}
|
|
|
|
// ---------- posts ----------
|
|
|
|
func (a *API) listPosts(w http.ResponseWriter, r *http.Request) {
|
|
switch r.Method {
|
|
case http.MethodGet:
|
|
o := store.ListOptions{
|
|
Kind: httpx.QueryString(r, "kind"),
|
|
Tag: httpx.QueryString(r, "tag"),
|
|
Query: httpx.QueryString(r, "q"),
|
|
Status: httpx.QueryString(r, "status"),
|
|
OrderBy: httpx.QueryString(r, "order"),
|
|
Page: httpx.QueryInt(r, "page", 1),
|
|
Size: httpx.QueryInt(r, "size", 20),
|
|
}
|
|
if o.Status == "" {
|
|
o.Status = "any"
|
|
}
|
|
page, err := a.Store.List(o)
|
|
if err != nil {
|
|
httpx.ServerError(w, err)
|
|
return
|
|
}
|
|
httpx.OK(w, page)
|
|
case http.MethodPost:
|
|
var in model.PostInput
|
|
if err := httpx.Decode(r, &in); err != nil {
|
|
httpx.BadRequest(w, "invalid body")
|
|
return
|
|
}
|
|
in.Status = store.NormalizeStatus(in.Status)
|
|
p, err := a.Store.Create(in)
|
|
if err != nil {
|
|
httpx.ServerError(w, err)
|
|
return
|
|
}
|
|
httpx.Created(w, p)
|
|
default:
|
|
httpx.Error(w, http.StatusMethodNotAllowed, "GET/POST required")
|
|
}
|
|
}
|
|
|
|
func (a *API) postByID(w http.ResponseWriter, r *http.Request) {
|
|
rest := strings.Trim(strings.TrimPrefix(r.URL.Path, "/api/admin/posts/"), "/")
|
|
if rest == "" {
|
|
a.listPosts(w, r)
|
|
return
|
|
}
|
|
if rest == "bulk" {
|
|
a.bulkPosts(w, r)
|
|
return
|
|
}
|
|
id, err := parseInt(rest)
|
|
if err != nil {
|
|
httpx.BadRequest(w, "bad post id")
|
|
return
|
|
}
|
|
switch r.Method {
|
|
case http.MethodGet:
|
|
p, err := a.Store.Get(id)
|
|
writeOne(w, p, err)
|
|
case http.MethodPut, http.MethodPatch:
|
|
var in model.PostInput
|
|
if err := httpx.Decode(r, &in); err != nil {
|
|
httpx.BadRequest(w, "invalid body")
|
|
return
|
|
}
|
|
if in.Status != "" {
|
|
in.Status = store.NormalizeStatus(in.Status)
|
|
}
|
|
p, err := a.Store.Update(id, in)
|
|
writeOne(w, p, err)
|
|
case http.MethodDelete:
|
|
if err := a.Store.Delete(id); err != nil {
|
|
if errors.Is(err, store.ErrNotFound) {
|
|
httpx.NotFound(w)
|
|
return
|
|
}
|
|
httpx.ServerError(w, err)
|
|
return
|
|
}
|
|
httpx.OK(w, map[string]any{"ok": true})
|
|
default:
|
|
httpx.Error(w, http.StatusMethodNotAllowed, "GET/PUT/DELETE required")
|
|
}
|
|
}
|
|
|
|
func writeOne(w http.ResponseWriter, p model.Post, err error) {
|
|
if err != nil {
|
|
if errors.Is(err, store.ErrNotFound) {
|
|
httpx.NotFound(w)
|
|
return
|
|
}
|
|
httpx.ServerError(w, err)
|
|
return
|
|
}
|
|
httpx.OK(w, p)
|
|
}
|
|
|
|
// ---------- tags ----------
|
|
|
|
func (a *API) listTags(w http.ResponseWriter, r *http.Request) {
|
|
switch r.Method {
|
|
case http.MethodGet:
|
|
tags, err := a.Store.ListTags()
|
|
if err != nil {
|
|
httpx.ServerError(w, err)
|
|
return
|
|
}
|
|
if tags == nil {
|
|
tags = []model.Tag{}
|
|
}
|
|
httpx.OK(w, map[string]any{"tags": tags})
|
|
case http.MethodPost:
|
|
var in struct {
|
|
Name string `json:"name"`
|
|
}
|
|
if err := httpx.Decode(r, &in); err != nil {
|
|
httpx.BadRequest(w, "invalid body")
|
|
return
|
|
}
|
|
name := strings.TrimSpace(in.Name)
|
|
if name == "" {
|
|
httpx.BadRequest(w, "name required")
|
|
return
|
|
}
|
|
t, err := a.Store.CreateTag(name)
|
|
if err != nil {
|
|
httpx.ServerError(w, err)
|
|
return
|
|
}
|
|
httpx.Created(w, t)
|
|
default:
|
|
httpx.Error(w, http.StatusMethodNotAllowed, "GET/POST required")
|
|
}
|
|
}
|
|
|
|
func (a *API) tagByID(w http.ResponseWriter, r *http.Request) {
|
|
rest := strings.Trim(strings.TrimPrefix(r.URL.Path, "/api/admin/tags/"), "/")
|
|
parts := strings.SplitN(rest, "/", 2)
|
|
id, err := parseInt(parts[0])
|
|
if err != nil {
|
|
httpx.BadRequest(w, "bad tag id")
|
|
return
|
|
}
|
|
if len(parts) == 2 && parts[1] == "merge" {
|
|
a.mergeTag(w, r, id)
|
|
return
|
|
}
|
|
switch r.Method {
|
|
case http.MethodPut, http.MethodPatch:
|
|
var in struct {
|
|
Name string `json:"name"`
|
|
Color string `json:"color"`
|
|
}
|
|
if err := httpx.Decode(r, &in); err != nil {
|
|
httpx.BadRequest(w, "invalid body")
|
|
return
|
|
}
|
|
t, err := a.Store.UpdateTag(id, in.Name, in.Color)
|
|
writeTag(w, t, err)
|
|
case http.MethodDelete:
|
|
if err := a.Store.DeleteTag(id); err != nil {
|
|
httpx.ServerError(w, err)
|
|
return
|
|
}
|
|
httpx.OK(w, map[string]any{"ok": true})
|
|
default:
|
|
httpx.Error(w, http.StatusMethodNotAllowed, "PUT/DELETE required")
|
|
}
|
|
}
|
|
|
|
func (a *API) mergeTag(w http.ResponseWriter, r *http.Request, fromID int64) {
|
|
if r.Method != http.MethodPost {
|
|
httpx.Error(w, http.StatusMethodNotAllowed, "POST required")
|
|
return
|
|
}
|
|
var in struct {
|
|
ToID int64 `json:"to_id"`
|
|
}
|
|
if err := httpx.Decode(r, &in); err != nil {
|
|
httpx.BadRequest(w, "invalid body")
|
|
return
|
|
}
|
|
if in.ToID == 0 {
|
|
httpx.BadRequest(w, "to_id required")
|
|
return
|
|
}
|
|
t, err := a.Store.MergeTags(fromID, in.ToID)
|
|
writeTag(w, t, err)
|
|
}
|
|
|
|
func writeTag(w http.ResponseWriter, t model.Tag, err error) {
|
|
if err != nil {
|
|
if errors.Is(err, store.ErrNotFound) {
|
|
httpx.NotFound(w)
|
|
return
|
|
}
|
|
httpx.Error(w, http.StatusBadRequest, err.Error())
|
|
return
|
|
}
|
|
httpx.OK(w, t)
|
|
}
|
|
|
|
// ---------- settings ----------
|
|
|
|
func (a *API) settings(w http.ResponseWriter, r *http.Request) {
|
|
switch r.Method {
|
|
case http.MethodGet:
|
|
st, err := a.Store.GetSettings()
|
|
if err != nil {
|
|
httpx.ServerError(w, err)
|
|
return
|
|
}
|
|
httpx.OK(w, st)
|
|
case http.MethodPut, http.MethodPost:
|
|
var in model.Settings
|
|
if err := httpx.Decode(r, &in); err != nil {
|
|
httpx.BadRequest(w, "invalid body")
|
|
return
|
|
}
|
|
if err := a.Store.UpdateSettings(in); err != nil {
|
|
httpx.ServerError(w, err)
|
|
return
|
|
}
|
|
st, err := a.Store.GetSettings()
|
|
if err != nil {
|
|
httpx.ServerError(w, err)
|
|
return
|
|
}
|
|
httpx.OK(w, st)
|
|
default:
|
|
httpx.Error(w, http.StatusMethodNotAllowed, "GET/PUT required")
|
|
}
|
|
}
|
|
|
|
func parseInt(s string) (int64, error) {
|
|
if s == "" {
|
|
return 0, errors.New("empty")
|
|
}
|
|
var n int64
|
|
for _, c := range s {
|
|
if c < '0' || c > '9' {
|
|
return 0, errors.New("not a number")
|
|
}
|
|
n = n*10 + int64(c-'0')
|
|
}
|
|
return n, nil
|
|
}
|
|
|
|
// ---------- dashboard ----------
|
|
|
|
func (a *API) dashboard(w http.ResponseWriter, r *http.Request) {
|
|
if r.Method != http.MethodGet {
|
|
httpx.Error(w, http.StatusMethodNotAllowed, "GET required")
|
|
return
|
|
}
|
|
d, err := a.Store.Dashboard()
|
|
if err != nil {
|
|
httpx.ServerError(w, err)
|
|
return
|
|
}
|
|
httpx.OK(w, d)
|
|
}
|
|
|
|
// ---------- bulk posts ----------
|
|
|
|
type bulkPostsRequest struct {
|
|
IDs []int64 `json:"ids"`
|
|
Action string `json:"action"` // "publish" | "draft" | "delete"
|
|
}
|
|
|
|
func (a *API) bulkPosts(w http.ResponseWriter, r *http.Request) {
|
|
if r.Method != http.MethodPost {
|
|
httpx.Error(w, http.StatusMethodNotAllowed, "POST required")
|
|
return
|
|
}
|
|
var in bulkPostsRequest
|
|
if err := httpx.Decode(r, &in); err != nil {
|
|
httpx.BadRequest(w, "invalid body")
|
|
return
|
|
}
|
|
if len(in.IDs) == 0 {
|
|
httpx.BadRequest(w, "ids required")
|
|
return
|
|
}
|
|
switch in.Action {
|
|
case "publish", "draft":
|
|
n, err := a.Store.BulkUpdateStatus(in.IDs, store.NormalizeStatus(in.Action))
|
|
if err != nil {
|
|
httpx.ServerError(w, err)
|
|
return
|
|
}
|
|
httpx.OK(w, map[string]any{"ok": true, "updated": n})
|
|
case "delete":
|
|
var failed int
|
|
for _, id := range in.IDs {
|
|
if err := a.Store.Delete(id); err != nil {
|
|
failed++
|
|
}
|
|
}
|
|
httpx.OK(w, map[string]any{"ok": true, "deleted": len(in.IDs) - failed, "failed": failed})
|
|
default:
|
|
httpx.BadRequest(w, "action must be one of publish|draft|delete")
|
|
}
|
|
}
|