2017-04-20 18:19:32 +08:00
|
|
|
|
package controllers
|
|
|
|
|
|
2017-04-26 18:17:38 +08:00
|
|
|
|
import (
|
2021-03-23 21:55:50 +08:00
|
|
|
|
"context"
|
2017-05-13 13:04:53 +08:00
|
|
|
|
"encoding/json"
|
2018-08-14 15:57:52 +08:00
|
|
|
|
"fmt"
|
2019-05-20 12:08:14 +08:00
|
|
|
|
"html/template"
|
|
|
|
|
"image/png"
|
|
|
|
|
"net/http"
|
|
|
|
|
"net/url"
|
|
|
|
|
"os"
|
|
|
|
|
"path/filepath"
|
|
|
|
|
"regexp"
|
|
|
|
|
"strconv"
|
|
|
|
|
"strings"
|
|
|
|
|
"time"
|
2021-03-23 15:09:17 +08:00
|
|
|
|
|
2021-03-26 11:34:02 +08:00
|
|
|
|
"github.com/beego/beego/v2/client/orm"
|
2021-03-24 00:28:13 +08:00
|
|
|
|
"github.com/beego/beego/v2/core/logs"
|
2021-03-25 10:42:18 +08:00
|
|
|
|
"github.com/beego/beego/v2/server/web"
|
2021-04-11 01:20:47 +08:00
|
|
|
|
"github.com/beego/i18n"
|
2021-03-23 15:09:17 +08:00
|
|
|
|
"github.com/boombuler/barcode"
|
|
|
|
|
"github.com/boombuler/barcode/qr"
|
|
|
|
|
"github.com/mindoc-org/mindoc/conf"
|
|
|
|
|
"github.com/mindoc-org/mindoc/models"
|
|
|
|
|
"github.com/mindoc-org/mindoc/utils"
|
|
|
|
|
"github.com/mindoc-org/mindoc/utils/cryptil"
|
|
|
|
|
"github.com/mindoc-org/mindoc/utils/filetil"
|
|
|
|
|
"github.com/mindoc-org/mindoc/utils/gopool"
|
|
|
|
|
"github.com/mindoc-org/mindoc/utils/pagination"
|
2021-03-24 00:28:13 +08:00
|
|
|
|
"github.com/russross/blackfriday/v2"
|
2017-04-26 18:17:38 +08:00
|
|
|
|
)
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// DocumentController struct
|
2017-04-20 18:19:32 +08:00
|
|
|
|
type DocumentController struct {
|
|
|
|
|
BaseController
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 文档首页
|
2017-05-13 13:04:53 +08:00
|
|
|
|
func (c *DocumentController) Index() {
|
2017-04-30 22:13:12 +08:00
|
|
|
|
c.Prepare()
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-04-30 22:13:12 +08:00
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
|
|
|
|
token := c.GetString("token")
|
|
|
|
|
|
|
|
|
|
if identify == "" {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(404, i18n.Tr(c.Lang, "message.item_not_exist"))
|
2017-04-30 22:13:12 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 如果没有开启匿名访问则跳转到登录
|
2018-11-14 15:57:55 +08:00
|
|
|
|
if !c.EnableAnonymous && !c.isUserLoggedIn() {
|
2017-12-21 15:27:57 +08:00
|
|
|
|
promptUserToLogIn(c)
|
2017-05-03 17:09:01 +08:00
|
|
|
|
return
|
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-11-14 15:57:55 +08:00
|
|
|
|
bookResult := c.isReadable(identify, token)
|
2017-05-01 12:15:55 +08:00
|
|
|
|
|
2017-04-30 22:13:12 +08:00
|
|
|
|
c.TplName = "document/" + bookResult.Theme + "_read.tpl"
|
|
|
|
|
|
2018-03-23 10:00:36 +08:00
|
|
|
|
selected := 0
|
|
|
|
|
|
|
|
|
|
if bookResult.IsUseFirstDocument {
|
2018-08-14 15:57:52 +08:00
|
|
|
|
doc, err := bookResult.FindFirstDocumentByBookId(bookResult.BookId)
|
2018-03-23 10:00:36 +08:00
|
|
|
|
if err == nil {
|
|
|
|
|
selected = doc.DocumentId
|
|
|
|
|
c.Data["Title"] = doc.DocumentName
|
|
|
|
|
c.Data["Content"] = template.HTML(doc.Release)
|
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
c.Data["Description"] = utils.AutoSummary(doc.Release, 120)
|
2022-05-14 20:54:59 +08:00
|
|
|
|
|
2022-05-18 11:17:03 +08:00
|
|
|
|
if bookResult.IsDisplayComment {
|
|
|
|
|
// 获取评论、分页
|
|
|
|
|
comments, count, _ := models.NewComment().QueryCommentByDocumentId(doc.DocumentId, 1, conf.PageSize, c.Member)
|
|
|
|
|
page := pagination.PageUtil(int(count), 1, conf.PageSize, comments)
|
|
|
|
|
c.Data["Page"] = page
|
|
|
|
|
}
|
2018-03-23 10:00:36 +08:00
|
|
|
|
}
|
2018-08-14 15:57:52 +08:00
|
|
|
|
} else {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.Data["Title"] = i18n.Tr(c.Lang, "blog.summary")
|
2018-03-23 10:00:36 +08:00
|
|
|
|
c.Data["Content"] = template.HTML(blackfriday.Run([]byte(bookResult.Description)))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tree, err := models.NewDocument().CreateDocumentTreeForHtml(bookResult.BookId, selected)
|
2017-04-30 22:13:12 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
2018-07-25 17:47:06 +08:00
|
|
|
|
if err == orm.ErrNoRows {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(404, i18n.Tr(c.Lang, "message.no_doc_in_cur_proj"))
|
2018-07-25 17:47:06 +08:00
|
|
|
|
} else {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("生成项目文档树时出错 -> ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.build_doc_tree_error"))
|
2018-07-25 17:47:06 +08:00
|
|
|
|
}
|
2017-04-30 22:13:12 +08:00
|
|
|
|
}
|
2022-05-14 20:54:59 +08:00
|
|
|
|
c.Data["IS_DOCUMENT_INDEX"] = true
|
2017-04-30 22:13:12 +08:00
|
|
|
|
c.Data["Model"] = bookResult
|
|
|
|
|
c.Data["Result"] = template.HTML(tree)
|
2018-03-23 10:00:36 +08:00
|
|
|
|
|
2017-04-20 18:19:32 +08:00
|
|
|
|
}
|
2017-05-12 11:41:59 +08:00
|
|
|
|
|
2022-07-05 11:59:23 +08:00
|
|
|
|
// CheckPassword : Handles password verification for private documents,
|
|
|
|
|
// and front-end requests are made through Ajax.
|
|
|
|
|
func (c *DocumentController) CheckPassword() {
|
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
|
|
|
|
password := c.GetString("bPassword")
|
|
|
|
|
|
|
|
|
|
if identify == "" || password == "" {
|
|
|
|
|
c.JsonResult(http.StatusBadRequest, i18n.Tr(c.Lang, "message.param_error"))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// You have not logged in and need to log in again.
|
|
|
|
|
if !c.EnableAnonymous && !c.isUserLoggedIn() {
|
|
|
|
|
logs.Info("You have not logged in and need to log in again(SessionId: %s).",
|
|
|
|
|
c.CruSession.SessionID(context.TODO()))
|
|
|
|
|
c.JsonResult(6000, i18n.Tr(c.Lang, "message.need_relogin"))
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
book, err := models.NewBook().FindByFieldFirst("identify", identify)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
logs.Error(err)
|
|
|
|
|
c.JsonResult(500, i18n.Tr(c.Lang, "message.item_not_exist"))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if book.BookPassword != password {
|
|
|
|
|
c.JsonResult(5001, i18n.Tr(c.Lang, "message.wrong_password"))
|
|
|
|
|
} else {
|
|
|
|
|
c.SetSession(identify, password)
|
|
|
|
|
c.JsonResult(0, "OK")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 阅读文档
|
2017-04-30 22:13:12 +08:00
|
|
|
|
func (c *DocumentController) Read() {
|
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
|
|
|
|
token := c.GetString("token")
|
2017-05-13 13:04:53 +08:00
|
|
|
|
id := c.GetString(":id")
|
2017-04-30 22:13:12 +08:00
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
if identify == "" || id == "" {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(404, i18n.Tr(c.Lang, "message.item_not_exist"))
|
2017-04-30 22:13:12 +08:00
|
|
|
|
}
|
2017-05-03 17:09:01 +08:00
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 如果没有开启匿名访问则跳转到登录
|
2018-11-14 15:57:55 +08:00
|
|
|
|
if !c.EnableAnonymous && !c.isUserLoggedIn() {
|
2017-12-21 15:27:57 +08:00
|
|
|
|
promptUserToLogIn(c)
|
2017-05-03 17:09:01 +08:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-14 15:57:55 +08:00
|
|
|
|
bookResult := c.isReadable(identify, token)
|
2017-04-30 22:13:12 +08:00
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
c.TplName = fmt.Sprintf("document/%s_read.tpl", bookResult.Theme)
|
2017-04-30 22:13:12 +08:00
|
|
|
|
|
|
|
|
|
doc := models.NewDocument()
|
2018-03-23 11:17:52 +08:00
|
|
|
|
if docId, err := strconv.Atoi(id); err == nil {
|
|
|
|
|
doc, err = doc.FromCacheById(docId)
|
2019-05-20 12:08:14 +08:00
|
|
|
|
if err != nil || doc == nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("从缓存中读取文档时失败 ->", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(404, i18n.Tr(c.Lang, "message.doc_not_exist"))
|
2019-05-20 12:08:14 +08:00
|
|
|
|
return
|
2017-04-30 22:13:12 +08:00
|
|
|
|
}
|
2017-05-13 13:04:53 +08:00
|
|
|
|
} else {
|
2018-08-14 15:57:52 +08:00
|
|
|
|
doc, err = doc.FromCacheByIdentify(id, bookResult.BookId)
|
2019-05-20 12:08:14 +08:00
|
|
|
|
if err != nil || doc == nil {
|
2018-07-25 17:47:06 +08:00
|
|
|
|
if err == orm.ErrNoRows {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(404, i18n.Tr(c.Lang, "message.doc_not_exist"))
|
2018-08-14 15:57:52 +08:00
|
|
|
|
} else {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
logs.Error("从数据库查询文档时出错 ->", err)
|
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.unknown_exception"))
|
2018-07-25 17:47:06 +08:00
|
|
|
|
}
|
2019-05-20 12:08:14 +08:00
|
|
|
|
return
|
2017-04-30 22:13:12 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if doc.BookId != bookResult.BookId {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(404, i18n.Tr(c.Lang, "message.doc_not_exist"))
|
2017-04-30 22:13:12 +08:00
|
|
|
|
}
|
2021-04-12 21:12:26 +08:00
|
|
|
|
doc.Lang = c.Lang
|
2018-09-13 18:19:26 +08:00
|
|
|
|
doc.Processor()
|
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
attach, err := models.NewAttachment().FindListByDocumentId(doc.DocumentId)
|
2017-05-13 12:12:37 +08:00
|
|
|
|
if err == nil {
|
|
|
|
|
doc.AttachList = attach
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-01 09:23:55 +08:00
|
|
|
|
doc.IncrViewCount(doc.DocumentId)
|
2021-04-25 16:05:05 +08:00
|
|
|
|
doc.ViewCount = doc.ViewCount + 1
|
|
|
|
|
doc.PutToCache()
|
2021-03-31 19:32:18 +08:00
|
|
|
|
|
2017-04-30 22:13:12 +08:00
|
|
|
|
if c.IsAjax() {
|
2017-05-13 13:04:53 +08:00
|
|
|
|
var data struct {
|
2022-05-18 11:17:03 +08:00
|
|
|
|
DocId int `json:"doc_id"`
|
|
|
|
|
DocIdentify string `json:"doc_identify"`
|
|
|
|
|
DocTitle string `json:"doc_title"`
|
|
|
|
|
Body string `json:"body"`
|
|
|
|
|
Title string `json:"title"`
|
|
|
|
|
Version int64 `json:"version"`
|
|
|
|
|
ViewCount int `json:"view_count"`
|
2017-04-30 22:13:12 +08:00
|
|
|
|
}
|
2022-05-14 20:54:59 +08:00
|
|
|
|
data.DocId = doc.DocumentId
|
|
|
|
|
data.DocIdentify = doc.Identify
|
2017-04-30 22:13:12 +08:00
|
|
|
|
data.DocTitle = doc.DocumentName
|
|
|
|
|
data.Body = doc.Release
|
|
|
|
|
data.Title = doc.DocumentName + " - Powered by MinDoc"
|
2018-09-05 17:56:18 +08:00
|
|
|
|
data.Version = doc.Version
|
2021-04-25 16:05:05 +08:00
|
|
|
|
data.ViewCount = doc.ViewCount
|
2017-04-30 22:13:12 +08:00
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
c.JsonResult(0, "ok", data)
|
2022-05-14 20:54:59 +08:00
|
|
|
|
} else {
|
|
|
|
|
c.Data["DocumentId"] = doc.DocumentId
|
|
|
|
|
c.Data["DocIdentify"] = doc.Identify
|
2022-05-18 11:17:03 +08:00
|
|
|
|
if bookResult.IsDisplayComment {
|
|
|
|
|
// 获取评论、分页
|
|
|
|
|
comments, count, _ := models.NewComment().QueryCommentByDocumentId(doc.DocumentId, 1, conf.PageSize, c.Member)
|
|
|
|
|
page := pagination.PageUtil(int(count), 1, conf.PageSize, comments)
|
|
|
|
|
c.Data["Page"] = page
|
|
|
|
|
}
|
2017-04-30 22:13:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
tree, err := models.NewDocument().CreateDocumentTreeForHtml(bookResult.BookId, doc.DocumentId)
|
2017-04-30 22:13:12 +08:00
|
|
|
|
|
2018-07-25 17:47:06 +08:00
|
|
|
|
if err != nil && err != orm.ErrNoRows {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("生成项目文档树时出错 ->", err)
|
2018-07-25 17:47:06 +08:00
|
|
|
|
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.build_doc_tree_error"))
|
2017-04-30 22:13:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
c.Data["Description"] = utils.AutoSummary(doc.Release, 120)
|
2018-07-25 14:46:56 +08:00
|
|
|
|
|
2017-04-30 22:13:12 +08:00
|
|
|
|
c.Data["Model"] = bookResult
|
|
|
|
|
c.Data["Result"] = template.HTML(tree)
|
|
|
|
|
c.Data["Title"] = doc.DocumentName
|
|
|
|
|
c.Data["Content"] = template.HTML(doc.Release)
|
2021-04-25 16:05:05 +08:00
|
|
|
|
c.Data["ViewCount"] = doc.ViewCount
|
2017-04-20 18:19:32 +08:00
|
|
|
|
}
|
2017-04-26 18:17:38 +08:00
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 编辑文档
|
2017-05-13 13:04:53 +08:00
|
|
|
|
func (c *DocumentController) Edit() {
|
2017-04-26 18:17:38 +08:00
|
|
|
|
c.Prepare()
|
|
|
|
|
|
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
2017-04-27 18:19:37 +08:00
|
|
|
|
if identify == "" {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(404, i18n.Tr(c.Lang, "message.project_id_error"))
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-04-26 18:17:38 +08:00
|
|
|
|
|
2017-05-12 10:45:40 +08:00
|
|
|
|
bookResult := models.NewBookResult()
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-12 11:41:59 +08:00
|
|
|
|
var err error
|
2018-11-26 18:54:50 +08:00
|
|
|
|
// 如果是管理者,则不判断权限
|
2017-06-05 10:52:14 +08:00
|
|
|
|
if c.Member.IsAdministrator() {
|
2017-05-13 13:04:53 +08:00
|
|
|
|
book, err := models.NewBook().FindByFieldFirst("identify", identify)
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if err != nil {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.item_not_exist_or_no_permit"))
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}
|
2017-04-26 18:17:38 +08:00
|
|
|
|
|
2018-01-25 19:18:59 +08:00
|
|
|
|
bookResult = models.NewBookResult().ToBookResult(*book)
|
2017-05-13 13:04:53 +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 {
|
2019-05-20 12:08:14 +08:00
|
|
|
|
if err == orm.ErrNoRows || err == models.ErrPermissionDenied {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(403, i18n.Tr(c.Lang, "message.item_not_exist_or_no_permit"))
|
2018-08-14 15:57:52 +08:00
|
|
|
|
} else {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("查询项目时出错 -> ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.system_error"))
|
2018-07-25 17:47:06 +08:00
|
|
|
|
}
|
2019-05-20 17:38:37 +08:00
|
|
|
|
return
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
if bookResult.RoleId == conf.BookObserver {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.item_not_exist_or_no_permit"))
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}
|
2017-04-29 21:28:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 根据不同编辑器类型加载编辑器
|
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-05-13 13:04:53 +08:00
|
|
|
|
} else if bookResult.Editor == "html" {
|
2021-08-25 17:32:31 +08:00
|
|
|
|
c.TplName = "document/html_edit_template.tpl"
|
|
|
|
|
} else if bookResult.Editor == "new_html" {
|
2018-01-19 20:10:54 +08:00
|
|
|
|
c.TplName = "document/new_html_edit_template.tpl"
|
2017-05-13 13:04:53 +08:00
|
|
|
|
} else {
|
2017-04-29 21:28:09 +08:00
|
|
|
|
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-05-13 13:04:53 +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-05-13 13:04:53 +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 {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("FindDocumentTree => ", err)
|
2017-05-13 13:04:53 +08:00
|
|
|
|
} else {
|
2017-04-27 18:19:37 +08:00
|
|
|
|
if len(trees) > 0 {
|
|
|
|
|
if jtree, err := json.Marshal(trees); err == nil {
|
|
|
|
|
c.Data["Result"] = template.JS(string(jtree))
|
|
|
|
|
}
|
2017-05-13 13:04:53 +08:00
|
|
|
|
} else {
|
2017-04-27 18:19:37 +08:00
|
|
|
|
c.Data["Result"] = template.JS("[]")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-25 10:42:18 +08:00
|
|
|
|
c.Data["BaiDuMapKey"] = web.AppConfig.DefaultString("baidumapkey", "")
|
2018-09-11 15:57:03 +08:00
|
|
|
|
|
|
|
|
|
if conf.GetUploadFileSize() > 0 {
|
|
|
|
|
c.Data["UploadFileSize"] = conf.GetUploadFileSize()
|
2018-11-14 15:57:55 +08:00
|
|
|
|
} else {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
c.Data["UploadFileSize"] = "undefined"
|
2018-09-11 15:57:03 +08:00
|
|
|
|
}
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 创建一个文档
|
2017-04-27 18:19:37 +08:00
|
|
|
|
func (c *DocumentController) Create() {
|
|
|
|
|
identify := c.GetString("identify")
|
2018-03-23 11:17:52 +08:00
|
|
|
|
docIdentify := c.GetString("doc_identify")
|
|
|
|
|
docName := c.GetString("doc_name")
|
|
|
|
|
parentId, _ := c.GetInt("parent_id", 0)
|
|
|
|
|
docId, _ := c.GetInt("doc_id", 0)
|
2018-09-11 15:57:03 +08:00
|
|
|
|
isOpen, _ := c.GetInt("is_open", 0)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
|
|
|
|
if identify == "" {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.param_error"))
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
if docName == "" {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6004, i18n.Tr(c.Lang, "message.doc_name_empty"))
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
bookId := 0
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 如果是超级管理员则不判断权限
|
2017-06-05 10:52:14 +08:00
|
|
|
|
if c.Member.IsAdministrator() {
|
2017-05-13 13:04:53 +08:00
|
|
|
|
book, err := models.NewBook().FindByFieldFirst("identify", identify)
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error(err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.item_not_existed_or_no_permit"))
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
bookId = book.BookId
|
2017-05-13 13:04:53 +08:00
|
|
|
|
} else {
|
2017-05-12 10:45:40 +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 || bookResult.RoleId == conf.BookObserver {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("FindByIdentify => ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.item_not_existed_or_no_permit"))
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
bookId = bookResult.BookId
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
if docIdentify != "" {
|
|
|
|
|
if ok, err := regexp.MatchString(`[a-z]+[a-zA-Z0-9_.\-]*$`, docIdentify); !ok || err != nil {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6003, i18n.Tr(c.Lang, "message.project_id_tips"))
|
2018-03-23 11:17:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
d, _ := models.NewDocument().FindByIdentityFirst(docIdentify, bookId)
|
2018-03-23 11:17:52 +08:00
|
|
|
|
if d.DocumentId > 0 && d.DocumentId != docId {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6006, i18n.Tr(c.Lang, "message.project_id_existed"))
|
2018-03-23 11:17:52 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if parentId > 0 {
|
|
|
|
|
doc, err := models.NewDocument().Find(parentId)
|
|
|
|
|
if err != nil || doc.BookId != bookId {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6003, i18n.Tr(c.Lang, "message.parent_id_not_existed"))
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
document, _ := models.NewDocument().Find(docId)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
2017-04-27 18:19:37 +08:00
|
|
|
|
document.MemberId = c.Member.MemberId
|
2018-03-23 11:17:52 +08:00
|
|
|
|
document.BookId = bookId
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
document.Identify = docIdentify
|
2018-01-18 19:54:05 +08:00
|
|
|
|
|
2017-04-28 18:08:01 +08:00
|
|
|
|
document.Version = time.Now().Unix()
|
2018-03-23 11:17:52 +08:00
|
|
|
|
document.DocumentName = docName
|
|
|
|
|
document.ParentId = parentId
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
2018-08-14 18:17:46 +08:00
|
|
|
|
if isOpen == 1 {
|
|
|
|
|
document.IsOpen = 1
|
2019-05-20 17:38:37 +08:00
|
|
|
|
} else if isOpen == 2 {
|
|
|
|
|
document.IsOpen = 2
|
2018-09-11 15:57:03 +08:00
|
|
|
|
} else {
|
2018-08-14 18:17:46 +08:00
|
|
|
|
document.IsOpen = 0
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
if err := document.InsertOrUpdate(); err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("添加或更新文档时出错 -> ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6005, i18n.Tr(c.Lang, "message.failed"))
|
2017-05-13 13:04:53 +08:00
|
|
|
|
} else {
|
|
|
|
|
c.JsonResult(0, "ok", document)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 上传附件或图片
|
2017-05-13 13:04:53 +08:00
|
|
|
|
func (c *DocumentController) Upload() {
|
2017-04-27 18:19:37 +08:00
|
|
|
|
identify := c.GetString("identify")
|
2018-08-14 15:57:52 +08:00
|
|
|
|
docId, _ := c.GetInt("doc_id")
|
|
|
|
|
isAttach := true
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
|
|
|
|
if identify == "" {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.param_error"))
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
name := "editormd-file-file"
|
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
file, moreFile, err := c.GetFile(name)
|
2019-05-20 12:08:14 +08:00
|
|
|
|
if err == http.ErrMissingFile || moreFile == nil {
|
2017-04-27 18:19:37 +08:00
|
|
|
|
name = "editormd-image-file"
|
2017-05-13 13:04:53 +08:00
|
|
|
|
file, moreFile, err = c.GetFile(name)
|
2019-05-20 12:08:14 +08:00
|
|
|
|
if err == http.ErrMissingFile || moreFile == nil {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6003, i18n.Tr(c.Lang, "message.upload_file_empty"))
|
2019-05-20 12:08:14 +08:00
|
|
|
|
return
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-04-27 18:19:37 +08:00
|
|
|
|
if err != nil {
|
2017-05-13 13:04:53 +08:00
|
|
|
|
c.JsonResult(6002, err.Error())
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
defer file.Close()
|
|
|
|
|
|
2018-01-18 19:54:05 +08:00
|
|
|
|
type Size interface {
|
|
|
|
|
Size() int64
|
|
|
|
|
}
|
2018-01-27 12:26:51 +08:00
|
|
|
|
|
2018-01-26 17:17:38 +08:00
|
|
|
|
if conf.GetUploadFileSize() > 0 && moreFile.Size > conf.GetUploadFileSize() {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6009, i18n.Tr(c.Lang, "message.upload_file_size_limit"))
|
2018-01-18 19:54:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-27 18:19:37 +08:00
|
|
|
|
ext := filepath.Ext(moreFile.Filename)
|
2018-09-11 15:57:03 +08:00
|
|
|
|
//文件必须带有后缀名
|
2017-04-27 18:19:37 +08:00
|
|
|
|
if ext == "" {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6003, i18n.Tr(c.Lang, "message.upload_file_type_error"))
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2018-01-18 19:54:05 +08:00
|
|
|
|
//如果文件类型设置为 * 标识不限制文件类型
|
2018-09-11 15:57:03 +08:00
|
|
|
|
if conf.IsAllowUploadFileExt(ext) == false {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6004, i18n.Tr(c.Lang, "message.upload_file_type_error"))
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-01-27 12:26:51 +08:00
|
|
|
|
bookId := 0
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 如果是超级管理员,则不判断权限
|
2017-06-05 10:52:14 +08:00
|
|
|
|
if c.Member.IsAdministrator() {
|
2017-05-13 13:04:53 +08:00
|
|
|
|
book, err := models.NewBook().FindByFieldFirst("identify", identify)
|
2017-05-12 10:45:40 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6006, i18n.Tr(c.Lang, "message.doc_not_exist_or_no_permit"))
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
2018-01-27 12:26:51 +08:00
|
|
|
|
bookId = book.BookId
|
2017-05-13 13:04:53 +08:00
|
|
|
|
} else {
|
2017-05-12 10:45:40 +08:00
|
|
|
|
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 {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("DocumentController.Edit => ", err)
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if err == orm.ErrNoRows {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6006, i18n.Tr(c.Lang, "message.no_permission"))
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-12 10:45:40 +08:00
|
|
|
|
c.JsonResult(6001, err.Error())
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 如果没有编辑权限
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if book.RoleId != conf.BookEditor && book.RoleId != conf.BookAdmin && book.RoleId != conf.BookFounder {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6006, i18n.Tr(c.Lang, "message.no_permission"))
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-01-27 12:26:51 +08:00
|
|
|
|
bookId = book.BookId
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
if docId > 0 {
|
|
|
|
|
doc, err := models.NewDocument().Find(docId)
|
2017-04-29 21:28:09 +08:00
|
|
|
|
if err != nil {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6007, i18n.Tr(c.Lang, "message.doc_not_exist"))
|
2017-04-29 21:28:09 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-01-27 12:26:51 +08:00
|
|
|
|
if doc.BookId != bookId {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6008, i18n.Tr(c.Lang, "message.doc_not_belong_project"))
|
2017-04-29 21:28:09 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
fileName := "m_" + cryptil.UniqueId() + "_r"
|
|
|
|
|
filePath := filepath.Join(conf.WorkingDirectory, "uploads", identify)
|
2018-01-27 12:26:51 +08:00
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
//将图片和文件分开存放
|
2019-02-27 17:32:06 +08:00
|
|
|
|
if filetil.IsImageExt(moreFile.Filename) {
|
2018-08-14 15:57:52 +08:00
|
|
|
|
filePath = filepath.Join(filePath, "images", fileName+ext)
|
|
|
|
|
} else {
|
|
|
|
|
filePath = filepath.Join(filePath, "files", fileName+ext)
|
|
|
|
|
}
|
2018-01-27 12:26:51 +08:00
|
|
|
|
|
2017-04-29 21:28:09 +08:00
|
|
|
|
path := filepath.Dir(filePath)
|
|
|
|
|
|
2019-05-20 12:08:14 +08:00
|
|
|
|
_ = os.MkdirAll(path, os.ModePerm)
|
2017-04-29 21:28:09 +08:00
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
err = c.SaveToFile(name, filePath)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("保存文件失败 -> ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6005, i18n.Tr(c.Lang, "message.failed"))
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-04-27 18:19:37 +08:00
|
|
|
|
attachment := models.NewAttachment()
|
2018-01-27 12:26:51 +08:00
|
|
|
|
attachment.BookId = bookId
|
2017-04-27 18:19:37 +08:00
|
|
|
|
attachment.FileName = moreFile.Filename
|
|
|
|
|
attachment.CreateAt = c.Member.MemberId
|
|
|
|
|
attachment.FileExt = ext
|
2018-01-26 17:17:38 +08:00
|
|
|
|
attachment.FilePath = strings.TrimPrefix(filePath, conf.WorkingDirectory)
|
2018-08-14 15:57:52 +08:00
|
|
|
|
attachment.DocumentId = docId
|
2017-05-12 19:14:29 +08:00
|
|
|
|
|
|
|
|
|
if fileInfo, err := os.Stat(filePath); err == nil {
|
|
|
|
|
attachment.FileSize = float64(fileInfo.Size())
|
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
if docId > 0 {
|
|
|
|
|
attachment.DocumentId = docId
|
2017-04-29 21:28:09 +08:00
|
|
|
|
}
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
2019-03-11 17:36:45 +08:00
|
|
|
|
if filetil.IsImageExt(moreFile.Filename) {
|
2018-01-26 17:17:38 +08:00
|
|
|
|
attachment.HttpPath = "/" + strings.Replace(strings.TrimPrefix(filePath, conf.WorkingDirectory), "\\", "/", -1)
|
2017-06-05 13:41:47 +08:00
|
|
|
|
if strings.HasPrefix(attachment.HttpPath, "//") {
|
2018-03-13 19:20:50 +08:00
|
|
|
|
attachment.HttpPath = conf.URLForWithCdnImage(string(attachment.HttpPath[1:]))
|
2017-06-05 13:38:06 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
isAttach = false
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
err = attachment.Insert()
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
os.Remove(filePath)
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("文件保存失败 ->", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6006, i18n.Tr(c.Lang, "message.failed"))
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-04-27 18:19:37 +08:00
|
|
|
|
if attachment.HttpPath == "" {
|
2018-11-15 19:54:25 +08:00
|
|
|
|
attachment.HttpPath = conf.URLForNotHost("DocumentController.DownloadAttachment", ":key", identify, ":attach_id", attachment.AttachmentId)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
if err := attachment.Update(); err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("保存文件失败 ->", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6005, i18n.Tr(c.Lang, "message.failed"))
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-29 21:28:09 +08:00
|
|
|
|
|
2017-04-27 18:19:37 +08:00
|
|
|
|
result := map[string]interface{}{
|
2017-05-13 13:04:53 +08:00
|
|
|
|
"errcode": 0,
|
|
|
|
|
"success": 1,
|
|
|
|
|
"message": "ok",
|
|
|
|
|
"url": attachment.HttpPath,
|
|
|
|
|
"alt": attachment.FileName,
|
2018-08-14 15:57:52 +08:00
|
|
|
|
"is_attach": isAttach,
|
2017-05-13 13:04:53 +08:00
|
|
|
|
"attach": attachment,
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
c.Ctx.Output.JSON(result, true, false)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
c.StopRun()
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 下载附件
|
2017-05-13 13:04:53 +08:00
|
|
|
|
func (c *DocumentController) DownloadAttachment() {
|
2017-04-27 18:19:37 +08:00
|
|
|
|
c.Prepare()
|
|
|
|
|
|
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
2018-03-13 14:14:56 +08:00
|
|
|
|
attachId, _ := strconv.Atoi(c.Ctx.Input.Param(":attach_id"))
|
2017-04-27 18:19:37 +08:00
|
|
|
|
token := c.GetString("token")
|
|
|
|
|
|
2018-03-13 14:14:56 +08:00
|
|
|
|
memberId := 0
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
|
|
|
|
if c.Member != nil {
|
2018-03-13 14:14:56 +08:00
|
|
|
|
memberId = c.Member.MemberId
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-13 14:14:56 +08:00
|
|
|
|
bookId := 0
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 判断用户是否参与了项目
|
2018-03-13 14:14:56 +08:00
|
|
|
|
bookResult, err := models.NewBookResult().FindByIdentify(identify, memberId)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 判断项目公开状态
|
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 {
|
2018-07-25 17:47:06 +08:00
|
|
|
|
if err == orm.ErrNoRows {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(404, i18n.Tr(c.Lang, "message.item_not_exist"))
|
2018-08-14 15:57:52 +08:00
|
|
|
|
} else {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("查找项目时出错 ->", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.system_error"))
|
2018-07-25 17:47:06 +08:00
|
|
|
|
}
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 如果不是超级管理员则判断权限
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if c.Member == nil || c.Member.Role != conf.MemberSuperRole {
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 如果项目是私有的,并且 token 不正确
|
2017-05-13 13:04:53 +08:00
|
|
|
|
if (book.PrivatelyOwned == 1 && token == "") || (book.PrivatelyOwned == 1 && book.PrivateToken != token) {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(403, i18n.Tr(c.Lang, "message.no_permission"))
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-05-12 10:45:40 +08:00
|
|
|
|
|
2018-03-13 14:14:56 +08:00
|
|
|
|
bookId = book.BookId
|
2017-05-13 13:04:53 +08:00
|
|
|
|
} else {
|
2018-03-13 14:14:56 +08:00
|
|
|
|
bookId = bookResult.BookId
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 查找附件
|
2018-03-13 14:14:56 +08:00
|
|
|
|
attachment, err := models.NewAttachment().Find(attachId)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("查找附件时出错 -> ", err)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
if err == orm.ErrNoRows {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(404, i18n.Tr(c.Lang, "message.attachment_not_exist"))
|
2017-04-27 18:19:37 +08:00
|
|
|
|
} else {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.system_error"))
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-13 14:14:56 +08:00
|
|
|
|
if attachment.BookId != bookId {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(404, i18n.Tr(c.Lang, "message.attachment_not_exist"))
|
2017-04-27 18:19:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-26 17:17:38 +08:00
|
|
|
|
c.Ctx.Output.Download(filepath.Join(conf.WorkingDirectory, attachment.FilePath), attachment.FileName)
|
2017-04-27 18:19:37 +08:00
|
|
|
|
c.StopRun()
|
|
|
|
|
}
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 删除附件
|
2017-05-13 13:04:53 +08:00
|
|
|
|
func (c *DocumentController) RemoveAttachment() {
|
2017-05-12 19:14:29 +08:00
|
|
|
|
c.Prepare()
|
2018-07-17 19:13:11 +08:00
|
|
|
|
attachId, _ := c.GetInt("attach_id")
|
2017-05-12 19:14:29 +08:00
|
|
|
|
|
2018-07-17 19:13:11 +08:00
|
|
|
|
if attachId <= 0 {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.param_error"))
|
2017-05-12 19:14:29 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-07-17 19:13:11 +08:00
|
|
|
|
attach, err := models.NewAttachment().Find(attachId)
|
2017-05-12 19:14:29 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error(err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.attachment_not_exist"))
|
2017-05-12 19:14:29 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
document, err := models.NewDocument().Find(attach.DocumentId)
|
2017-05-12 19:14:29 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error(err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6003, i18n.Tr(c.Lang, "message.doc_not_exist"))
|
2017-05-12 19:14:29 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-12 19:14:29 +08:00
|
|
|
|
if c.Member.Role != conf.MemberSuperRole {
|
2017-05-13 13:04:53 +08:00
|
|
|
|
rel, err := models.NewRelationship().FindByBookIdAndMemberId(document.BookId, c.Member.MemberId)
|
2017-05-12 19:14:29 +08:00
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error(err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6004, i18n.Tr(c.Lang, "message.no_permission"))
|
2017-05-12 19:14:29 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-12 19:14:29 +08:00
|
|
|
|
if rel.RoleId == conf.BookObserver {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6004, i18n.Tr(c.Lang, "message.no_permission"))
|
2017-05-12 19:14:29 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
err = attach.Delete()
|
2017-05-12 19:14:29 +08:00
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error(err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6005, i18n.Tr(c.Lang, "message.failed"))
|
2017-05-12 19:14:29 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-01-26 17:17:38 +08:00
|
|
|
|
os.Remove(filepath.Join(conf.WorkingDirectory, attach.FilePath))
|
2017-06-05 13:38:06 +08:00
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
c.JsonResult(0, "ok", attach)
|
2017-05-12 19:14:29 +08:00
|
|
|
|
}
|
2017-05-13 13:04:53 +08:00
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 删除文档
|
2017-04-28 18:08:01 +08:00
|
|
|
|
func (c *DocumentController) Delete() {
|
|
|
|
|
c.Prepare()
|
|
|
|
|
|
|
|
|
|
identify := c.GetString("identify")
|
2018-08-14 15:57:52 +08:00
|
|
|
|
docId, err := c.GetInt("doc_id", 0)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
bookId := 0
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 如果是超级管理员则忽略权限判断
|
2017-06-05 10:52:14 +08:00
|
|
|
|
if c.Member.IsAdministrator() {
|
2017-05-13 13:04:53 +08:00
|
|
|
|
book, err := models.NewBook().FindByFieldFirst("identify", identify)
|
2017-05-12 10:45:40 +08:00
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("FindByIdentify => ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.item_not_exist_or_no_permit"))
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
bookId = book.BookId
|
2017-05-13 13:04:53 +08:00
|
|
|
|
} else {
|
2017-05-12 10:45:40 +08:00
|
|
|
|
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 {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("FindByIdentify => ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.item_not_exist_or_no_permit"))
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
bookId = bookResult.BookId
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
if docId <= 0 {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.param_error"))
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
doc, err := models.NewDocument().Find(docId)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("Delete => ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6003, i18n.Tr(c.Lang, "message.failed"))
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 如果文档所属项目错误
|
2018-08-14 15:57:52 +08:00
|
|
|
|
if doc.BookId != bookId {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6004, i18n.Tr(c.Lang, "message.param_error"))
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 递归删除项目下的文档以及子文档
|
2017-04-28 18:08:01 +08:00
|
|
|
|
err = doc.RecursiveDocument(doc.DocumentId)
|
|
|
|
|
if err != nil {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6005, i18n.Tr(c.Lang, "message.failed"))
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 重置文档数量统计
|
2017-05-02 10:00:21 +08:00
|
|
|
|
models.NewBook().ResetDocumentNumber(doc.BookId)
|
2017-05-13 13:04:53 +08:00
|
|
|
|
c.JsonResult(0, "ok")
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 获取文档内容
|
2017-05-13 13:04:53 +08:00
|
|
|
|
func (c *DocumentController) Content() {
|
2017-04-28 18:08:01 +08:00
|
|
|
|
c.Prepare()
|
|
|
|
|
|
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
2018-02-28 15:47:00 +08:00
|
|
|
|
docId, err := c.GetInt("doc_id")
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
2018-02-28 15:47:00 +08:00
|
|
|
|
docId, _ = strconv.Atoi(c.Ctx.Input.Param(":id"))
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-02-28 15:47:00 +08:00
|
|
|
|
bookId := 0
|
|
|
|
|
autoRelease := false
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 如果是超级管理员,则忽略权限
|
2017-05-26 14:19:27 +08:00
|
|
|
|
if c.Member.IsAdministrator() {
|
2017-05-13 13:04:53 +08:00
|
|
|
|
book, err := models.NewBook().FindByFieldFirst("identify", identify)
|
2019-05-20 12:08:14 +08:00
|
|
|
|
if err != nil || book == nil {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.item_not_exist_or_no_permit"))
|
2019-05-20 12:08:14 +08:00
|
|
|
|
return
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-02-28 15:47:00 +08:00
|
|
|
|
bookId = book.BookId
|
|
|
|
|
autoRelease = book.AutoRelease == 1
|
2017-05-13 13:04:53 +08:00
|
|
|
|
} else {
|
2017-05-12 10:45:40 +08:00
|
|
|
|
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 {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("项目不存在或权限不足 -> ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.item_not_exist_or_no_permit"))
|
2017-05-12 10:45:40 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-02-28 15:47:00 +08:00
|
|
|
|
bookId = bookResult.BookId
|
|
|
|
|
autoRelease = bookResult.AutoRelease
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-28 15:47:00 +08:00
|
|
|
|
if docId <= 0 {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.param_error"))
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if c.Ctx.Input.IsPost() {
|
2017-05-13 13:04:53 +08:00
|
|
|
|
markdown := strings.TrimSpace(c.GetString("markdown", ""))
|
2017-04-28 18:08:01 +08:00
|
|
|
|
content := c.GetString("html")
|
2017-05-13 13:04:53 +08:00
|
|
|
|
version, _ := c.GetInt64("version", 0)
|
2018-02-28 15:47:00 +08:00
|
|
|
|
isCover := c.GetString("cover")
|
2017-04-28 18:08:01 +08:00
|
|
|
|
|
2018-02-28 15:47:00 +08:00
|
|
|
|
doc, err := models.NewDocument().Find(docId)
|
2019-05-20 12:08:14 +08:00
|
|
|
|
if err != nil || doc == nil {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6003, i18n.Tr(c.Lang, "message.read_file_error"))
|
2019-05-20 12:08:14 +08:00
|
|
|
|
return
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-02-28 15:47:00 +08:00
|
|
|
|
if doc.BookId != bookId {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6004, i18n.Tr(c.Lang, "message.dock_not_belong_project"))
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-02-28 15:47:00 +08:00
|
|
|
|
if doc.Version != version && !strings.EqualFold(isCover, "yes") {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Info("%d|", version, doc.Version)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6005, i18n.Tr(c.Lang, "message.confirm_override_doc"))
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-20 15:27:03 +08:00
|
|
|
|
history := models.NewDocumentHistory()
|
2018-02-28 15:47:00 +08:00
|
|
|
|
history.DocumentId = docId
|
2017-05-20 15:27:03 +08:00
|
|
|
|
history.Content = doc.Content
|
|
|
|
|
history.Markdown = doc.Markdown
|
|
|
|
|
history.DocumentName = doc.DocumentName
|
|
|
|
|
history.ModifyAt = c.Member.MemberId
|
|
|
|
|
history.MemberId = doc.MemberId
|
|
|
|
|
history.ParentId = doc.ParentId
|
|
|
|
|
history.Version = time.Now().Unix()
|
|
|
|
|
history.Action = "modify"
|
2021-04-11 01:20:47 +08:00
|
|
|
|
history.ActionName = i18n.Tr(c.Lang, "doc.modify_doc")
|
2017-05-20 15:27:03 +08:00
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
if markdown == "" && content != "" {
|
2017-04-28 18:08:01 +08:00
|
|
|
|
doc.Markdown = content
|
2017-05-13 13:04:53 +08:00
|
|
|
|
} else {
|
2017-04-28 18:08:01 +08:00
|
|
|
|
doc.Markdown = markdown
|
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-04-28 18:08:01 +08:00
|
|
|
|
doc.Version = time.Now().Unix()
|
|
|
|
|
doc.Content = content
|
2019-05-20 17:38:37 +08:00
|
|
|
|
doc.ModifyAt = c.Member.MemberId
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
if err := doc.InsertOrUpdate(); err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("InsertOrUpdate => ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6006, i18n.Tr(c.Lang, "message.failed"))
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 如果启用了文档历史,则添加历史文档
|
2018-03-12 16:24:44 +08:00
|
|
|
|
///如果两次保存的MD5值不同则保存为历史,否则忽略
|
|
|
|
|
go func(history *models.DocumentHistory) {
|
|
|
|
|
if c.EnableDocumentHistory && cryptil.Md5Crypt(history.Markdown) != cryptil.Md5Crypt(doc.Markdown) {
|
|
|
|
|
_, err = history.InsertOrUpdate()
|
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("DocumentHistory InsertOrUpdate => ", err)
|
2018-03-12 16:24:44 +08:00
|
|
|
|
}
|
2017-05-20 15:27:03 +08:00
|
|
|
|
}
|
2018-03-12 16:24:44 +08:00
|
|
|
|
}(history)
|
|
|
|
|
|
2018-02-02 23:12:29 +08:00
|
|
|
|
//如果启用了自动发布
|
2018-02-28 15:47:00 +08:00
|
|
|
|
if autoRelease {
|
2018-08-13 19:05:49 +08:00
|
|
|
|
go func() {
|
2021-04-12 21:12:26 +08:00
|
|
|
|
doc.Lang = c.Lang
|
2018-08-13 19:05:49 +08:00
|
|
|
|
err := doc.ReleaseContent()
|
|
|
|
|
if err == nil {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
logs.Informational(i18n.Tr(c.Lang, "message.doc_auto_published")+"-> document_id=%d;document_name=%s", doc.DocumentId, doc.DocumentName)
|
2018-08-13 19:05:49 +08:00
|
|
|
|
}
|
|
|
|
|
}()
|
2018-01-18 19:54:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
c.JsonResult(0, "ok", doc)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-28 15:47:00 +08:00
|
|
|
|
doc, err := models.NewDocument().Find(docId)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
if err != nil {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6003, i18n.Tr(c.Lang, "message.doc_not_exist"))
|
2019-05-20 17:38:37 +08:00
|
|
|
|
return
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
attach, err := models.NewAttachment().FindListByDocumentId(doc.DocumentId)
|
2017-05-12 19:14:29 +08:00
|
|
|
|
if err == nil {
|
|
|
|
|
doc.AttachList = attach
|
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
c.JsonResult(0, "ok", doc)
|
2017-04-28 18:08:01 +08:00
|
|
|
|
}
|
2018-08-14 15:57:52 +08:00
|
|
|
|
|
2019-05-20 12:08:14 +08:00
|
|
|
|
// Export 导出
|
2018-01-25 19:18:59 +08:00
|
|
|
|
func (c *DocumentController) Export() {
|
2017-05-06 16:16:27 +08:00
|
|
|
|
c.Prepare()
|
|
|
|
|
|
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
2017-12-21 15:27:57 +08:00
|
|
|
|
if identify == "" {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.param_error"))
|
2017-12-21 15:27:57 +08:00
|
|
|
|
}
|
2017-05-09 10:04:56 +08:00
|
|
|
|
|
2017-05-06 16:16:27 +08:00
|
|
|
|
output := c.GetString("output")
|
|
|
|
|
token := c.GetString("token")
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 如果没有开启匿名访问则跳转到登录
|
2018-11-14 15:57:55 +08:00
|
|
|
|
if !c.EnableAnonymous && !c.isUserLoggedIn() {
|
2017-12-21 15:27:57 +08:00
|
|
|
|
promptUserToLogIn(c)
|
2017-05-06 16:16:27 +08:00
|
|
|
|
return
|
|
|
|
|
}
|
2018-07-12 18:44:02 +08:00
|
|
|
|
if !conf.GetEnableExport() {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "export_func_disable"))
|
2018-07-12 18:44:02 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-12 14:21:29 +08:00
|
|
|
|
bookResult := models.NewBookResult()
|
2017-06-05 10:52:14 +08:00
|
|
|
|
if c.Member != nil && c.Member.IsAdministrator() {
|
2017-05-13 13:04:53 +08:00
|
|
|
|
book, err := models.NewBook().FindByIdentify(identify)
|
2017-05-12 14:21:29 +08:00
|
|
|
|
if err != nil {
|
2018-07-25 17:47:06 +08:00
|
|
|
|
if err == orm.ErrNoRows {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(404, i18n.Tr(c.Lang, "message.item_not_exist"))
|
2018-07-25 17:47:06 +08:00
|
|
|
|
} else {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("查找项目时出错 ->", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.system_error"))
|
2018-07-25 17:47:06 +08:00
|
|
|
|
}
|
2017-05-12 14:21:29 +08:00
|
|
|
|
}
|
2018-01-25 19:18:59 +08:00
|
|
|
|
bookResult = models.NewBookResult().ToBookResult(*book)
|
2017-05-13 13:04:53 +08:00
|
|
|
|
} else {
|
2018-11-14 15:57:55 +08:00
|
|
|
|
bookResult = c.isReadable(identify, token)
|
2017-05-12 14:21:29 +08:00
|
|
|
|
}
|
2018-02-28 15:47:00 +08:00
|
|
|
|
if !bookResult.IsDownload {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(200, i18n.Tr(c.Lang, "message.cur_project_export_func_disable"))
|
2018-02-28 15:47:00 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-01-26 17:17:38 +08:00
|
|
|
|
if !strings.HasPrefix(bookResult.Cover, "http:://") && !strings.HasPrefix(bookResult.Cover, "https:://") {
|
2018-03-13 19:20:50 +08:00
|
|
|
|
bookResult.Cover = conf.URLForWithCdnImage(bookResult.Cover)
|
2018-01-25 19:18:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-12 18:24:58 +08:00
|
|
|
|
if output == "markdown" {
|
2018-08-14 15:57:52 +08:00
|
|
|
|
if bookResult.Editor != "markdown" {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.cur_project_not_support_md"))
|
2018-03-12 18:24:58 +08:00
|
|
|
|
}
|
2021-03-23 21:55:50 +08:00
|
|
|
|
p, err := bookResult.ExportMarkdown(c.CruSession.SessionID(context.TODO()))
|
2018-03-12 18:24:58 +08:00
|
|
|
|
|
|
|
|
|
if err != nil {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.failed"))
|
2018-03-12 18:24:58 +08:00
|
|
|
|
}
|
|
|
|
|
c.Ctx.Output.Download(p, bookResult.BookName+".zip")
|
|
|
|
|
|
|
|
|
|
c.StopRun()
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-11 11:30:48 +08:00
|
|
|
|
outputPath := filepath.Join(conf.GetExportOutputPath(), strconv.Itoa(bookResult.BookId))
|
2018-01-25 19:18:59 +08:00
|
|
|
|
|
2018-07-10 16:26:25 +08:00
|
|
|
|
pdfpath := filepath.Join(outputPath, "book.pdf")
|
|
|
|
|
epubpath := filepath.Join(outputPath, "book.epub")
|
|
|
|
|
mobipath := filepath.Join(outputPath, "book.mobi")
|
|
|
|
|
docxpath := filepath.Join(outputPath, "book.docx")
|
2018-01-26 17:17:38 +08:00
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
if output == "pdf" && filetil.FileExists(pdfpath) {
|
2018-07-10 16:26:25 +08:00
|
|
|
|
c.Ctx.Output.Download(pdfpath, bookResult.BookName+".pdf")
|
2018-01-26 17:17:38 +08:00
|
|
|
|
c.Abort("200")
|
2018-08-14 15:57:52 +08:00
|
|
|
|
} else if output == "epub" && filetil.FileExists(epubpath) {
|
2018-07-10 16:26:25 +08:00
|
|
|
|
c.Ctx.Output.Download(epubpath, bookResult.BookName+".epub")
|
2018-01-26 17:17:38 +08:00
|
|
|
|
|
|
|
|
|
c.Abort("200")
|
2018-07-10 16:26:25 +08:00
|
|
|
|
} else if output == "mobi" && filetil.FileExists(mobipath) {
|
|
|
|
|
c.Ctx.Output.Download(mobipath, bookResult.BookName+".mobi")
|
2018-01-26 17:17:38 +08:00
|
|
|
|
|
|
|
|
|
c.Abort("200")
|
2018-08-14 15:57:52 +08:00
|
|
|
|
} else if output == "docx" && filetil.FileExists(docxpath) {
|
2018-07-10 16:26:25 +08:00
|
|
|
|
c.Ctx.Output.Download(docxpath, bookResult.BookName+".docx")
|
2018-01-26 17:17:38 +08:00
|
|
|
|
|
|
|
|
|
c.Abort("200")
|
2018-07-10 16:26:25 +08:00
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
} else if output == "pdf" || output == "epub" || output == "docx" || output == "mobi" {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
if err := models.BackgroundConvert(c.CruSession.SessionID(context.TODO()), bookResult); err != nil && err != gopool.ErrHandlerIsExist {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.export_failed"))
|
2018-07-11 14:18:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(200, i18n.Tr(c.Lang, "message.file_converting"))
|
2018-08-14 15:57:52 +08:00
|
|
|
|
} else {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(200, i18n.Tr(c.Lang, "message.unsupport_file_type"))
|
2017-05-06 16:16:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(404, i18n.Tr(c.Lang, "message.no_exportable_file"))
|
2017-05-06 16:16:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 生成项目访问的二维码
|
2017-05-13 13:04:53 +08:00
|
|
|
|
func (c *DocumentController) QrCode() {
|
|
|
|
|
c.Prepare()
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
identify := c.GetString(":key")
|
|
|
|
|
|
|
|
|
|
book, err := models.NewBook().FindByIdentify(identify)
|
|
|
|
|
if err != nil || book.BookId <= 0 {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(404, i18n.Tr(c.Lang, "message.item_not_exist"))
|
2017-05-13 13:04:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-13 19:20:50 +08:00
|
|
|
|
uri := conf.URLFor("DocumentController.Index", ":key", identify)
|
2017-05-13 13:04:53 +08:00
|
|
|
|
code, err := qr.Encode(uri, qr.L, qr.Unicode)
|
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("生成二维码失败 ->", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.gen_qrcode_failed"))
|
2017-05-13 13:04:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
code, err = barcode.Scale(code, 150, 150)
|
2017-05-13 13:04:53 +08:00
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("生成二维码失败 ->", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.gen_qrcode_failed"))
|
2017-05-13 13:04:53 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
c.Ctx.ResponseWriter.Header().Set("Content-Type", "image/png")
|
2017-05-13 13:15:21 +08:00
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// imgpath := filepath.Join("cache","qrcode",identify + ".png")
|
2017-05-13 13:15:21 +08:00
|
|
|
|
|
2017-05-13 13:04:53 +08:00
|
|
|
|
err = png.Encode(c.Ctx.ResponseWriter, code)
|
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("生成二维码失败 ->", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.gen_qrcode_failed"))
|
2017-05-13 13:04:53 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 项目内搜索
|
2017-06-05 10:52:14 +08:00
|
|
|
|
func (c *DocumentController) Search() {
|
2017-05-13 17:41:17 +08:00
|
|
|
|
c.Prepare()
|
2017-05-15 14:59:23 +08:00
|
|
|
|
|
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
|
|
|
|
token := c.GetString("token")
|
|
|
|
|
keyword := strings.TrimSpace(c.GetString("keyword"))
|
|
|
|
|
|
2017-06-05 10:52:14 +08:00
|
|
|
|
if identify == "" {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.param_error"))
|
2017-05-15 14:59:23 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-11-14 15:57:55 +08:00
|
|
|
|
if !c.EnableAnonymous && !c.isUserLoggedIn() {
|
2017-12-21 15:27:57 +08:00
|
|
|
|
promptUserToLogIn(c)
|
2017-05-15 14:59:23 +08:00
|
|
|
|
return
|
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-11-14 15:57:55 +08:00
|
|
|
|
bookResult := c.isReadable(identify, token)
|
2017-05-15 14:59:23 +08:00
|
|
|
|
|
2017-06-05 10:52:14 +08:00
|
|
|
|
docs, err := models.NewDocumentSearchResult().SearchDocument(keyword, bookResult.BookId)
|
2017-05-15 14:59:23 +08:00
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error(err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.search_result_error"))
|
2017-05-15 14:59:23 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-15 14:59:23 +08:00
|
|
|
|
if len(docs) < 0 {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(404, i18n.Tr(c.Lang, "message.no_data"))
|
2017-05-15 14:59:23 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-06-05 10:52:14 +08:00
|
|
|
|
for _, doc := range docs {
|
2017-05-15 14:59:23 +08:00
|
|
|
|
doc.BookId = bookResult.BookId
|
|
|
|
|
doc.BookName = bookResult.BookName
|
|
|
|
|
doc.Description = bookResult.Description
|
|
|
|
|
doc.BookIdentify = bookResult.Identify
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-05 10:52:14 +08:00
|
|
|
|
c.JsonResult(0, "ok", docs)
|
2017-05-13 17:41:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 文档历史列表
|
2017-05-20 15:27:03 +08:00
|
|
|
|
func (c *DocumentController) History() {
|
|
|
|
|
c.Prepare()
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-25 15:19:17 +08:00
|
|
|
|
c.TplName = "document/history.tpl"
|
2017-05-20 15:27:03 +08:00
|
|
|
|
|
|
|
|
|
identify := c.GetString("identify")
|
2018-03-23 11:17:52 +08:00
|
|
|
|
docId, err := c.GetInt("doc_id", 0)
|
2017-05-20 15:27:03 +08:00
|
|
|
|
pageIndex, _ := c.GetInt("page", 1)
|
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
bookId := 0
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 如果是超级管理员则忽略权限判断
|
2017-06-05 10:52:14 +08:00
|
|
|
|
if c.Member.IsAdministrator() {
|
2017-05-20 15:27:03 +08:00
|
|
|
|
book, err := models.NewBook().FindByFieldFirst("identify", identify)
|
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("查找项目失败 ->", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.Data["ErrorMessage"] = i18n.Tr(c.Lang, "message.item_not_exist_or_no_permit")
|
2017-05-25 15:19:17 +08:00
|
|
|
|
return
|
2017-05-20 15:27:03 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
bookId = book.BookId
|
2017-05-25 15:19:17 +08:00
|
|
|
|
c.Data["Model"] = book
|
2017-05-20 15:27:03 +08:00
|
|
|
|
} else {
|
|
|
|
|
bookResult, err := models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
|
|
|
|
|
if err != nil || bookResult.RoleId == conf.BookObserver {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("查找项目失败 ->", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.Data["ErrorMessage"] = i18n.Tr(c.Lang, "message.item_not_exist_or_no_permit")
|
2017-05-25 15:19:17 +08:00
|
|
|
|
return
|
2017-05-20 15:27:03 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
bookId = bookResult.BookId
|
2017-05-25 15:19:17 +08:00
|
|
|
|
c.Data["Model"] = bookResult
|
2017-05-20 15:27:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
if docId <= 0 {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.Data["ErrorMessage"] = i18n.Tr(c.Lang, "message.param_error")
|
2017-05-25 15:19:17 +08:00
|
|
|
|
return
|
2017-05-20 15:27:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
doc, err := models.NewDocument().Find(docId)
|
2017-05-20 15:27:03 +08:00
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("Delete => ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.Data["ErrorMessage"] = i18n.Tr(c.Lang, "message.get_doc_his_failed")
|
2017-05-25 15:19:17 +08:00
|
|
|
|
return
|
2017-05-20 15:27:03 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 如果文档所属项目错误
|
2018-08-14 15:57:52 +08:00
|
|
|
|
if doc.BookId != bookId {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.Data["ErrorMessage"] = i18n.Tr(c.Lang, "message.param_error")
|
2017-05-25 15:19:17 +08:00
|
|
|
|
return
|
2017-05-20 15:27:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
histories, totalCount, err := models.NewDocumentHistory().FindToPager(docId, pageIndex, conf.PageSize)
|
2017-05-20 15:27:03 +08:00
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("分页查找文档历史失败 ->", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.Data["ErrorMessage"] = i18n.Tr(c.Lang, "message.get_doc_his_failed")
|
2017-05-25 15:19:17 +08:00
|
|
|
|
return
|
2017-05-20 15:27:03 +08:00
|
|
|
|
}
|
2017-05-25 15:19:17 +08:00
|
|
|
|
|
2018-08-14 15:57:52 +08:00
|
|
|
|
c.Data["List"] = histories
|
2017-05-25 15:19:17 +08:00
|
|
|
|
c.Data["PageHtml"] = ""
|
|
|
|
|
c.Data["Document"] = doc
|
|
|
|
|
|
2017-05-20 15:27:03 +08:00
|
|
|
|
if totalCount > 0 {
|
2018-03-13 14:14:56 +08:00
|
|
|
|
pager := pagination.NewPagination(c.Ctx.Request, totalCount, conf.PageSize, c.BaseUrl())
|
2018-01-26 18:07:55 +08:00
|
|
|
|
c.Data["PageHtml"] = pager.HtmlPages()
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *DocumentController) DeleteHistory() {
|
|
|
|
|
c.Prepare()
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-25 15:19:17 +08:00
|
|
|
|
c.TplName = "document/history.tpl"
|
|
|
|
|
|
|
|
|
|
identify := c.GetString("identify")
|
2018-03-23 11:17:52 +08:00
|
|
|
|
docId, err := c.GetInt("doc_id", 0)
|
|
|
|
|
historyId, _ := c.GetInt("history_id", 0)
|
2017-05-25 15:19:17 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
if historyId <= 0 {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.param_error"))
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
bookId := 0
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 如果是超级管理员则忽略权限判断
|
2017-06-05 10:52:14 +08:00
|
|
|
|
if c.Member.IsAdministrator() {
|
2017-05-25 15:19:17 +08:00
|
|
|
|
book, err := models.NewBook().FindByFieldFirst("identify", identify)
|
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("查找项目失败 ->", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.item_not_exist_or_no_permit"))
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
bookId = book.BookId
|
2017-05-25 15:19:17 +08:00
|
|
|
|
} else {
|
|
|
|
|
bookResult, err := models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
|
|
|
|
|
if err != nil || bookResult.RoleId == conf.BookObserver {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("查找项目失败 ->", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.item_not_exist_or_no_permit"))
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
bookId = bookResult.BookId
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
if docId <= 0 {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.param_error"))
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
doc, err := models.NewDocument().Find(docId)
|
2017-05-25 15:19:17 +08:00
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("Delete => ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.get_doc_his_failed"))
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 如果文档所属项目错误
|
2018-03-23 11:17:52 +08:00
|
|
|
|
if doc.BookId != bookId {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.param_error"))
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
err = models.NewDocumentHistory().Delete(historyId, docId)
|
2017-05-25 15:19:17 +08:00
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error(err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.failed"))
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-06-05 10:52:14 +08:00
|
|
|
|
c.JsonResult(0, "ok")
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
2018-08-14 15:57:52 +08:00
|
|
|
|
|
2018-07-11 11:30:48 +08:00
|
|
|
|
//通过文档历史恢复文档
|
2017-06-05 10:52:14 +08:00
|
|
|
|
func (c *DocumentController) RestoreHistory() {
|
2017-05-25 15:19:17 +08:00
|
|
|
|
c.Prepare()
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-05-25 15:19:17 +08:00
|
|
|
|
c.TplName = "document/history.tpl"
|
|
|
|
|
|
|
|
|
|
identify := c.GetString("identify")
|
2018-03-23 11:17:52 +08:00
|
|
|
|
docId, err := c.GetInt("doc_id", 0)
|
|
|
|
|
historyId, _ := c.GetInt("history_id", 0)
|
2017-05-25 15:19:17 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
if historyId <= 0 {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.param_error"))
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
bookId := 0
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 如果是超级管理员则忽略权限判断
|
2017-06-05 10:52:14 +08:00
|
|
|
|
if c.Member.IsAdministrator() {
|
2017-05-25 15:19:17 +08:00
|
|
|
|
book, err := models.NewBook().FindByFieldFirst("identify", identify)
|
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("FindByIdentify => ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.item_not_exist_or_no_permit"))
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
bookId = book.BookId
|
2017-05-25 15:19:17 +08:00
|
|
|
|
} else {
|
|
|
|
|
bookResult, err := models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
|
|
|
|
|
if err != nil || bookResult.RoleId == conf.BookObserver {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("FindByIdentify => ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.item_not_exist_or_no_permit"))
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
bookId = bookResult.BookId
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
if docId <= 0 {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.param_error"))
|
2017-05-20 15:27:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
doc, err := models.NewDocument().Find(docId)
|
2017-05-25 15:19:17 +08:00
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("Delete => ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.get_doc_his_failed"))
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
|
|
|
|
// 如果文档所属项目错误
|
2018-03-23 11:17:52 +08:00
|
|
|
|
if doc.BookId != bookId {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.param_error"))
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
err = models.NewDocumentHistory().Restore(historyId, docId, c.Member.MemberId)
|
2017-05-25 15:19:17 +08:00
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error(err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6002, i18n.Tr(c.Lang, "message.failed"))
|
2017-05-25 15:19:17 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-06-05 10:52:14 +08:00
|
|
|
|
c.JsonResult(0, "ok", doc)
|
2017-05-20 15:27:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-20 16:16:41 +08:00
|
|
|
|
func (c *DocumentController) Compare() {
|
2017-06-09 18:14:55 +08:00
|
|
|
|
c.Prepare()
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2017-06-09 18:14:55 +08:00
|
|
|
|
c.TplName = "document/compare.tpl"
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
historyId, _ := strconv.Atoi(c.Ctx.Input.Param(":id"))
|
2017-06-12 17:58:45 +08:00
|
|
|
|
identify := c.Ctx.Input.Param(":key")
|
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
bookId := 0
|
2017-06-12 17:58:45 +08:00
|
|
|
|
editor := "markdown"
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
// 如果是超级管理员则忽略权限判断
|
2017-06-12 17:58:45 +08:00
|
|
|
|
if c.Member.IsAdministrator() {
|
|
|
|
|
book, err := models.NewBook().FindByFieldFirst("identify", identify)
|
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("DocumentController.Compare => ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(403, i18n.Tr(c.Lang, "message.no_permission"))
|
2017-06-12 17:58:45 +08:00
|
|
|
|
return
|
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
bookId = book.BookId
|
2017-06-12 17:58:45 +08:00
|
|
|
|
c.Data["Model"] = book
|
|
|
|
|
editor = book.Editor
|
|
|
|
|
} else {
|
|
|
|
|
bookResult, err := models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
|
|
|
|
|
if err != nil || bookResult.RoleId == conf.BookObserver {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("FindByIdentify => ", err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(403, i18n.Tr(c.Lang, "message.no_permission"))
|
2017-06-12 17:58:45 +08:00
|
|
|
|
return
|
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
bookId = bookResult.BookId
|
2017-06-12 17:58:45 +08:00
|
|
|
|
c.Data["Model"] = bookResult
|
|
|
|
|
editor = bookResult.Editor
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
if historyId <= 0 {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(60002, i18n.Tr(c.Lang, "message.param_error"))
|
2017-06-12 17:58:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
history, err := models.NewDocumentHistory().Find(historyId)
|
2017-06-12 17:58:45 +08:00
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error("DocumentController.Compare => ", err)
|
2017-12-20 16:16:41 +08:00
|
|
|
|
c.ShowErrorPage(60003, err.Error())
|
2017-06-12 17:58:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-21 15:27:57 +08:00
|
|
|
|
doc, err := models.NewDocument().Find(history.DocumentId)
|
2019-05-20 12:08:14 +08:00
|
|
|
|
if err != nil || doc == nil || doc.BookId != bookId {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(60002, i18n.Tr(c.Lang, "message.doc_not_exist"))
|
2019-05-20 12:08:14 +08:00
|
|
|
|
return
|
2017-06-12 17:58:45 +08:00
|
|
|
|
}
|
2017-12-21 15:27:57 +08:00
|
|
|
|
|
2018-03-23 11:17:52 +08:00
|
|
|
|
c.Data["HistoryId"] = historyId
|
2017-06-12 17:58:45 +08:00
|
|
|
|
c.Data["DocumentId"] = doc.DocumentId
|
|
|
|
|
|
|
|
|
|
if editor == "markdown" {
|
|
|
|
|
c.Data["HistoryContent"] = history.Markdown
|
|
|
|
|
c.Data["Content"] = doc.Markdown
|
2017-12-20 16:16:41 +08:00
|
|
|
|
} else {
|
2017-06-12 17:58:45 +08:00
|
|
|
|
c.Data["HistoryContent"] = template.HTML(history.Content)
|
|
|
|
|
c.Data["Content"] = template.HTML(doc.Content)
|
|
|
|
|
}
|
2017-06-09 18:14:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-23 10:00:36 +08:00
|
|
|
|
// 判断用户是否可以阅读文档
|
2018-11-14 15:57:55 +08:00
|
|
|
|
func (c *DocumentController) isReadable(identify, token string) *models.BookResult {
|
2018-03-23 10:00:36 +08:00
|
|
|
|
book, err := models.NewBook().FindByFieldFirst("identify", identify)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Error(err)
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.item_not_exist"))
|
2018-03-23 10:00:36 +08:00
|
|
|
|
}
|
2018-11-13 17:33:13 +08:00
|
|
|
|
bookResult := models.NewBookResult().ToBookResult(*book)
|
|
|
|
|
isOk := false
|
2018-03-23 10:00:36 +08:00
|
|
|
|
|
2018-11-14 15:57:55 +08:00
|
|
|
|
if c.isUserLoggedIn() {
|
2018-11-13 17:33:13 +08:00
|
|
|
|
roleId, err := models.NewBook().FindForRoleId(book.BookId, c.Member.MemberId)
|
|
|
|
|
if err == nil {
|
|
|
|
|
isOk = true
|
|
|
|
|
bookResult.MemberId = c.Member.MemberId
|
|
|
|
|
bookResult.RoleId = roleId
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-03-23 10:00:36 +08:00
|
|
|
|
|
2022-07-05 11:59:23 +08:00
|
|
|
|
/* 私有项目:
|
|
|
|
|
* 管理员可以直接访问
|
|
|
|
|
* 参与者可以直接访问
|
|
|
|
|
* 其他用户(支持匿名访问)
|
|
|
|
|
* token设置情况
|
|
|
|
|
* 已设置:可以通过token访问
|
|
|
|
|
* 未设置:不可以通过token访问
|
|
|
|
|
* password设置情况
|
|
|
|
|
* 已设置:可以通过password访问
|
|
|
|
|
* 未设置:不可以通过password访问
|
|
|
|
|
* 注意:
|
|
|
|
|
* 1. 第一次访问需要存session
|
|
|
|
|
* 2. 有session优先使用session中的token或者password,再使用携带的token或者password
|
|
|
|
|
* 3. 私有项目如果token和password都没有设置,则除管理员和参与者的其他用户不可以访问
|
|
|
|
|
* 4. 使用token访问如果不通过,则提示输入密码
|
|
|
|
|
*/
|
|
|
|
|
if book.PrivatelyOwned == 1 {
|
|
|
|
|
if c.isUserLoggedIn() && c.Member.IsAdministrator() {
|
|
|
|
|
return bookResult
|
|
|
|
|
}
|
|
|
|
|
if isOk { // Project participant.
|
|
|
|
|
return bookResult
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Use session in preference.
|
|
|
|
|
if tokenOrPassword, ok := c.GetSession(identify).(string); ok {
|
|
|
|
|
if strings.EqualFold(book.PrivateToken, tokenOrPassword) || strings.EqualFold(book.BookPassword, tokenOrPassword) {
|
|
|
|
|
return bookResult
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Next: Session not exist or not correct.
|
|
|
|
|
if book.PrivateToken != "" && book.PrivateToken == token {
|
|
|
|
|
c.SetSession(identify, token)
|
|
|
|
|
return bookResult
|
|
|
|
|
} else if book.BookPassword != "" {
|
|
|
|
|
// Send a page for inputting password.
|
|
|
|
|
// For verification, see function DocumentController.CheckPassword
|
|
|
|
|
body, err := c.ExecuteViewPathTemplate("document/document_password.tpl",
|
|
|
|
|
map[string]string{"Identify": book.Identify, "Lang": c.Lang})
|
|
|
|
|
if err != nil {
|
|
|
|
|
logs.Error("显示密码页面失败 ->", err)
|
|
|
|
|
c.ShowErrorPage(500, i18n.Tr(c.Lang, "message.system_error"))
|
2018-11-14 15:57:55 +08:00
|
|
|
|
}
|
2022-07-05 11:59:23 +08:00
|
|
|
|
c.CustomAbort(200, body)
|
|
|
|
|
} else {
|
|
|
|
|
// No permission to access this book.
|
|
|
|
|
logs.Info("尝试访问文档但权限不足 ->", identify, token)
|
|
|
|
|
c.ShowErrorPage(403, i18n.Tr(c.Lang, "message.no_permission"))
|
2018-03-23 10:00:36 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return bookResult
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func promptUserToLogIn(c *DocumentController) {
|
2021-03-23 21:55:50 +08:00
|
|
|
|
logs.Info("Access " + c.Ctx.Request.URL.RequestURI() + " not permitted.")
|
|
|
|
|
logs.Info(" Access will be redirected to login page(SessionId: " + c.CruSession.SessionID(context.TODO()) + ").")
|
2018-03-23 10:00:36 +08:00
|
|
|
|
|
|
|
|
|
if c.IsAjax() {
|
2021-04-11 01:20:47 +08:00
|
|
|
|
c.JsonResult(6000, i18n.Tr(c.Lang, "message.need_relogin"))
|
2018-03-23 10:00:36 +08:00
|
|
|
|
} else {
|
2018-08-14 15:57:52 +08:00
|
|
|
|
c.Redirect(conf.URLFor("AccountController.Login")+"?url="+url.PathEscape(conf.BaseUrl+c.Ctx.Request.URL.RequestURI()), 302)
|
2018-03-23 10:00:36 +08:00
|
|
|
|
}
|
|
|
|
|
}
|