2017-04-20 18:19:32 +08:00
|
|
|
|
package controllers
|
|
|
|
|
|
2017-04-26 18:17:38 +08:00
|
|
|
|
import (
|
2017-04-27 18:19:37 +08:00
|
|
|
|
"os"
|
|
|
|
|
"time"
|
|
|
|
|
"regexp"
|
|
|
|
|
"strconv"
|
|
|
|
|
"strings"
|
|
|
|
|
"net/http"
|
|
|
|
|
"path/filepath"
|
|
|
|
|
"encoding/json"
|
|
|
|
|
"html/template"
|
2017-05-06 16:16:27 +08:00
|
|
|
|
"container/list"
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
2017-04-26 18:17:38 +08:00
|
|
|
|
"github.com/lifei6671/godoc/models"
|
2017-04-27 18:19:37 +08:00
|
|
|
|
"github.com/lifei6671/godoc/conf"
|
|
|
|
|
"github.com/astaxie/beego"
|
|
|
|
|
"github.com/astaxie/beego/orm"
|
2017-05-13 12:12:37 +08:00
|
|
|
|
"github.com/lifei6671/godoc/utils/wkhtmltopdf"
|
2017-04-26 18:17:38 +08:00
|
|
|
|
)
|
|
|
|
|
|
2017-05-02 10:00:21 +08:00
|
|
|
|
//DocumentController struct.
|
2017-04-20 18:19:32 +08:00
|
|
|
|
type DocumentController struct {
|
|
|
|
|
BaseController
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-02 10:00:21 +08:00
|
|
|
|
//判断用户是否可以阅读文档.
|
2017-04-30 22:13:12 +08:00
|
|
|
|
func isReadable (identify,token string,c *DocumentController) *models.BookResult {
|
2017-05-01 12:15:55 +08:00
|
|
|
|
book, err := models.NewBook().FindByFieldFirst("identify", identify)
|
2017-04-30 22:13:12 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.Abort("500")
|
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if c.Member != nil && c.Member.Role == conf.MemberSuperRole {
|
|
|
|
|
bookResult := book.ToBookResult()
|
|
|
|
|
return bookResult
|
|
|
|
|
}
|
2017-04-30 22:13:12 +08:00
|
|
|
|
//如果文档是私有的
|
|
|
|
|
if book.PrivatelyOwned == 1 {
|
|
|
|
|
|
|
|
|
|
is_ok := false
|
|
|
|
|
|
2017-05-01 12:15:55 +08:00
|
|
|
|
if c.Member != nil {
|
2017-04-30 22:13:12 +08:00
|
|
|
|
_, err := models.NewRelationship().FindForRoleId(book.BookId, c.Member.MemberId)
|
|
|
|
|
if err == nil {
|
|
|
|
|
is_ok = true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if book.PrivateToken != "" && !is_ok {
|
|
|
|
|
//如果有访问的Token,并且该项目设置了访问Token,并且和用户提供的相匹配,则记录到Session中.
|
|
|
|
|
//如果用户未提供Token且用户登录了,则判断用户是否参与了该项目.
|
|
|
|
|
//如果用户未登录,则从Session中读取Token.
|
|
|
|
|
if token != "" && strings.EqualFold(token, book.PrivateToken) {
|
|
|
|
|
c.SetSession(identify, token)
|
|
|
|
|
|
2017-05-01 12:15:55 +08:00
|
|
|
|
} else if token, ok := c.GetSession(identify).(string); !ok || !strings.EqualFold(token, book.PrivateToken) {
|
2017-04-30 22:13:12 +08:00
|
|
|
|
c.Abort("403")
|
|
|
|
|
}
|
2017-05-05 11:09:17 +08:00
|
|
|
|
} else if !is_ok {
|
2017-04-30 22:13:12 +08:00
|
|
|
|
c.Abort("403")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
bookResult := book.ToBookResult()
|
|
|
|
|
|
|
|
|
|
if c.Member != nil {
|
2017-05-12 10:45:40 +08:00
|
|
|
|
|
2017-05-01 12:15:55 +08:00
|
|
|
|
rel, err := models.NewRelationship().FindByBookIdAndMemberId(bookResult.BookId, c.Member.MemberId)
|
2017-04-30 22:13:12 +08:00
|
|
|
|
|
|
|
|
|
if err == nil {
|
2017-05-01 12:15:55 +08:00
|
|
|
|
bookResult.MemberId = rel.MemberId
|
|
|
|
|
bookResult.RoleId = rel.RoleId
|
|
|
|
|
bookResult.RelationshipId = rel.RelationshipId
|
2017-04-30 22:13:12 +08:00
|
|
|
|
}
|
2017-05-01 12:15:55 +08:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
//判断是否需要显示评论框
|
|
|
|
|
if bookResult.CommentStatus == "closed" {
|
|
|
|
|
bookResult.IsDisplayComment = false
|
|
|
|
|
} else if bookResult.CommentStatus == "open" {
|
|
|
|
|
bookResult.IsDisplayComment = true
|
|
|
|
|
} else if bookResult.CommentStatus == "group_only" {
|
|
|
|
|
bookResult.IsDisplayComment = bookResult.RelationshipId > 0
|
|
|
|
|
} else if bookResult.CommentStatus == "registered_only" {
|
|
|
|
|
bookResult.IsDisplayComment = true
|
2017-04-30 22:13:12 +08:00
|
|
|
|
}
|
2017-05-01 12:15:55 +08:00
|
|
|
|
|
2017-04-30 22:13:12 +08:00
|
|
|
|
return bookResult
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-02 10:00:21 +08:00
|
|
|
|
//文档首页.
|
2017-04-30 22:13:12 +08:00
|
|
|
|
func (c *DocumentController) Index() {
|
|
|
|
|
c.Prepare()
|
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
|
|
|
|
token := c.GetString("token")
|
|
|
|
|
|
|
|
|
|
if identify == "" {
|
|
|
|
|
c.Abort("404")
|
|
|
|
|
}
|
2017-05-03 17:09:01 +08:00
|
|
|
|
//如果没有开启你们访问则跳转到登录
|
|
|
|
|
if !c.EnableAnonymous && c.Member == nil {
|
|
|
|
|
c.Redirect(beego.URLFor("AccountController.Login"),302)
|
|
|
|
|
return
|
|
|
|
|
}
|
2017-04-30 22:13:12 +08:00
|
|
|
|
bookResult := isReadable(identify,token,c)
|
|
|
|
|
|
2017-05-01 12:15:55 +08:00
|
|
|
|
|
2017-04-30 22:13:12 +08:00
|
|
|
|
c.TplName = "document/" + bookResult.Theme + "_read.tpl"
|
|
|
|
|
|
|
|
|
|
tree,err := models.NewDocument().CreateDocumentTreeForHtml(bookResult.BookId,0)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.Abort("500")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
c.Data["Model"] = bookResult
|
|
|
|
|
c.Data["Result"] = template.HTML(tree)
|
|
|
|
|
c.Data["Title"] = "概要"
|
|
|
|
|
c.Data["Content"] = bookResult.Description
|
2017-04-20 18:19:32 +08:00
|
|
|
|
}
|
2017-05-12 11:41:59 +08:00
|
|
|
|
|
2017-05-02 10:00:21 +08:00
|
|
|
|
//阅读文档.
|
2017-04-30 22:13:12 +08:00
|
|
|
|
func (c *DocumentController) Read() {
|
|
|
|
|
c.Prepare()
|
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
|
|
|
|
token := c.GetString("token")
|
|
|
|
|
id := c.GetString(":id")
|
|
|
|
|
|
|
|
|
|
if identify == "" || id == ""{
|
|
|
|
|
c.Abort("404")
|
|
|
|
|
}
|
2017-05-03 17:09:01 +08:00
|
|
|
|
|
|
|
|
|
//如果没有开启你们访问则跳转到登录
|
|
|
|
|
if !c.EnableAnonymous && c.Member == nil {
|
|
|
|
|
c.Redirect(beego.URLFor("AccountController.Login"),302)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-30 22:13:12 +08:00
|
|
|
|
bookResult := isReadable(identify,token,c)
|
|
|
|
|
|
|
|
|
|
c.TplName = "document/" + bookResult.Theme + "_read.tpl"
|
|
|
|
|
|
|
|
|
|
doc := models.NewDocument()
|
|
|
|
|
|
|
|
|
|
if doc_id,err := strconv.Atoi(id);err == nil {
|
|
|
|
|
doc,err = doc.Find(doc_id)
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.Abort("500")
|
|
|
|
|
}
|
|
|
|
|
}else{
|
|
|
|
|
doc,err = doc.FindByFieldFirst("identify",id)
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.Abort("500")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if doc.BookId != bookResult.BookId {
|
|
|
|
|
c.Abort("403")
|
|
|
|
|
}
|
2017-05-13 12:12:37 +08:00
|
|
|
|
attach,err := models.NewAttachment().FindListByDocumentId(doc.DocumentId)
|
|
|
|
|
if err == nil {
|
|
|
|
|
doc.AttachList = attach
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-30 22:13:12 +08:00
|
|
|
|
if c.IsAjax() {
|
|
|
|
|
var data struct{
|
|
|
|
|
DocTitle string `json:"doc_title"`
|
|
|
|
|
Body string `json:"body"`
|
2017-05-13 12:12:37 +08:00
|
|
|
|
Title string `json:"title"`
|
2017-04-30 22:13:12 +08:00
|
|
|
|
}
|
|
|
|
|
data.DocTitle = doc.DocumentName
|
|
|
|
|
data.Body = doc.Release
|
|
|
|
|
data.Title = doc.DocumentName + " - Powered by MinDoc"
|
|
|
|
|
|
|
|
|
|
c.JsonResult(0,"ok",data)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tree,err := models.NewDocument().CreateDocumentTreeForHtml(bookResult.BookId,doc.DocumentId)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.Abort("500")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
c.Data["Model"] = bookResult
|
|
|
|
|
c.Data["Result"] = template.HTML(tree)
|
|
|
|
|
c.Data["Title"] = doc.DocumentName
|
|
|
|
|
c.Data["Content"] = template.HTML(doc.Release)
|
2017-04-20 18:19:32 +08:00
|
|
|
|
}
|
2017-04-26 18:17:38 +08:00
|
|
|
|
|
2017-05-02 10:00:21 +08:00
|
|
|
|
//编辑文档.
|
2017-04-26 18:17:38 +08:00
|
|
|
|
func (c *DocumentController) Edit() {
|
|
|
|
|
c.Prepare()
|
|
|
|
|
|
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
2017-04-27 18:19:37 +08:00
|
|
|
|
if identify == "" {
|
|
|
|
|
c.Abort("404")
|
|
|
|
|
}
|
2017-04-26 18:17:38 +08:00
|
|
|
|
|
2017-05-12 10:45:40 +08:00
|
|
|
|
bookResult := models.NewBookResult()
|
2017-05-12 11:41:59 +08:00
|
|
|
|
var err error
|
2017-05-12 10:45:40 +08:00
|
|
|
|
//如果是超级管理者,则不判断权限
|
|
|
|
|
if c.Member.Role == conf.MemberSuperRole {
|
|
|
|
|
book,err := models.NewBook().FindByFieldFirst("identify",identify)
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.JsonResult(6002, "项目不存在或权限不足")
|
|
|
|
|
}
|
|
|
|
|
bookResult = book.ToBookResult()
|
2017-04-26 18:17:38 +08:00
|
|
|
|
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}else {
|
2017-05-12 11:41:59 +08:00
|
|
|
|
bookResult, err = models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error("DocumentController.Edit => ", err)
|
|
|
|
|
|
|
|
|
|
c.Abort("403")
|
|
|
|
|
}
|
|
|
|
|
if bookResult.RoleId == conf.BookObserver {
|
2017-04-29 21:28:09 +08:00
|
|
|
|
|
2017-05-12 10:45:40 +08:00
|
|
|
|
c.JsonResult(6002, "项目不存在或权限不足")
|
|
|
|
|
}
|
2017-04-29 21:28:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//根据不同编辑器类型加载编辑器
|
|
|
|
|
if bookResult.Editor == "markdown" {
|
2017-04-26 18:17:38 +08:00
|
|
|
|
c.TplName = "document/markdown_edit_template.tpl"
|
2017-04-29 21:28:09 +08:00
|
|
|
|
}else if bookResult.Editor == "html"{
|
2017-04-26 18:17:38 +08:00
|
|
|
|
c.TplName = "document/html_edit_template.tpl"
|
2017-04-29 21:28:09 +08:00
|
|
|
|
}else{
|
|
|
|
|
c.TplName = "document/" + bookResult.Editor + "_edit_template.tpl"
|
2017-04-26 18:17:38 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-29 21:28:09 +08:00
|
|
|
|
c.Data["Model"] = bookResult
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
2017-04-29 21:28:09 +08:00
|
|
|
|
r,_ := json.Marshal(bookResult)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
|
|
|
|
c.Data["ModelResult"] = template.JS(string(r))
|
|
|
|
|
|
|
|
|
|
c.Data["Result"] = template.JS("[]")
|
|
|
|
|
|
2017-04-29 21:28:09 +08:00
|
|
|
|
trees ,err := models.NewDocument().FindDocumentTree(bookResult.BookId)
|
2017-04-30 22:13:12 +08:00
|
|
|
|
|
2017-04-27 18:19:37 +08:00
|
|
|
|
if err != nil {
|
2017-04-29 21:28:09 +08:00
|
|
|
|
beego.Error("FindDocumentTree => ", err)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}else{
|
|
|
|
|
if len(trees) > 0 {
|
|
|
|
|
if jtree, err := json.Marshal(trees); err == nil {
|
|
|
|
|
c.Data["Result"] = template.JS(string(jtree))
|
|
|
|
|
}
|
|
|
|
|
}else{
|
|
|
|
|
c.Data["Result"] = template.JS("[]")
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-05-12 19:14:29 +08:00
|
|
|
|
c.Data["BaiDuMapKey"] = beego.AppConfig.DefaultString("baidumapkey","")
|
|
|
|
|
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-29 21:28:09 +08:00
|
|
|
|
//创建一个文档.
|
2017-04-27 18:19:37 +08:00
|
|
|
|
func (c *DocumentController) Create() {
|
|
|
|
|
identify := c.GetString("identify")
|
|
|
|
|
doc_identify := c.GetString("doc_identify")
|
|
|
|
|
doc_name := c.GetString("doc_name")
|
|
|
|
|
parent_id,_ := c.GetInt("parent_id",0)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
doc_id,_ := c.GetInt("doc_id",0)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
|
|
|
|
if identify == "" {
|
|
|
|
|
c.JsonResult(6001,"参数错误")
|
|
|
|
|
}
|
|
|
|
|
if doc_name == "" {
|
|
|
|
|
c.JsonResult(6004,"文档名称不能为空")
|
|
|
|
|
}
|
|
|
|
|
if doc_identify != "" {
|
|
|
|
|
if ok, err := regexp.MatchString(`^[a-z]+[a-zA-Z0-9_\-]*$`, doc_identify); !ok || err != nil {
|
|
|
|
|
|
|
|
|
|
c.JsonResult(6003, "文档标识只能包含小写字母、数字,以及“-”和“_”符号,并且只能小写字母开头")
|
|
|
|
|
}
|
|
|
|
|
d,_ := models.NewDocument().FindByFieldFirst("identify",doc_identify);
|
2017-04-28 18:08:01 +08:00
|
|
|
|
if d.DocumentId > 0 && d.DocumentId != doc_id{
|
2017-04-27 18:19:37 +08:00
|
|
|
|
c.JsonResult(6006,"文档标识已被使用")
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
book_id := 0
|
|
|
|
|
//如果是超级管理员则不判断权限
|
|
|
|
|
if c.Member.Role == conf.MemberSuperRole {
|
|
|
|
|
book,err := models.NewBook().FindByFieldFirst("identify",identify)
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.JsonResult(6002, "项目不存在或权限不足")
|
|
|
|
|
}
|
|
|
|
|
book_id = book.BookId
|
|
|
|
|
}else{
|
|
|
|
|
bookResult, err := models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if err != nil || bookResult.RoleId == conf.BookObserver {
|
|
|
|
|
beego.Error("FindByIdentify => ", err)
|
|
|
|
|
c.JsonResult(6002, "项目不存在或权限不足")
|
|
|
|
|
}
|
|
|
|
|
book_id = bookResult.BookId
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
|
|
|
|
if parent_id > 0 {
|
|
|
|
|
doc,err := models.NewDocument().Find(parent_id)
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if err != nil || doc.BookId != book_id {
|
2017-04-27 18:19:37 +08:00
|
|
|
|
c.JsonResult(6003,"父分类不存在")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-28 18:08:01 +08:00
|
|
|
|
document,_ := models.NewDocument().Find(doc_id)
|
|
|
|
|
|
2017-04-27 18:19:37 +08:00
|
|
|
|
document.MemberId = c.Member.MemberId
|
2017-05-12 10:45:40 +08:00
|
|
|
|
document.BookId = book_id
|
2017-04-27 18:19:37 +08:00
|
|
|
|
if doc_identify != ""{
|
|
|
|
|
document.Identify = doc_identify
|
|
|
|
|
}
|
2017-04-28 18:08:01 +08:00
|
|
|
|
document.Version = time.Now().Unix()
|
2017-04-27 18:19:37 +08:00
|
|
|
|
document.DocumentName = doc_name
|
|
|
|
|
document.ParentId = parent_id
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
2017-04-27 18:19:37 +08:00
|
|
|
|
if err := document.InsertOrUpdate();err != nil {
|
2017-04-29 21:28:09 +08:00
|
|
|
|
beego.Error("InsertOrUpdate => ",err)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
c.JsonResult(6005,"保存失败")
|
|
|
|
|
}else{
|
2017-05-02 10:00:21 +08:00
|
|
|
|
|
2017-04-27 18:19:37 +08:00
|
|
|
|
c.JsonResult(0,"ok",document)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-29 21:28:09 +08:00
|
|
|
|
//上传附件或图片.
|
2017-04-27 18:19:37 +08:00
|
|
|
|
func (c *DocumentController) Upload() {
|
|
|
|
|
|
|
|
|
|
identify := c.GetString("identify")
|
2017-04-29 21:28:09 +08:00
|
|
|
|
doc_id,_ := c.GetInt("doc_id")
|
2017-05-12 19:14:29 +08:00
|
|
|
|
is_attach := true
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
|
|
|
|
if identify == "" {
|
|
|
|
|
c.JsonResult(6001,"参数错误")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
name := "editormd-file-file"
|
|
|
|
|
|
|
|
|
|
file,moreFile,err := c.GetFile(name)
|
|
|
|
|
if err == http.ErrMissingFile {
|
|
|
|
|
name = "editormd-image-file"
|
|
|
|
|
file,moreFile,err = c.GetFile(name);
|
|
|
|
|
if err == http.ErrMissingFile {
|
|
|
|
|
c.JsonResult(6003,"没有发现需要上传的文件")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.JsonResult(6002,err.Error())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
|
|
ext := filepath.Ext(moreFile.Filename)
|
|
|
|
|
|
|
|
|
|
if ext == "" {
|
|
|
|
|
c.JsonResult(6003,"无法解析文件的格式")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if !conf.IsAllowUploadFileExt(ext) {
|
|
|
|
|
c.JsonResult(6004,"不允许的文件类型")
|
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
book_id := 0
|
|
|
|
|
//如果是超级管理员,则不判断权限
|
|
|
|
|
if c.Member.Role == conf.MemberSuperRole {
|
|
|
|
|
book,err := models.NewBook().FindByFieldFirst("identify",identify)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.JsonResult(6006, "文档不存在或权限不足")
|
|
|
|
|
}
|
|
|
|
|
book_id = book.BookId
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}else{
|
|
|
|
|
book, err := models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error("DocumentController.Edit => ", err)
|
|
|
|
|
if err == orm.ErrNoRows {
|
|
|
|
|
c.JsonResult(6006, "权限不足")
|
|
|
|
|
}
|
|
|
|
|
c.JsonResult(6001, err.Error())
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
//如果没有编辑权限
|
|
|
|
|
if book.RoleId != conf.BookEditor && book.RoleId != conf.BookAdmin && book.RoleId != conf.BookFounder {
|
|
|
|
|
c.JsonResult(6006, "权限不足")
|
|
|
|
|
}
|
|
|
|
|
book_id = book.BookId
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
|
2017-04-29 21:28:09 +08:00
|
|
|
|
if doc_id > 0 {
|
|
|
|
|
doc,err := models.NewDocument().Find(doc_id);
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.JsonResult(6007,"文档不存在")
|
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if doc.BookId != book_id {
|
2017-04-29 21:28:09 +08:00
|
|
|
|
c.JsonResult(6008,"文档不属于指定的项目")
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
2017-05-12 19:14:29 +08:00
|
|
|
|
fileName := "attach_" + strconv.FormatInt(time.Now().UnixNano(), 16)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
|
|
|
|
filePath := "uploads/" + time.Now().Format("200601") + "/" + fileName + ext
|
|
|
|
|
|
2017-04-29 21:28:09 +08:00
|
|
|
|
path := filepath.Dir(filePath)
|
|
|
|
|
|
|
|
|
|
os.MkdirAll(path, os.ModePerm)
|
|
|
|
|
|
2017-04-27 18:19:37 +08:00
|
|
|
|
err = c.SaveToFile(name,filePath)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
2017-04-29 21:28:09 +08:00
|
|
|
|
beego.Error("SaveToFile => ",err)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
c.JsonResult(6005,"保存文件失败")
|
|
|
|
|
}
|
|
|
|
|
attachment := models.NewAttachment()
|
2017-05-12 10:45:40 +08:00
|
|
|
|
attachment.BookId = book_id
|
2017-04-27 18:19:37 +08:00
|
|
|
|
attachment.FileName = moreFile.Filename
|
|
|
|
|
attachment.CreateAt = c.Member.MemberId
|
|
|
|
|
attachment.FileExt = ext
|
|
|
|
|
attachment.FilePath = filePath
|
2017-05-12 19:14:29 +08:00
|
|
|
|
attachment.DocumentId = doc_id
|
|
|
|
|
|
|
|
|
|
if fileInfo, err := os.Stat(filePath); err == nil {
|
|
|
|
|
attachment.FileSize = float64(fileInfo.Size())
|
|
|
|
|
}
|
2017-04-29 21:28:09 +08:00
|
|
|
|
if doc_id > 0{
|
|
|
|
|
attachment.DocumentId = doc_id
|
|
|
|
|
}
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
|
|
|
|
if strings.EqualFold(ext,".jpg") || strings.EqualFold(ext,".jpeg") || strings.EqualFold(ext,"png") || strings.EqualFold(ext,"gif") {
|
2017-05-12 19:14:29 +08:00
|
|
|
|
attachment.HttpPath = "/" + filePath
|
|
|
|
|
is_attach = false
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
err = attachment.Insert();
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
os.Remove(filePath)
|
2017-04-29 21:28:09 +08:00
|
|
|
|
beego.Error("Attachment Insert => ",err)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
c.JsonResult(6006,"文件保存失败")
|
|
|
|
|
}
|
|
|
|
|
if attachment.HttpPath == "" {
|
2017-05-12 19:14:29 +08:00
|
|
|
|
attachment.HttpPath = beego.URLFor("DocumentController.DownloadAttachment",":key", identify, ":attach_id", attachment.AttachmentId)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
|
|
|
|
if err := attachment.Update();err != nil {
|
2017-04-29 21:28:09 +08:00
|
|
|
|
beego.Error("SaveToFile => ",err)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
c.JsonResult(6005,"保存文件失败")
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-29 21:28:09 +08:00
|
|
|
|
|
2017-04-27 18:19:37 +08:00
|
|
|
|
result := map[string]interface{}{
|
2017-04-29 21:28:09 +08:00
|
|
|
|
"errcode" : 0,
|
2017-04-27 18:19:37 +08:00
|
|
|
|
"success" : 1,
|
|
|
|
|
"message" :"ok",
|
|
|
|
|
"url" : attachment.HttpPath,
|
|
|
|
|
"alt" : attachment.FileName,
|
2017-05-12 19:14:29 +08:00
|
|
|
|
"is_attach" : is_attach,
|
|
|
|
|
"attach" : attachment,
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-13 12:12:37 +08:00
|
|
|
|
//c.Data["json"] = result
|
|
|
|
|
//c.ServeJSON(true)
|
|
|
|
|
//c.StopRun()
|
|
|
|
|
//
|
|
|
|
|
//returnJSON, err := json.Marshal(result)
|
|
|
|
|
//
|
|
|
|
|
//if err != nil {
|
|
|
|
|
// beego.Error(err)
|
|
|
|
|
//}
|
|
|
|
|
//
|
|
|
|
|
//c.Ctx.ResponseWriter.Header().Set("Content-Type", "application/json; charset=utf-8")
|
|
|
|
|
//fmt.Fprint(c.Ctx.ResponseWriter,string(returnJSON))
|
|
|
|
|
c.Ctx.Output.JSON(result,true,false)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
c.StopRun()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//DownloadAttachment 下载附件.
|
|
|
|
|
func (c *DocumentController) DownloadAttachment() {
|
|
|
|
|
c.Prepare()
|
|
|
|
|
|
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
|
|
|
|
attach_id,_ := strconv.Atoi(c.Ctx.Input.Param(":attach_id"))
|
|
|
|
|
token := c.GetString("token")
|
|
|
|
|
|
|
|
|
|
member_id := 0
|
|
|
|
|
|
|
|
|
|
if c.Member != nil {
|
|
|
|
|
member_id = c.Member.MemberId
|
|
|
|
|
}
|
|
|
|
|
book_id := 0
|
|
|
|
|
|
|
|
|
|
//判断用户是否参与了项目
|
|
|
|
|
bookResult,err := models.NewBookResult().FindByIdentify(identify,member_id)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
//判断项目公开状态
|
2017-05-12 10:45:40 +08:00
|
|
|
|
book, err := models.NewBook().FindByFieldFirst("identify", identify)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
c.Abort("404")
|
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
//如果不是超级管理员则判断权限
|
|
|
|
|
if c.Member == nil || c.Member.Role != conf.MemberSuperRole {
|
|
|
|
|
//如果项目是私有的,并且token不正确
|
|
|
|
|
if (book.PrivatelyOwned == 1 && token == "" ) || ( book.PrivatelyOwned == 1 && book.PrivateToken != token ) {
|
|
|
|
|
c.Abort("403")
|
|
|
|
|
}
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
|
2017-04-27 18:19:37 +08:00
|
|
|
|
book_id = book.BookId
|
|
|
|
|
}else{
|
|
|
|
|
book_id = bookResult.BookId
|
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
//查找附件
|
2017-04-27 18:19:37 +08:00
|
|
|
|
attachment,err := models.NewAttachment().Find(attach_id)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
2017-04-29 21:28:09 +08:00
|
|
|
|
beego.Error("DownloadAttachment => ", err)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
if err == orm.ErrNoRows {
|
|
|
|
|
c.Abort("404")
|
|
|
|
|
} else {
|
|
|
|
|
c.Abort("500")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if attachment.BookId != book_id {
|
|
|
|
|
c.Abort("404")
|
|
|
|
|
}
|
|
|
|
|
c.Ctx.Output.Download(attachment.FilePath,attachment.FileName)
|
|
|
|
|
|
|
|
|
|
c.StopRun()
|
|
|
|
|
}
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
2017-05-12 19:14:29 +08:00
|
|
|
|
//删除附件.
|
|
|
|
|
func (c *DocumentController) RemoveAttachment() {
|
|
|
|
|
c.Prepare()
|
|
|
|
|
attach_id ,_ := c.GetInt("attach_id")
|
|
|
|
|
|
|
|
|
|
if attach_id <= 0 {
|
|
|
|
|
c.JsonResult(6001,"参数错误")
|
|
|
|
|
}
|
|
|
|
|
attach,err := models.NewAttachment().Find(attach_id)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.JsonResult(6002,"附件不存在")
|
|
|
|
|
}
|
|
|
|
|
document,err := models.NewDocument().Find(attach.DocumentId)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.JsonResult(6003,"文档不存在")
|
|
|
|
|
}
|
|
|
|
|
if c.Member.Role != conf.MemberSuperRole {
|
|
|
|
|
rel,err := models.NewRelationship().FindByBookIdAndMemberId(document.BookId,c.Member.MemberId)
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.JsonResult(6004,"权限不足")
|
|
|
|
|
}
|
|
|
|
|
if rel.RoleId == conf.BookObserver {
|
|
|
|
|
c.JsonResult(6004,"权限不足")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
err = attach.Delete()
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.JsonResult(6005,"删除失败")
|
|
|
|
|
}
|
|
|
|
|
c.JsonResult(0,"ok",attach)
|
|
|
|
|
}
|
2017-05-02 10:00:21 +08:00
|
|
|
|
//删除文档.
|
2017-04-28 18:08:01 +08:00
|
|
|
|
func (c *DocumentController) Delete() {
|
|
|
|
|
c.Prepare()
|
|
|
|
|
|
|
|
|
|
identify := c.GetString("identify")
|
|
|
|
|
doc_id,err := c.GetInt("doc_id",0)
|
|
|
|
|
|
2017-05-12 10:45:40 +08:00
|
|
|
|
book_id := 0
|
|
|
|
|
//如果是超级管理员则忽略权限判断
|
|
|
|
|
if c.Member.Role == conf.MemberSuperRole {
|
|
|
|
|
book,err := models.NewBook().FindByFieldFirst("identify",identify)
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error("FindByIdentify => ", err)
|
|
|
|
|
c.JsonResult(6002, "项目不存在或权限不足")
|
|
|
|
|
}
|
|
|
|
|
book_id = book.BookId
|
|
|
|
|
}else {
|
|
|
|
|
bookResult, err := models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if err != nil || bookResult.RoleId == conf.BookObserver {
|
|
|
|
|
beego.Error("FindByIdentify => ", err)
|
|
|
|
|
c.JsonResult(6002, "项目不存在或权限不足")
|
|
|
|
|
}
|
|
|
|
|
book_id = bookResult.BookId
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if doc_id <= 0 {
|
|
|
|
|
c.JsonResult(6001,"参数错误")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
doc,err := models.NewDocument().Find(doc_id)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
2017-04-29 21:28:09 +08:00
|
|
|
|
beego.Error("Delete => ",err)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
c.JsonResult(6003,"删除失败")
|
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
//如果文档所属项目错误
|
|
|
|
|
if doc.BookId != book_id {
|
2017-04-28 18:08:01 +08:00
|
|
|
|
c.JsonResult(6004,"参数错误")
|
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
//递归删除项目下的文档以及子文档
|
2017-04-28 18:08:01 +08:00
|
|
|
|
err = doc.RecursiveDocument(doc.DocumentId)
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.JsonResult(6005,"删除失败")
|
|
|
|
|
}
|
2017-05-02 10:00:21 +08:00
|
|
|
|
//重置文档数量统计
|
|
|
|
|
models.NewBook().ResetDocumentNumber(doc.BookId)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
c.JsonResult(0,"ok")
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-02 10:00:21 +08:00
|
|
|
|
//获取文档内容.
|
2017-04-28 18:08:01 +08:00
|
|
|
|
func (c *DocumentController) Content() {
|
|
|
|
|
c.Prepare()
|
|
|
|
|
|
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
|
|
|
|
doc_id,err := c.GetInt("doc_id")
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
doc_id,_ = strconv.Atoi(c.Ctx.Input.Param(":id"))
|
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
book_id := 0
|
|
|
|
|
//如果是超级管理员,则忽略权限
|
|
|
|
|
if c.Member.Role == conf.MemberSuperRole {
|
|
|
|
|
book ,err := models.NewBook().FindByFieldFirst("identify",identify)
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.JsonResult(6002, "项目不存在或权限不足")
|
|
|
|
|
}
|
|
|
|
|
book_id = book.BookId
|
|
|
|
|
}else {
|
|
|
|
|
bookResult, err := models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if err != nil || bookResult.RoleId == conf.BookObserver {
|
|
|
|
|
beego.Error("FindByIdentify => ", err)
|
|
|
|
|
c.JsonResult(6002, "项目不存在或权限不足")
|
|
|
|
|
}
|
|
|
|
|
book_id = bookResult.BookId
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if doc_id <= 0 {
|
|
|
|
|
c.JsonResult(6001,"参数错误")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if c.Ctx.Input.IsPost() {
|
|
|
|
|
markdown := strings.TrimSpace(c.GetString("markdown",""))
|
|
|
|
|
content := c.GetString("html")
|
|
|
|
|
version,_ := c.GetInt64("version",0)
|
|
|
|
|
is_cover := c.GetString("cover")
|
|
|
|
|
|
|
|
|
|
doc ,err := models.NewDocument().Find(doc_id);
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.JsonResult(6003,"读取文档错误")
|
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if doc.BookId != book_id {
|
2017-04-28 18:08:01 +08:00
|
|
|
|
c.JsonResult(6004,"保存的文档不属于指定项目")
|
|
|
|
|
}
|
|
|
|
|
if doc.Version != version && !strings.EqualFold(is_cover,"yes"){
|
2017-04-29 21:28:09 +08:00
|
|
|
|
beego.Info("%d|",version,doc.Version)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
c.JsonResult(6005,"文档已被修改确定要覆盖吗?")
|
|
|
|
|
}
|
|
|
|
|
if markdown == "" && content != ""{
|
|
|
|
|
doc.Markdown = content
|
|
|
|
|
}else{
|
|
|
|
|
doc.Markdown = markdown
|
|
|
|
|
}
|
|
|
|
|
doc.Version = time.Now().Unix()
|
|
|
|
|
doc.Content = content
|
|
|
|
|
if err := doc.InsertOrUpdate();err != nil {
|
2017-04-29 21:28:09 +08:00
|
|
|
|
beego.Error("InsertOrUpdate => ",err)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
c.JsonResult(6006,"保存失败")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
c.JsonResult(0,"ok",doc)
|
|
|
|
|
}
|
|
|
|
|
doc,err := models.NewDocument().Find(doc_id)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
c.JsonResult(6003,"文档不存在")
|
|
|
|
|
}
|
2017-05-12 19:14:29 +08:00
|
|
|
|
attach,err := models.NewAttachment().FindListByDocumentId(doc.DocumentId)
|
|
|
|
|
if err == nil {
|
|
|
|
|
doc.AttachList = attach
|
|
|
|
|
}
|
2017-04-28 18:08:01 +08:00
|
|
|
|
c.JsonResult(0,"ok",doc)
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-06 16:16:27 +08:00
|
|
|
|
//导出文件
|
|
|
|
|
func (c *DocumentController) Export() {
|
|
|
|
|
c.Prepare()
|
|
|
|
|
c.TplName = "document/export.tpl"
|
|
|
|
|
|
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
2017-05-09 10:04:56 +08:00
|
|
|
|
|
2017-05-06 16:16:27 +08:00
|
|
|
|
output := c.GetString("output")
|
2017-05-09 10:04:56 +08:00
|
|
|
|
|
2017-05-06 16:16:27 +08:00
|
|
|
|
token := c.GetString("token")
|
|
|
|
|
|
|
|
|
|
if identify == "" {
|
|
|
|
|
c.Abort("404")
|
|
|
|
|
}
|
|
|
|
|
//如果没有开启你们访问则跳转到登录
|
|
|
|
|
if !c.EnableAnonymous && c.Member == nil {
|
|
|
|
|
c.Redirect(beego.URLFor("AccountController.Login"),302)
|
|
|
|
|
return
|
|
|
|
|
}
|
2017-05-12 14:21:29 +08:00
|
|
|
|
bookResult := models.NewBookResult()
|
|
|
|
|
if c.Member != nil && c.Member.Role == conf.MemberSuperRole {
|
|
|
|
|
book,err := models.NewBook().FindByIdentify(identify)
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.Abort("500")
|
|
|
|
|
}
|
|
|
|
|
bookResult = book.ToBookResult()
|
|
|
|
|
}else {
|
|
|
|
|
bookResult = isReadable(identify, token, c)
|
|
|
|
|
}
|
|
|
|
|
docs, err := models.NewDocument().FindListByBookId(bookResult.BookId)
|
2017-05-06 16:16:27 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.Abort("500")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if output == "pdf" {
|
2017-05-10 18:06:54 +08:00
|
|
|
|
|
|
|
|
|
exe := beego.AppConfig.String("wkhtmltopdf")
|
|
|
|
|
|
|
|
|
|
if exe == "" {
|
|
|
|
|
c.TplName = "errors/error.tpl";
|
|
|
|
|
c.Data["ErrorMessage"] = "没有配置PDF导出程序"
|
|
|
|
|
c.Data["ErrorCode"] = 50010
|
|
|
|
|
return
|
|
|
|
|
}
|
2017-05-12 14:21:29 +08:00
|
|
|
|
dpath := "cache/" + bookResult.Identify
|
2017-05-06 16:16:27 +08:00
|
|
|
|
|
|
|
|
|
os.MkdirAll(dpath, 0766)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
2017-05-06 16:16:27 +08:00
|
|
|
|
pathList := list.New()
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
2017-05-12 14:21:29 +08:00
|
|
|
|
RecursiveFun(0, "", dpath, c, bookResult, docs, pathList)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
2017-05-12 14:21:29 +08:00
|
|
|
|
defer os.RemoveAll(dpath)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
2017-05-06 16:16:27 +08:00
|
|
|
|
os.MkdirAll("./cache", 0766)
|
2017-05-12 14:21:29 +08:00
|
|
|
|
pdfpath := "cache/" + identify + "_" + c.CruSession.SessionID() + ".pdf"
|
2017-05-06 16:16:27 +08:00
|
|
|
|
|
2017-05-10 18:06:54 +08:00
|
|
|
|
if _,err := os.Stat(pdfpath); os.IsNotExist(err){
|
|
|
|
|
paths := make([]string, len(docs))
|
|
|
|
|
index := 0
|
2017-05-13 12:12:37 +08:00
|
|
|
|
|
|
|
|
|
pdfg, err := wkhtmltopdf.NewPDFGenerator()
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.Abort("500")
|
2017-05-10 18:06:54 +08:00
|
|
|
|
}
|
2017-05-06 16:16:27 +08:00
|
|
|
|
|
2017-05-13 12:12:37 +08:00
|
|
|
|
for e := pathList.Front(); e != nil; e = e.Next() {
|
|
|
|
|
pdfg.AddPage(wkhtmltopdf.NewPage(paths[index]))
|
|
|
|
|
}
|
|
|
|
|
err = pdfg.Create()
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.Abort("500")
|
|
|
|
|
}
|
2017-05-06 16:16:27 +08:00
|
|
|
|
|
2017-05-13 12:12:37 +08:00
|
|
|
|
err = pdfg.WriteFile(pdfpath)
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
}
|
2017-05-10 18:06:54 +08:00
|
|
|
|
}
|
2017-05-06 16:16:27 +08:00
|
|
|
|
|
|
|
|
|
c.Ctx.Output.Download(pdfpath, identify + ".pdf")
|
|
|
|
|
|
2017-05-12 14:21:29 +08:00
|
|
|
|
defer os.Remove(pdfpath)
|
|
|
|
|
|
2017-05-06 16:16:27 +08:00
|
|
|
|
c.StopRun()
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-12 14:21:29 +08:00
|
|
|
|
c.Abort("404")
|
2017-05-06 16:16:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-09 10:04:56 +08:00
|
|
|
|
//递归生成文档序列数组.
|
2017-05-06 16:16:27 +08:00
|
|
|
|
func RecursiveFun(parent_id int,prefix,dpath string,c *DocumentController,book *models.BookResult,docs []*models.Document,paths *list.List) {
|
|
|
|
|
for _, item := range docs {
|
|
|
|
|
if item.ParentId == parent_id {
|
|
|
|
|
name := prefix + strconv.Itoa(item.ParentId) + strconv.Itoa(item.OrderSort) + strconv.Itoa(item.DocumentId)
|
|
|
|
|
fpath := dpath + "/" + name + ".html"
|
|
|
|
|
paths.PushBack(fpath)
|
|
|
|
|
|
|
|
|
|
|
2017-05-11 17:15:56 +08:00
|
|
|
|
f, err := os.OpenFile(fpath, os.O_CREATE|os.O_RDWR, 0777)
|
2017-05-06 16:16:27 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.Abort("500")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html, err := c.ExecuteViewPathTemplate("document/export.tpl", map[string]interface{}{"Model" : book, "Lists":item,"BaseUrl" : c.BaseUrl()})
|
|
|
|
|
if err != nil {
|
|
|
|
|
f.Close()
|
|
|
|
|
beego.Error(err)
|
|
|
|
|
c.Abort("500")
|
|
|
|
|
}
|
2017-05-13 12:12:37 +08:00
|
|
|
|
//beego.Info(fpath,html)
|
2017-05-06 16:16:27 +08:00
|
|
|
|
f.WriteString(html)
|
|
|
|
|
f.Close()
|
|
|
|
|
|
|
|
|
|
for _, sub := range docs {
|
|
|
|
|
if sub.ParentId == item.DocumentId {
|
|
|
|
|
RecursiveFun(item.DocumentId,name,dpath,c,book,docs,paths)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|