mirror of https://github.com/mindoc-org/mindoc.git
修复附件不能下载问题
fixes #850 1. 修复文档为空附件不能下载 2. 修复文档设置为非markdown编辑附件不能下载 3. 兼容现存问题文档 4. 非markdown编辑文档,阅读时增加文档修改信息pull/867/head
parent
a2202f8878
commit
c8f7a2a544
|
@ -267,127 +267,133 @@ func (item *Document) ReleaseContent() error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
//处理文档的外链,附件,底部编辑信息等.
|
// Processor 调用位置两处:
|
||||||
|
// 1. 项目发布和文档发布: 处理文档的外链,附件,底部编辑信息等;
|
||||||
|
// 2. 文档阅读:可以修复存在问题的文档,使其能正常显示附件下载和文档作者信息等。
|
||||||
func (item *Document) Processor() *Document {
|
func (item *Document) Processor() *Document {
|
||||||
if item.Release != "" {
|
if item.Release != "" {
|
||||||
item.Release = utils.SafetyProcessor(item.Release)
|
item.Release = utils.SafetyProcessor(item.Release)
|
||||||
|
} else {
|
||||||
|
// Release内容为空,直接赋值文档标签,保证附件下载正常
|
||||||
|
item.Release = "<div class=\"whole-article-wrap\"></div>"
|
||||||
|
}
|
||||||
|
|
||||||
//安全过滤,移除危险标签和属性
|
// Next: 生成文档的一些附加信息
|
||||||
if docQuery, err := goquery.NewDocumentFromReader(bytes.NewBufferString(item.Release)); err == nil {
|
if docQuery, err := goquery.NewDocumentFromReader(bytes.NewBufferString(item.Release)); err == nil {
|
||||||
|
|
||||||
|
//处理附件
|
||||||
|
if selector := docQuery.Find("div.attach-list").First(); selector.Size() <= 0 {
|
||||||
//处理附件
|
//处理附件
|
||||||
if selector := docQuery.Find("div.attach-list").First(); selector.Size() <= 0 {
|
attachList, err := NewAttachment().FindListByDocumentId(item.DocumentId)
|
||||||
//处理附件
|
if err == nil && len(attachList) > 0 {
|
||||||
attachList, err := NewAttachment().FindListByDocumentId(item.DocumentId)
|
content := bytes.NewBufferString("<div class=\"attach-list\"><strong>" + i18n.Tr(item.Lang, "doc.attachment") + "</strong><ul>")
|
||||||
if err == nil && len(attachList) > 0 {
|
for _, attach := range attachList {
|
||||||
content := bytes.NewBufferString("<div class=\"attach-list\"><strong>" + i18n.Tr(item.Lang, "doc.attachment") + "</strong><ul>")
|
if strings.HasPrefix(attach.HttpPath, "/") {
|
||||||
for _, attach := range attachList {
|
attach.HttpPath = strings.TrimSuffix(conf.BaseUrl, "/") + attach.HttpPath
|
||||||
if strings.HasPrefix(attach.HttpPath, "/") {
|
|
||||||
attach.HttpPath = strings.TrimSuffix(conf.BaseUrl, "/") + attach.HttpPath
|
|
||||||
}
|
|
||||||
li := fmt.Sprintf("<li><a href=\"%s\" target=\"_blank\" title=\"%s\">%s</a></li>", attach.HttpPath, attach.FileName, attach.FileName)
|
|
||||||
|
|
||||||
content.WriteString(li)
|
|
||||||
}
|
}
|
||||||
content.WriteString("</ul></div>")
|
li := fmt.Sprintf("<li><a href=\"%s\" target=\"_blank\" title=\"%s\">%s</a></li>", attach.HttpPath, attach.FileName, attach.FileName)
|
||||||
if docQuery == nil {
|
|
||||||
docQuery, err = goquery.NewDocumentFromReader(content)
|
content.WriteString(li)
|
||||||
} else {
|
}
|
||||||
if selector := docQuery.Find("div.wiki-bottom").First(); selector.Size() > 0 {
|
content.WriteString("</ul></div>")
|
||||||
selector.BeforeHtml(content.String())
|
if docQuery == nil {
|
||||||
} else if selector := docQuery.Find("div.markdown-article").First(); selector.Size() > 0 {
|
docQuery, err = goquery.NewDocumentFromReader(content)
|
||||||
selector.AppendHtml(content.String())
|
} else {
|
||||||
} else if selector := docQuery.Find("article.markdown-article-inner").First(); selector.Size() > 0 {
|
if selector := docQuery.Find("div.wiki-bottom").First(); selector.Size() > 0 {
|
||||||
selector.AppendHtml(content.String())
|
selector.BeforeHtml(content.String()) //This branch should be a compatible branch.
|
||||||
}
|
} else if selector := docQuery.Find("div.markdown-article").First(); selector.Size() > 0 {
|
||||||
|
selector.AppendHtml(content.String()) //The document produced by the editor of Markdown will have this tag.class.
|
||||||
|
} else if selector := docQuery.Find("div.whole-article-wrap").First(); selector.Size() > 0 {
|
||||||
|
selector.AppendHtml(content.String()) //All documents should have this tag.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
//处理了文档底部信息
|
|
||||||
if selector := docQuery.Find("div.wiki-bottom").First(); selector.Size() <= 0 && item.MemberId > 0 {
|
//处理了文档底部信息
|
||||||
//处理文档结尾信息
|
if selector := docQuery.Find("div.wiki-bottom").First(); selector.Size() <= 0 && item.MemberId > 0 {
|
||||||
docCreator, err := NewMember().Find(item.MemberId, "real_name", "account")
|
//处理文档结尾信息
|
||||||
release := "<div class=\"wiki-bottom\">"
|
docCreator, err := NewMember().Find(item.MemberId, "real_name", "account")
|
||||||
|
release := "<div class=\"wiki-bottom\">"
|
||||||
release += i18n.Tr(item.Lang, "doc.ft_author")
|
|
||||||
if err == nil && docCreator != nil {
|
release += i18n.Tr(item.Lang, "doc.ft_author")
|
||||||
if docCreator.RealName != "" {
|
if err == nil && docCreator != nil {
|
||||||
release += docCreator.RealName
|
if docCreator.RealName != "" {
|
||||||
} else {
|
release += docCreator.RealName
|
||||||
release += docCreator.Account
|
} else {
|
||||||
}
|
release += docCreator.Account
|
||||||
}
|
}
|
||||||
release += " " + i18n.Tr(item.Lang, "doc.ft_create_time") + item.CreateTime.Local().Format("2006-01-02 15:04") + "<br>"
|
}
|
||||||
|
release += " " + i18n.Tr(item.Lang, "doc.ft_create_time") + item.CreateTime.Local().Format("2006-01-02 15:04") + "<br>"
|
||||||
if item.ModifyAt > 0 {
|
|
||||||
docModify, err := NewMember().Find(item.ModifyAt, "real_name", "account")
|
if item.ModifyAt > 0 {
|
||||||
if err == nil {
|
docModify, err := NewMember().Find(item.ModifyAt, "real_name", "account")
|
||||||
if docModify.RealName != "" {
|
if err == nil {
|
||||||
release += i18n.Tr(item.Lang, "doc.ft_last_editor") + docModify.RealName
|
if docModify.RealName != "" {
|
||||||
} else {
|
release += i18n.Tr(item.Lang, "doc.ft_last_editor") + docModify.RealName
|
||||||
release += i18n.Tr(item.Lang, "doc.ft_last_editor") + docModify.Account
|
} else {
|
||||||
}
|
release += i18n.Tr(item.Lang, "doc.ft_last_editor") + docModify.Account
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
release += " " + i18n.Tr(item.Lang, "doc.ft_update_time") + item.ModifyTime.Local().Format("2006-01-02 15:04") + "<br>"
|
}
|
||||||
release += "</div>"
|
release += " " + i18n.Tr(item.Lang, "doc.ft_update_time") + item.ModifyTime.Local().Format("2006-01-02 15:04") + "<br>"
|
||||||
|
release += "</div>"
|
||||||
if selector := docQuery.Find("div.markdown-article").First(); selector.Size() > 0 {
|
|
||||||
selector.AppendHtml(release)
|
if selector := docQuery.Find("div.markdown-article").First(); selector.Size() > 0 {
|
||||||
} else if selector := docQuery.Find("article.markdown-article-inner").First(); selector.Size() > 0 {
|
selector.AppendHtml(release)
|
||||||
selector.First().AppendHtml(release)
|
} else if selector := docQuery.Find("div.whole-article-wrap").First(); selector.Size() > 0 {
|
||||||
}
|
selector.AppendHtml(release)
|
||||||
}
|
}
|
||||||
cdnimg, _ := web.AppConfig.String("cdnimg")
|
}
|
||||||
|
cdnimg, _ := web.AppConfig.String("cdnimg")
|
||||||
docQuery.Find("img").Each(func(i int, selection *goquery.Selection) {
|
|
||||||
|
docQuery.Find("img").Each(func(i int, selection *goquery.Selection) {
|
||||||
if src, ok := selection.Attr("src"); ok {
|
|
||||||
src = strings.TrimSpace(strings.ToLower(src))
|
if src, ok := selection.Attr("src"); ok {
|
||||||
//过滤掉没有链接的图片标签
|
src = strings.TrimSpace(strings.ToLower(src))
|
||||||
if src == "" || strings.HasPrefix(src, "data:text/html") {
|
//过滤掉没有链接的图片标签
|
||||||
selection.Remove()
|
if src == "" || strings.HasPrefix(src, "data:text/html") {
|
||||||
return
|
selection.Remove()
|
||||||
}
|
return
|
||||||
|
}
|
||||||
//设置图片为CDN地址
|
|
||||||
if cdnimg != "" && strings.HasPrefix(src, "/uploads/") {
|
//设置图片为CDN地址
|
||||||
selection.SetAttr("src", utils.JoinURI(cdnimg, src))
|
if cdnimg != "" && strings.HasPrefix(src, "/uploads/") {
|
||||||
}
|
selection.SetAttr("src", utils.JoinURI(cdnimg, src))
|
||||||
|
}
|
||||||
}
|
|
||||||
selection.RemoveAttr("onerror").RemoveAttr("onload")
|
}
|
||||||
})
|
selection.RemoveAttr("onerror").RemoveAttr("onload")
|
||||||
//过滤A标签的非法连接
|
})
|
||||||
docQuery.Find("a").Each(func(i int, selection *goquery.Selection) {
|
//过滤A标签的非法连接
|
||||||
if val, exists := selection.Attr("href"); exists {
|
docQuery.Find("a").Each(func(i int, selection *goquery.Selection) {
|
||||||
if val == "" {
|
if val, exists := selection.Attr("href"); exists {
|
||||||
selection.SetAttr("href", "#")
|
if val == "" {
|
||||||
return
|
selection.SetAttr("href", "#")
|
||||||
}
|
return
|
||||||
val = strings.Replace(strings.ToLower(val), " ", "", -1)
|
}
|
||||||
//移除危险脚本链接
|
val = strings.Replace(strings.ToLower(val), " ", "", -1)
|
||||||
if strings.HasPrefix(val, "data:text/html") ||
|
//移除危险脚本链接
|
||||||
strings.HasPrefix(val, "vbscript:") ||
|
if strings.HasPrefix(val, "data:text/html") ||
|
||||||
strings.HasPrefix(val, "javascript:") ||
|
strings.HasPrefix(val, "vbscript:") ||
|
||||||
strings.HasPrefix(val, "javascript:") {
|
strings.HasPrefix(val, "javascript:") ||
|
||||||
selection.SetAttr("href", "#")
|
strings.HasPrefix(val, "javascript:") {
|
||||||
}
|
selection.SetAttr("href", "#")
|
||||||
}
|
}
|
||||||
//移除所有 onerror 属性
|
}
|
||||||
selection.RemoveAttr("onerror").RemoveAttr("onload").RemoveAttr("onclick")
|
//移除所有 onerror 属性
|
||||||
})
|
selection.RemoveAttr("onerror").RemoveAttr("onload").RemoveAttr("onclick")
|
||||||
|
})
|
||||||
docQuery.Find("script").Remove()
|
|
||||||
docQuery.Find("link").Remove()
|
docQuery.Find("script").Remove()
|
||||||
docQuery.Find("vbscript").Remove()
|
docQuery.Find("link").Remove()
|
||||||
|
docQuery.Find("vbscript").Remove()
|
||||||
if html, err := docQuery.Html(); err == nil {
|
|
||||||
item.Release = strings.TrimSuffix(strings.TrimPrefix(strings.TrimSpace(html), "<html><head></head><body>"), "</body></html>")
|
if html, err := docQuery.Html(); err == nil {
|
||||||
}
|
item.Release = strings.TrimSuffix(strings.TrimPrefix(strings.TrimSpace(html), "<html><head></head><body>"), "</body></html>")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return item
|
return item
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -110,8 +110,8 @@ func SafetyProcessor(html string) string {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
//添加文档标签包裹
|
//添加文档标签包裹
|
||||||
if selector := docQuery.Find("article.markdown-article-inner").First(); selector.Size() <= 0 {
|
if selector := docQuery.Find("div.whole-article-wrap").First(); selector.Size() <= 0 {
|
||||||
docQuery.Children().WrapAllHtml("<article class=\"markdown-article-inner\"></article>")
|
docQuery.Find("body").Children().WrapAllHtml("<div class=\"whole-article-wrap\"></div>")
|
||||||
}
|
}
|
||||||
//解决文档内容缺少包裹标签的问题
|
//解决文档内容缺少包裹标签的问题
|
||||||
if selector := docQuery.Find("div.markdown-article").First(); selector.Size() <= 0 {
|
if selector := docQuery.Find("div.markdown-article").First(); selector.Size() <= 0 {
|
||||||
|
|
|
@ -95,7 +95,7 @@
|
||||||
<div class="article-body markdown-body editormd-preview-container content">
|
<div class="article-body markdown-body editormd-preview-container content">
|
||||||
{{.Content}}
|
{{.Content}}
|
||||||
{{if .Model.AttachList}}
|
{{if .Model.AttachList}}
|
||||||
<div class="attach-list"><strong>{{i18n .Lang "blog.attachment"}}</strong><ul>
|
<div class="attach-list"><strong>{{i18n .Lang "doc.attachment"}}</strong><ul>
|
||||||
{{range $index,$item := .Model.AttachList}}
|
{{range $index,$item := .Model.AttachList}}
|
||||||
<li><a href="{{$item.HttpPath}}" title="{{$item.FileName}}">{{$item.FileName}}</a> </li>
|
<li><a href="{{$item.HttpPath}}" title="{{$item.FileName}}">{{$item.FileName}}</a> </li>
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
Loading…
Reference in New Issue