1. Redeem code affiliate rebate: balance-type redeem codes now trigger invite rebate for the inviter. Payment fulfillment uses context key to prevent double-rebate. 2. Batch concurrency update: new POST /admin/users/batch-concurrency endpoint supporting mode=set/add with all=true for all users. 3. Markdown page rendering: new GET /api/v1/pages/:slug API serves local .md files. Custom menu items with url="md:slug" render markdown with collapsible TOC sidebar, scroll spy, and copy buttons on code blocks. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
128 lines
3.1 KiB
Go
128 lines
3.1 KiB
Go
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
"os"
|
|
"path/filepath"
|
|
"regexp"
|
|
"strings"
|
|
|
|
"github.com/Wei-Shaw/sub2api/internal/pkg/response"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
var validSlugPattern = regexp.MustCompile(`^[a-zA-Z0-9][a-zA-Z0-9_-]*$`)
|
|
|
|
const maxPageFileSize = 1 << 20 // 1MB
|
|
|
|
type PageHandler struct {
|
|
pagesDir string
|
|
}
|
|
|
|
func NewPageHandler(dataDir string) *PageHandler {
|
|
pagesDir := filepath.Join(dataDir, "pages")
|
|
_ = os.MkdirAll(pagesDir, 0755)
|
|
return &PageHandler{pagesDir: pagesDir}
|
|
}
|
|
|
|
// GetPageContent serves raw markdown content for a given slug.
|
|
// GET /api/v1/pages/:slug
|
|
func (h *PageHandler) GetPageContent(c *gin.Context) {
|
|
slug := c.Param("slug")
|
|
if !validSlugPattern.MatchString(slug) || len(slug) > 64 {
|
|
response.BadRequest(c, "Invalid page slug")
|
|
return
|
|
}
|
|
|
|
filePath := filepath.Join(h.pagesDir, slug+".md")
|
|
cleaned := filepath.Clean(filePath)
|
|
if !strings.HasPrefix(cleaned, filepath.Clean(h.pagesDir)) {
|
|
response.BadRequest(c, "Invalid page slug")
|
|
return
|
|
}
|
|
|
|
info, err := os.Stat(cleaned)
|
|
if err != nil || info.IsDir() {
|
|
c.JSON(http.StatusNotFound, gin.H{"error": "page not found"})
|
|
return
|
|
}
|
|
if info.Size() > maxPageFileSize {
|
|
c.JSON(http.StatusRequestEntityTooLarge, gin.H{"error": "page too large"})
|
|
return
|
|
}
|
|
|
|
content, err := os.ReadFile(cleaned)
|
|
if err != nil {
|
|
c.JSON(http.StatusInternalServerError, gin.H{"error": "failed to read page"})
|
|
return
|
|
}
|
|
|
|
c.Data(http.StatusOK, "text/markdown; charset=utf-8", content)
|
|
}
|
|
|
|
// ListPages returns available page slugs.
|
|
// GET /api/v1/pages
|
|
func (h *PageHandler) ListPages(c *gin.Context) {
|
|
entries, err := os.ReadDir(h.pagesDir)
|
|
if err != nil {
|
|
response.Success(c, []string{})
|
|
return
|
|
}
|
|
|
|
slugs := make([]string, 0, len(entries))
|
|
for _, e := range entries {
|
|
if e.IsDir() {
|
|
continue
|
|
}
|
|
name := e.Name()
|
|
if strings.HasSuffix(name, ".md") {
|
|
slugs = append(slugs, strings.TrimSuffix(name, ".md"))
|
|
}
|
|
}
|
|
response.Success(c, slugs)
|
|
}
|
|
|
|
// ServePageImage serves images from data/pages/{slug}/ directory.
|
|
// GET /api/v1/pages/:slug/images/*filename
|
|
func (h *PageHandler) ServePageImage(c *gin.Context) {
|
|
slug := c.Param("slug")
|
|
filename := c.Param("filename")
|
|
filename = strings.TrimPrefix(filename, "/")
|
|
|
|
if !validSlugPattern.MatchString(slug) || len(slug) > 64 {
|
|
c.Status(http.StatusNotFound)
|
|
return
|
|
}
|
|
if filename == "" || strings.Contains(filename, "..") || strings.Contains(filename, "/") || strings.Contains(filename, "\\") {
|
|
c.Status(http.StatusNotFound)
|
|
return
|
|
}
|
|
|
|
imagesDir := filepath.Join(h.pagesDir, slug)
|
|
filePath := filepath.Join(imagesDir, filename)
|
|
cleaned := filepath.Clean(filePath)
|
|
if !strings.HasPrefix(cleaned, filepath.Clean(imagesDir)) {
|
|
c.Status(http.StatusNotFound)
|
|
return
|
|
}
|
|
|
|
info, err := os.Stat(cleaned)
|
|
if err != nil || info.IsDir() {
|
|
c.Status(http.StatusNotFound)
|
|
return
|
|
}
|
|
|
|
c.File(cleaned)
|
|
}
|
|
|
|
// RegisterPageRoutes registers page routes on a router group.
|
|
func RegisterPageRoutes(v1 *gin.RouterGroup, dataDir string) {
|
|
h := NewPageHandler(dataDir)
|
|
pages := v1.Group("/pages")
|
|
{
|
|
pages.GET("", h.ListPages)
|
|
pages.GET("/:slug", h.GetPageContent)
|
|
pages.GET("/:slug/images/*filename", h.ServePageImage)
|
|
}
|
|
}
|