5d7c10aeab
- Updated runtime configuration to use __CS_AI_AGENT_WIDGET_CONFIG__ instead of __CS_AGENT_WIDGET_CONFIG__. - Changed message types in support host bridge from "cs-agent" to "cs-ai-agent". - Minified SDK script updated to reflect new AI agent naming conventions. - Adjusted scrollbar styles in main.scss to use .cs-ai-agent-scrollbar instead of .cs-agent-scrollbar.
113 lines
2.8 KiB
Go
113 lines
2.8 KiB
Go
package rag
|
|
|
|
import (
|
|
"cs-ai-agent/internal/pkg/enums"
|
|
"strings"
|
|
|
|
"github.com/yuin/goldmark"
|
|
"github.com/yuin/goldmark/extension"
|
|
"github.com/yuin/goldmark/parser"
|
|
"github.com/yuin/goldmark/renderer/html"
|
|
htmlparser "golang.org/x/net/html"
|
|
)
|
|
|
|
var plainTextMarkdown = goldmark.New(
|
|
goldmark.WithExtensions(extension.GFM),
|
|
goldmark.WithParserOptions(
|
|
parser.WithAutoHeadingID(),
|
|
),
|
|
goldmark.WithRendererOptions(
|
|
html.WithHardWraps(),
|
|
html.WithXHTML(),
|
|
),
|
|
)
|
|
|
|
func ExtractPlainText(content string, contentType enums.KnowledgeDocumentContentType) string {
|
|
switch contentType {
|
|
case enums.KnowledgeDocumentContentTypeMarkdown:
|
|
return ExtractPlainTextFromMarkdown(content)
|
|
case enums.KnowledgeDocumentContentTypeHTML:
|
|
return ExtractPlainTextFromHTML(content)
|
|
default:
|
|
return normalizeWhitespace(content)
|
|
}
|
|
}
|
|
|
|
func ExtractPlainTextFromMarkdown(content string) string {
|
|
content = strings.TrimSpace(content)
|
|
if content == "" {
|
|
return ""
|
|
}
|
|
|
|
var buf strings.Builder
|
|
if err := plainTextMarkdown.Convert([]byte(content), &buf); err != nil {
|
|
return normalizeWhitespace(content)
|
|
}
|
|
return ExtractPlainTextFromHTML(buf.String())
|
|
}
|
|
|
|
func ExtractPlainTextFromHTML(content string) string {
|
|
content = strings.TrimSpace(content)
|
|
if content == "" {
|
|
return ""
|
|
}
|
|
|
|
var builder strings.Builder
|
|
parent := &htmlparser.Node{
|
|
Type: htmlparser.ElementNode,
|
|
Data: "div",
|
|
}
|
|
nodes, err := htmlparser.ParseFragment(strings.NewReader(content), parent)
|
|
if err == nil {
|
|
for _, node := range nodes {
|
|
writeHTMLNodeText(&builder, node)
|
|
}
|
|
return normalizeWhitespace(builder.String())
|
|
}
|
|
|
|
// 兜底:部分输入在 ParseFragment 下会失败(例如不符合 fragment 规则或上下文不匹配)。
|
|
// 这里用完整 HTML 解析保证可用性。
|
|
doc, err := htmlparser.Parse(strings.NewReader("<div>" + content + "</div>"))
|
|
if err != nil {
|
|
return normalizeWhitespace(content)
|
|
}
|
|
writeHTMLNodeText(&builder, doc)
|
|
return normalizeWhitespace(builder.String())
|
|
}
|
|
|
|
func writeHTMLNodeText(builder *strings.Builder, node *htmlparser.Node) {
|
|
if node == nil {
|
|
return
|
|
}
|
|
|
|
switch node.Type {
|
|
case htmlparser.TextNode:
|
|
builder.WriteString(node.Data)
|
|
case htmlparser.ElementNode:
|
|
if shouldSeparateHTMLText(node.Data) {
|
|
builder.WriteByte(' ')
|
|
}
|
|
}
|
|
|
|
for child := node.FirstChild; child != nil; child = child.NextSibling {
|
|
writeHTMLNodeText(builder, child)
|
|
}
|
|
|
|
if node.Type == htmlparser.ElementNode && shouldSeparateHTMLText(node.Data) {
|
|
builder.WriteByte(' ')
|
|
}
|
|
}
|
|
|
|
func shouldSeparateHTMLText(tag string) bool {
|
|
switch tag {
|
|
case "p", "div", "br", "li", "ul", "ol", "blockquote", "pre", "table", "tr", "td", "th", "h1", "h2", "h3", "h4", "h5", "h6":
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
func normalizeWhitespace(content string) string {
|
|
return strings.Join(strings.Fields(strings.TrimSpace(content)), " ")
|
|
}
|