forked from TruthHun/BookStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLocalhostController.go
More file actions
49 lines (43 loc) · 1.34 KB
/
LocalhostController.go
File metadata and controls
49 lines (43 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package controllers
import (
"strings"
"time"
"github.com/TruthHun/BookStack/models"
"github.com/astaxie/beego"
"github.com/astaxie/beego/orm"
)
//只有请求头的host为localhost的才能访问。
type LocalhostController struct {
BaseController
}
//渲染markdown.
//根据文档id来。
func (this *LocalhostController) RenderMarkdown() {
if strings.HasPrefix(this.Ctx.Request.Host, "localhost:"+beego.AppConfig.String("httpport")) {
id, _ := this.GetInt("id")
if id > 0 {
var doc models.Document
ModelStore := new(models.DocumentStore)
o := orm.NewOrm()
qs := o.QueryTable("md_documents").Filter("document_id", id)
if this.Ctx.Input.IsPost() {
qs.One(&doc, "identify", "book_id")
var book models.Book
o.QueryTable("md_books").Filter("book_id", doc.BookId).One(&book, "identify")
content := this.GetString("content")
content = this.replaceLinks(book.Identify, content)
qs.Update(orm.Params{
"release": content,
"modify_time": time.Now(),
})
//这里要指定更新字段,否则markdown内容会被置空
ModelStore.InsertOrUpdate(models.DocumentStore{DocumentId: id, Content: content}, "content")
this.JsonResult(0, "成功")
}
this.Data["Markdown"] = ModelStore.GetFiledById(id, "markdown")
this.TplName = "widgets/render.html"
return
}
}
this.Abort("404")
}