Files
jiang13-forum/services/sanitize_html.go
freefire 204e7fdb32 feat: SSR 内容门控与积分钱包/签到抽奖
闭合积分解锁经济闭环:锁定壳与 unlock,以及 profile 钱包流水与每日签到/抽奖 PRG。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-29 06:20:12 +08:00

52 lines
1.6 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package services
import (
"sync"
"github.com/microcosm-cc/bluemonday"
)
var (
postHTMLPolicyOnce sync.Once
postHTMLPolicy *bluemonday.Policy
)
// postContentHTMLPolicy 帖子正文白名单:对齐前端编辑器产出,禁止 style/script 等泄漏或执行向量。
func postContentHTMLPolicy() *bluemonday.Policy {
postHTMLPolicyOnce.Do(func() {
p := bluemonday.UGCPolicy()
// TipTap / Markdown 转换会用到的结构
p.AllowElements("div", "span", "u", "s", "center", "members-only", "reply-only", "points-only")
p.AllowAttrs("class").OnElements(
"p", "div", "span", "pre", "code", "img", "a",
"h1", "h2", "h3", "h4", "h5", "h6",
"blockquote", "ul", "ol", "li", "table", "thead", "tbody", "tr", "th", "td",
"members-only", "reply-only", "points-only",
)
p.AllowAttrs("colspan", "rowspan").OnElements("th", "td")
p.AllowAttrs(
"data-locked", "data-length", "data-gate", "data-cost", "data-block-key",
"data-gate-shell",
"data-code-copy", "data-code-fold", "data-lang", "data-full",
"data-code-style", "data-line-numbers", "data-collapsed",
"data-line-count", "data-lineno-digits",
"data-image-group", "data-layout", "data-display",
"data-clear-float",
).Globally()
p.AllowAttrs("target", "rel").OnElements("a")
// bluemonday 默认会剥 style 标签与 style 属性;此处不再放行
postHTMLPolicy = p
})
return postHTMLPolicy
}
// SanitizePostHTML 清洗帖子 HTML防止 <style> 等污染整页或脚本注入。
func SanitizePostHTML(html string) string {
if html == "" {
return ""
}
return postContentHTMLPolicy().Sanitize(html)
}