| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013 | 
							- package controllers
 
- import (
 
- 	"context"
 
- 	"encoding/json"
 
- 	"errors"
 
- 	"fmt"
 
- 	"html/template"
 
- 	"os"
 
- 	"path/filepath"
 
- 	"regexp"
 
- 	"strconv"
 
- 	"strings"
 
- 	"time"
 
- 	"github.com/mindoc-org/mindoc/utils/sqltil"
 
- 	"net/http"
 
- 	"github.com/beego/beego/v2/client/orm"
 
- 	"github.com/beego/beego/v2/core/logs"
 
- 	"github.com/mindoc-org/mindoc/conf"
 
- 	"github.com/mindoc-org/mindoc/graphics"
 
- 	"github.com/mindoc-org/mindoc/models"
 
- 	"github.com/mindoc-org/mindoc/utils"
 
- 	"github.com/mindoc-org/mindoc/utils/pagination"
 
- 	"github.com/russross/blackfriday/v2"
 
- )
 
- type BookController struct {
 
- 	BaseController
 
- }
 
- func (c *BookController) Index() {
 
- 	c.Prepare()
 
- 	c.TplName = "book/index.tpl"
 
- 	pageIndex, _ := c.GetInt("page", 1)
 
- 	books, totalCount, err := models.NewBook().FindToPager(pageIndex, conf.PageSize, c.Member.MemberId)
 
- 	if err != nil {
 
- 		logs.Error("BookController.Index => ", err)
 
- 		c.Abort("500")
 
- 	}
 
- 	for i, book := range books {
 
- 		books[i].Description = utils.StripTags(string(blackfriday.Run([]byte(book.Description))))
 
- 		books[i].ModifyTime = book.ModifyTime.Local()
 
- 		books[i].CreateTime = book.CreateTime.Local()
 
- 	}
 
- 	if totalCount > 0 {
 
- 		pager := pagination.NewPagination(c.Ctx.Request, totalCount, conf.PageSize, c.BaseUrl())
 
- 		c.Data["PageHtml"] = pager.HtmlPages()
 
- 	} else {
 
- 		c.Data["PageHtml"] = ""
 
- 	}
 
- 	b, err := json.Marshal(books)
 
- 	if err != nil || len(books) <= 0 {
 
- 		c.Data["Result"] = template.JS("[]")
 
- 	} else {
 
- 		c.Data["Result"] = template.JS(string(b))
 
- 	}
 
- 	if itemsets, err := models.NewItemsets().First(1); err == nil {
 
- 		c.Data["Item"] = itemsets
 
- 	}
 
- }
 
- // Dashboard 项目概要 .
 
- func (c *BookController) Dashboard() {
 
- 	c.Prepare()
 
- 	c.TplName = "book/dashboard.tpl"
 
- 	key := c.Ctx.Input.Param(":key")
 
- 	if key == "" {
 
- 		c.Abort("404")
 
- 	}
 
- 	book, err := models.NewBookResult().FindByIdentify(key, c.Member.MemberId)
 
- 	if err != nil {
 
- 		if err == models.ErrPermissionDenied {
 
- 			c.Abort("403")
 
- 		}
 
- 		c.Abort("500")
 
- 		return
 
- 	}
 
- 	c.Data["Description"] = template.HTML(blackfriday.Run([]byte(book.Description)))
 
- 	c.Data["Model"] = *book
 
- }
 
- // Setting 项目设置 .
 
- func (c *BookController) Setting() {
 
- 	c.Prepare()
 
- 	c.TplName = "book/setting.tpl"
 
- 	key := c.Ctx.Input.Param(":key")
 
- 	if key == "" {
 
- 		c.Abort("404")
 
- 	}
 
- 	book, err := models.NewBookResult().FindByIdentify(key, c.Member.MemberId)
 
- 	if err != nil {
 
- 		if err == orm.ErrNoRows {
 
- 			c.Abort("404")
 
- 		}
 
- 		if err == models.ErrPermissionDenied {
 
- 			c.Abort("403")
 
- 		}
 
- 		c.Abort("500")
 
- 		return
 
- 	}
 
- 	//如果不是创始人也不是管理员则不能操作
 
- 	if book.RoleId != conf.BookFounder && book.RoleId != conf.BookAdmin {
 
- 		c.Abort("403")
 
- 	}
 
- 	if book.PrivateToken != "" {
 
- 		book.PrivateToken = conf.URLFor("DocumentController.Index", ":key", book.Identify, "token", book.PrivateToken)
 
- 	}
 
- 	c.Data["Model"] = book
 
- }
 
- //保存项目信息
 
- func (c *BookController) SaveBook() {
 
- 	bookResult, err := c.IsPermission()
 
- 	if err != nil {
 
- 		c.JsonResult(6001, err.Error())
 
- 	}
 
- 	book, err := models.NewBook().Find(bookResult.BookId)
 
- 	if err != nil {
 
- 		logs.Error("SaveBook => ", err)
 
- 		c.JsonResult(6002, err.Error())
 
- 	}
 
- 	bookName := strings.TrimSpace(c.GetString("book_name"))
 
- 	description := strings.TrimSpace(c.GetString("description", ""))
 
- 	commentStatus := c.GetString("comment_status")
 
- 	//tag := strings.TrimSpace(c.GetString("label"))
 
- 	editor := strings.TrimSpace(c.GetString("editor"))
 
- 	autoRelease := strings.TrimSpace(c.GetString("auto_release")) == "on"
 
- 	publisher := strings.TrimSpace(c.GetString("publisher"))
 
- 	historyCount, _ := c.GetInt("history_count", 0)
 
- 	isDownload := strings.TrimSpace(c.GetString("is_download")) == "on"
 
- 	enableShare := strings.TrimSpace(c.GetString("enable_share")) == "on"
 
- 	isUseFirstDocument := strings.TrimSpace(c.GetString("is_use_first_document")) == "on"
 
- 	autoSave := strings.TrimSpace(c.GetString("auto_save")) == "on"
 
- 	itemId, _ := c.GetInt("itemId")
 
- 	if strings.Count(description, "") > 500 {
 
- 		c.JsonResult(6004, "项目描述不能大于500字")
 
- 	}
 
- 	if commentStatus != "open" && commentStatus != "closed" && commentStatus != "group_only" && commentStatus != "registered_only" {
 
- 		commentStatus = "closed"
 
- 	}
 
- 	if !models.NewItemsets().Exist(itemId) {
 
- 		c.JsonResult(6006, "项目空间不存在")
 
- 	}
 
- 	if editor != "markdown" && editor != "html" {
 
- 		editor = "markdown"
 
- 	}
 
- 	book.BookName = bookName
 
- 	book.Description = description
 
- 	book.CommentStatus = commentStatus
 
- 	book.Publisher = publisher
 
- 	//book.Label = tag
 
- 	book.Editor = editor
 
- 	book.HistoryCount = historyCount
 
- 	book.IsDownload = 0
 
- 	book.BookPassword = strings.TrimSpace(c.GetString("bPassword"))
 
- 	book.ItemId = itemId
 
- 	if autoRelease {
 
- 		book.AutoRelease = 1
 
- 	} else {
 
- 		book.AutoRelease = 0
 
- 	}
 
- 	if isDownload {
 
- 		book.IsDownload = 0
 
- 	} else {
 
- 		book.IsDownload = 1
 
- 	}
 
- 	if enableShare {
 
- 		book.IsEnableShare = 0
 
- 	} else {
 
- 		book.IsEnableShare = 1
 
- 	}
 
- 	if isUseFirstDocument {
 
- 		book.IsUseFirstDocument = 1
 
- 	} else {
 
- 		book.IsUseFirstDocument = 0
 
- 	}
 
- 	if autoSave {
 
- 		book.AutoSave = 1
 
- 	} else {
 
- 		book.AutoSave = 0
 
- 	}
 
- 	if err := book.Update(); err != nil {
 
- 		c.JsonResult(6006, "保存失败")
 
- 	}
 
- 	bookResult.BookName = bookName
 
- 	bookResult.Description = description
 
- 	bookResult.CommentStatus = commentStatus
 
- 	logs.Info("用户 [", c.Member.Account, "] 修改了项目 ->", book)
 
- 	c.JsonResult(0, "ok", bookResult)
 
- }
 
- //设置项目私有状态.
 
- func (c *BookController) PrivatelyOwned() {
 
- 	status := c.GetString("status")
 
- 	if status != "open" && status != "close" {
 
- 		c.JsonResult(6003, "参数错误")
 
- 	}
 
- 	state := 0
 
- 	if status == "open" {
 
- 		state = 0
 
- 	} else {
 
- 		state = 1
 
- 	}
 
- 	bookResult, err := c.IsPermission()
 
- 	if err != nil {
 
- 		c.JsonResult(6001, err.Error())
 
- 		return
 
- 	}
 
- 	//只有创始人才能变更私有状态
 
- 	if bookResult.RoleId != conf.BookFounder {
 
- 		c.JsonResult(6002, "权限不足")
 
- 	}
 
- 	book, err := models.NewBook().Find(bookResult.BookId)
 
- 	if err != nil {
 
- 		c.JsonResult(6005, "项目不存在")
 
- 		return
 
- 	}
 
- 	book.PrivatelyOwned = state
 
- 	err = book.Update()
 
- 	if err != nil {
 
- 		logs.Error("PrivatelyOwned => ", err)
 
- 		c.JsonResult(6004, "保存失败")
 
- 	}
 
- 	logs.Info("用户 【", c.Member.Account, "]修改了项目权限 ->", state)
 
- 	c.JsonResult(0, "ok")
 
- }
 
- // Transfer 转让项目.
 
- func (c *BookController) Transfer() {
 
- 	c.Prepare()
 
- 	account := c.GetString("account")
 
- 	if account == "" {
 
- 		c.JsonResult(6004, "接受者账号不能为空")
 
- 	}
 
- 	member, err := models.NewMember().FindByAccount(account)
 
- 	if err != nil {
 
- 		logs.Error("FindByAccount => ", err)
 
- 		c.JsonResult(6005, "接受用户不存在")
 
- 	}
 
- 	if member.Status != 0 {
 
- 		c.JsonResult(6006, "接受用户已被禁用")
 
- 	}
 
- 	if member.MemberId == c.Member.MemberId {
 
- 		c.JsonResult(6007, "不能转让给自己")
 
- 	}
 
- 	bookResult, err := c.IsPermission()
 
- 	if err != nil {
 
- 		c.JsonResult(6001, err.Error())
 
- 		return
 
- 	}
 
- 	err = models.NewRelationship().Transfer(bookResult.BookId, c.Member.MemberId, member.MemberId)
 
- 	if err != nil {
 
- 		logs.Error("转让项目失败 -> ", err)
 
- 		c.JsonResult(6008, err.Error())
 
- 	}
 
- 	c.JsonResult(0, "ok")
 
- }
 
- //上传项目封面.
 
- func (c *BookController) UploadCover() {
 
- 	bookResult, err := c.IsPermission()
 
- 	if err != nil {
 
- 		c.JsonResult(6001, err.Error())
 
- 		return
 
- 	}
 
- 	book, err := models.NewBook().Find(bookResult.BookId)
 
- 	if err != nil {
 
- 		logs.Error("SaveBook => ", err)
 
- 		c.JsonResult(6002, err.Error())
 
- 	}
 
- 	file, moreFile, err := c.GetFile("image-file")
 
- 	if err != nil {
 
- 		logs.Error("获取上传文件失败 ->", err.Error())
 
- 		c.JsonResult(500, "读取文件异常")
 
- 		return
 
- 	}
 
- 	defer file.Close()
 
- 	ext := filepath.Ext(moreFile.Filename)
 
- 	if !strings.EqualFold(ext, ".png") && !strings.EqualFold(ext, ".jpg") && !strings.EqualFold(ext, ".gif") && !strings.EqualFold(ext, ".jpeg") {
 
- 		c.JsonResult(500, "不支持的图片格式")
 
- 	}
 
- 	x1, _ := strconv.ParseFloat(c.GetString("x"), 10)
 
- 	y1, _ := strconv.ParseFloat(c.GetString("y"), 10)
 
- 	w1, _ := strconv.ParseFloat(c.GetString("width"), 10)
 
- 	h1, _ := strconv.ParseFloat(c.GetString("height"), 10)
 
- 	x := int(x1)
 
- 	y := int(y1)
 
- 	width := int(w1)
 
- 	height := int(h1)
 
- 	fileName := "cover_" + strconv.FormatInt(time.Now().UnixNano(), 16)
 
- 	//附件路径按照项目组织
 
- 	filePath := filepath.Join("uploads", book.Identify, "images", fileName+ext)
 
- 	path := filepath.Dir(filePath)
 
- 	os.MkdirAll(path, os.ModePerm)
 
- 	err = c.SaveToFile("image-file", filePath)
 
- 	if err != nil {
 
- 		logs.Error("", err)
 
- 		c.JsonResult(500, "图片保存失败")
 
- 	}
 
- 	defer func(filePath string) {
 
- 		os.Remove(filePath)
 
- 	}(filePath)
 
- 	//剪切图片
 
- 	subImg, err := graphics.ImageCopyFromFile(filePath, x, y, width, height)
 
- 	if err != nil {
 
- 		logs.Error("graphics.ImageCopyFromFile => ", err)
 
- 		c.JsonResult(500, "图片剪切")
 
- 	}
 
- 	filePath = filepath.Join(conf.WorkingDirectory, "uploads", time.Now().Format("200601"), fileName+"_small"+ext)
 
- 	//生成缩略图并保存到磁盘
 
- 	err = graphics.ImageResizeSaveFile(subImg, 350, 460, filePath)
 
- 	if err != nil {
 
- 		logs.Error("ImageResizeSaveFile => ", err.Error())
 
- 		c.JsonResult(500, "保存图片失败")
 
- 	}
 
- 	url := "/" + strings.Replace(strings.TrimPrefix(filePath, conf.WorkingDirectory), "\\", "/", -1)
 
- 	if strings.HasPrefix(url, "//") {
 
- 		url = string(url[1:])
 
- 	}
 
- 	oldCover := book.Cover
 
- 	book.Cover = conf.URLForWithCdnImage(url)
 
- 	if err := book.Update(); err != nil {
 
- 		c.JsonResult(6001, "保存图片失败")
 
- 	}
 
- 	//如果原封面不是默认封面则删除
 
- 	if oldCover != conf.GetDefaultCover() {
 
- 		os.Remove("." + oldCover)
 
- 	}
 
- 	logs.Info("用户[", c.Member.Account, "]上传了项目封面 ->", book.BookName, book.BookId, book.Cover)
 
- 	c.JsonResult(0, "ok", url)
 
- }
 
- // Users 用户列表.
 
- func (c *BookController) Users() {
 
- 	c.Prepare()
 
- 	c.TplName = "book/users.tpl"
 
- 	key := c.Ctx.Input.Param(":key")
 
- 	pageIndex, _ := c.GetInt("page", 1)
 
- 	if key == "" {
 
- 		c.ShowErrorPage(404, "项目不存在或已删除")
 
- 	}
 
- 	book, err := models.NewBookResult().FindByIdentify(key, c.Member.MemberId)
 
- 	if err != nil {
 
- 		if err == models.ErrPermissionDenied {
 
- 			c.Abort("403")
 
- 		}
 
- 		c.Abort("500")
 
- 		return
 
- 	}
 
- 	//如果不是创始人也不是管理员则不能操作
 
- 	if book.RoleId != conf.BookFounder && book.RoleId != conf.BookAdmin {
 
- 		c.Abort("403")
 
- 	}
 
- 	c.Data["Model"] = *book
 
- 	members, totalCount, err := models.NewMemberRelationshipResult().FindForUsersByBookId(book.BookId, pageIndex, conf.PageSize)
 
- 	if totalCount > 0 {
 
- 		pager := pagination.NewPagination(c.Ctx.Request, totalCount, conf.PageSize, c.BaseUrl())
 
- 		c.Data["PageHtml"] = pager.HtmlPages()
 
- 	} else {
 
- 		c.Data["PageHtml"] = ""
 
- 	}
 
- 	b, err := json.Marshal(members)
 
- 	if err != nil {
 
- 		c.Data["Result"] = template.JS("[]")
 
- 	} else {
 
- 		c.Data["Result"] = template.JS(string(b))
 
- 	}
 
- }
 
- // Create 创建项目.
 
- func (c *BookController) Create() {
 
- 	if c.Ctx.Input.IsPost() {
 
- 		bookName := strings.TrimSpace(c.GetString("book_name", ""))
 
- 		identify := strings.TrimSpace(c.GetString("identify", ""))
 
- 		description := strings.TrimSpace(c.GetString("description", ""))
 
- 		privatelyOwned, _ := strconv.Atoi(c.GetString("privately_owned"))
 
- 		commentStatus := c.GetString("comment_status")
 
- 		itemId, _ := c.GetInt("itemId")
 
- 		if bookName == "" {
 
- 			c.JsonResult(6001, "项目名称不能为空")
 
- 		}
 
- 		if identify == "" {
 
- 			c.JsonResult(6002, "项目标识不能为空")
 
- 		}
 
- 		if ok, err := regexp.MatchString(`^[a-z]+[a-zA-Z0-9_\-]*$`, identify); !ok || err != nil {
 
- 			c.JsonResult(6003, "项目标识只能包含小写字母、数字,以及“-”和“_”符号,并且只能小写字母开头")
 
- 		}
 
- 		if strings.Count(identify, "") > 50 {
 
- 			c.JsonResult(6004, "文档标识不能超过50字")
 
- 		}
 
- 		if strings.Count(description, "") > 500 {
 
- 			c.JsonResult(6004, "项目描述不能大于500字")
 
- 		}
 
- 		if privatelyOwned != 0 && privatelyOwned != 1 {
 
- 			privatelyOwned = 1
 
- 		}
 
- 		if !models.NewItemsets().Exist(itemId) {
 
- 			c.JsonResult(6005, "项目空间不存在")
 
- 		}
 
- 		if commentStatus != "open" && commentStatus != "closed" && commentStatus != "group_only" && commentStatus != "registered_only" {
 
- 			commentStatus = "closed"
 
- 		}
 
- 		book := models.NewBook()
 
- 		book.Cover = conf.GetDefaultCover()
 
- 		//如果客户端上传了项目封面则直接保存
 
- 		if file, moreFile, err := c.GetFile("image-file"); err == nil {
 
- 			defer file.Close()
 
- 			ext := filepath.Ext(moreFile.Filename)
 
- 			//如果上传的是图片
 
- 			if strings.EqualFold(ext, ".png") || strings.EqualFold(ext, ".jpg") || strings.EqualFold(ext, ".gif") || strings.EqualFold(ext, ".jpeg") {
 
- 				fileName := "cover_" + strconv.FormatInt(time.Now().UnixNano(), 16)
 
- 				filePath := filepath.Join("uploads", time.Now().Format("200601"), fileName+ext)
 
- 				path := filepath.Dir(filePath)
 
- 				os.MkdirAll(path, os.ModePerm)
 
- 				if err := c.SaveToFile("image-file", filePath); err == nil {
 
- 					url := "/" + strings.Replace(strings.TrimPrefix(filePath, conf.WorkingDirectory), "\\", "/", -1)
 
- 					if strings.HasPrefix(url, "//") {
 
- 						url = string(url[1:])
 
- 					}
 
- 					book.Cover = url
 
- 				}
 
- 			}
 
- 		}
 
- 		if books, _ := book.FindByField("identify", identify, "book_id"); len(books) > 0 {
 
- 			c.JsonResult(6006, "项目标识已存在")
 
- 		}
 
- 		book.BookName = bookName
 
- 		book.Description = description
 
- 		book.CommentCount = 0
 
- 		book.PrivatelyOwned = privatelyOwned
 
- 		book.CommentStatus = commentStatus
 
- 		book.Identify = identify
 
- 		book.DocCount = 0
 
- 		book.MemberId = c.Member.MemberId
 
- 		book.CommentCount = 0
 
- 		book.Version = time.Now().Unix()
 
- 		book.IsEnableShare = 0
 
- 		book.IsUseFirstDocument = 1
 
- 		book.IsDownload = 1
 
- 		book.AutoRelease = 0
 
- 		book.ItemId = itemId
 
- 		book.Editor = "markdown"
 
- 		book.Theme = "default"
 
- 		if err := book.Insert(); err != nil {
 
- 			logs.Error("Insert => ", err)
 
- 			c.JsonResult(6005, "保存项目失败")
 
- 		}
 
- 		bookResult, err := models.NewBookResult().FindByIdentify(book.Identify, c.Member.MemberId)
 
- 		if err != nil {
 
- 			logs.Error(err)
 
- 		}
 
- 		logs.Info("用户[", c.Member.Account, "]创建了项目 ->", book)
 
- 		c.JsonResult(0, "ok", bookResult)
 
- 	}
 
- 	c.JsonResult(6001, "error")
 
- }
 
- //复制项目
 
- func (c *BookController) Copy() {
 
- 	if c.Ctx.Input.IsPost() {
 
- 		//检查是否有复制项目的权限
 
- 		if _, err := c.IsPermission(); err != nil {
 
- 			c.JsonResult(500, err.Error())
 
- 		}
 
- 		identify := strings.TrimSpace(c.GetString("identify", ""))
 
- 		if identify == "" {
 
- 			c.JsonResult(6001, "参数错误")
 
- 		}
 
- 		book := models.NewBook()
 
- 		err := book.Copy(identify)
 
- 		if err != nil {
 
- 			c.JsonResult(6002, "复制项目出错")
 
- 		} else {
 
- 			bookResult, err := models.NewBookResult().FindByIdentify(book.Identify, c.Member.MemberId)
 
- 			if err != nil {
 
- 				logs.Error("查询失败")
 
- 			}
 
- 			c.JsonResult(0, "ok", bookResult)
 
- 		}
 
- 	}
 
- }
 
- //导入zip压缩包
 
- func (c *BookController) Import() {
 
- 	file, moreFile, err := c.GetFile("import-file")
 
- 	if err == http.ErrMissingFile {
 
- 		c.JsonResult(6003, "没有发现需要上传的文件")
 
- 	}
 
- 	defer file.Close()
 
- 	bookName := strings.TrimSpace(c.GetString("book_name"))
 
- 	identify := strings.TrimSpace(c.GetString("identify"))
 
- 	description := strings.TrimSpace(c.GetString("description", ""))
 
- 	privatelyOwned, _ := strconv.Atoi(c.GetString("privately_owned"))
 
- 	itemId, _ := c.GetInt("itemId")
 
- 	if bookName == "" {
 
- 		c.JsonResult(6001, "项目名称不能为空")
 
- 	}
 
- 	if len([]rune(bookName)) > 500 {
 
- 		c.JsonResult(6002, "项目名称不能大于500字")
 
- 	}
 
- 	if identify == "" {
 
- 		c.JsonResult(6002, "项目标识不能为空")
 
- 	}
 
- 	if ok, err := regexp.MatchString(`^[a-z]+[a-zA-Z0-9_\-]*$`, identify); !ok || err != nil {
 
- 		c.JsonResult(6003, "项目标识只能包含小写字母、数字,以及“-”和“_”符号,并且只能小写字母开头")
 
- 	}
 
- 	if !models.NewItemsets().Exist(itemId) {
 
- 		c.JsonResult(6007, "项目空间不存在")
 
- 	}
 
- 	if strings.Count(identify, "") > 50 {
 
- 		c.JsonResult(6004, "文档标识不能超过50字")
 
- 	}
 
- 	ext := filepath.Ext(moreFile.Filename)
 
- 	if !strings.EqualFold(ext, ".zip") {
 
- 		c.JsonResult(6004, "不支持的文件类型")
 
- 	}
 
- 	if books, _ := models.NewBook().FindByField("identify", identify, "book_id"); len(books) > 0 {
 
- 		c.JsonResult(6006, "项目标识已存在")
 
- 	}
 
- 	tempPath := filepath.Join(os.TempDir(), c.CruSession.SessionID(context.TODO()))
 
- 	os.MkdirAll(tempPath, 0766)
 
- 	tempPath = filepath.Join(tempPath, moreFile.Filename)
 
- 	err = c.SaveToFile("import-file", tempPath)
 
- 	book := models.NewBook()
 
- 	book.MemberId = c.Member.MemberId
 
- 	book.Cover = conf.GetDefaultCover()
 
- 	book.BookName = bookName
 
- 	book.Description = description
 
- 	book.CommentCount = 0
 
- 	book.PrivatelyOwned = privatelyOwned
 
- 	book.CommentStatus = "closed"
 
- 	book.Identify = identify
 
- 	book.DocCount = 0
 
- 	book.MemberId = c.Member.MemberId
 
- 	book.CommentCount = 0
 
- 	book.Version = time.Now().Unix()
 
- 	book.ItemId = itemId
 
- 	book.Editor = "markdown"
 
- 	book.Theme = "default"
 
- 	go book.ImportBook(tempPath)
 
- 	logs.Info("用户[", c.Member.Account, "]导入了项目 ->", book)
 
- 	c.JsonResult(0, "项目正在后台转换中,请稍后查看")
 
- }
 
- // CreateToken 创建访问来令牌.
 
- //func (c *BookController) CreateToken() {
 
- //
 
- //	action := c.GetString("action")
 
- //
 
- //	bookResult, err := c.IsPermission()
 
- //
 
- //	if err != nil {
 
- //		if err == models.ErrPermissionDenied {
 
- //			c.JsonResult(403, "权限不足")
 
- //		}
 
- //		if err == orm.ErrNoRows {
 
- //			c.JsonResult(404, "项目不存在")
 
- //		}
 
- //		logs.Error("生成阅读令牌失败 =>", err)
 
- //		c.JsonResult(6002, err.Error())
 
- //	}
 
- //	book := models.NewBook()
 
- //
 
- //	if _, err := book.Find(bookResult.BookId); err != nil {
 
- //		c.JsonResult(6001, "项目不存在")
 
- //	}
 
- //	if action == "create" {
 
- //		if bookResult.PrivatelyOwned == 0 {
 
- //			c.JsonResult(6001, "公开项目不能创建阅读令牌")
 
- //		}
 
- //
 
- //		book.PrivateToken = string(utils.Krand(conf.GetTokenSize(), utils.KC_RAND_KIND_ALL))
 
- //		if err := book.Update(); err != nil {
 
- //			logs.Error("生成阅读令牌失败 => ", err)
 
- //			c.JsonResult(6003, "生成阅读令牌失败")
 
- //		}
 
- //		logs.Info("用户[", c.Member.Account, "]创建项目令牌 ->", book.PrivateToken)
 
- //		c.JsonResult(0, "ok", conf.URLFor("DocumentController.Index", ":key", book.Identify, "token", book.PrivateToken))
 
- //	} else {
 
- //		book.PrivateToken = ""
 
- //		if err := book.Update(); err != nil {
 
- //			logs.Error("CreateToken => ", err)
 
- //			c.JsonResult(6004, "删除令牌失败")
 
- //		}
 
- //		logs.Info("用户[", c.Member.Account, "]创建项目令牌 ->", book.PrivateToken)
 
- //		c.JsonResult(0, "ok", "")
 
- //	}
 
- //}
 
- // Delete 删除项目.
 
- func (c *BookController) Delete() {
 
- 	c.Prepare()
 
- 	bookResult, err := c.IsPermission()
 
- 	if err != nil {
 
- 		c.JsonResult(6001, err.Error())
 
- 		return
 
- 	}
 
- 	if bookResult.RoleId != conf.BookFounder {
 
- 		c.JsonResult(6002, "只有创始人才能删除项目")
 
- 	}
 
- 	err = models.NewBook().ThoroughDeleteBook(bookResult.BookId)
 
- 	if err == orm.ErrNoRows {
 
- 		c.JsonResult(6002, "项目不存在")
 
- 	}
 
- 	if err != nil {
 
- 		logs.Error("删除项目 => ", err)
 
- 		c.JsonResult(6003, "删除失败")
 
- 	}
 
- 	logs.Info("用户[", c.Member.Account, "]删除了项目 ->", bookResult)
 
- 	c.JsonResult(0, "ok")
 
- }
 
- //发布项目.
 
- func (c *BookController) Release() {
 
- 	c.Prepare()
 
- 	identify := c.GetString("identify")
 
- 	bookId := 0
 
- 	if c.Member.IsAdministrator() {
 
- 		book, err := models.NewBook().FindByFieldFirst("identify", identify)
 
- 		if err != nil {
 
- 			logs.Error("发布文档失败 ->", err)
 
- 			c.JsonResult(6003, "文档不存在")
 
- 			return
 
- 		}
 
- 		bookId = book.BookId
 
- 	} else {
 
- 		book, err := models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
 
- 		if err != nil {
 
- 			if err == models.ErrPermissionDenied {
 
- 				c.JsonResult(6001, "权限不足")
 
- 			}
 
- 			if err == orm.ErrNoRows {
 
- 				c.JsonResult(6002, "项目不存在")
 
- 			}
 
- 			logs.Error(err)
 
- 			c.JsonResult(6003, "未知错误")
 
- 		}
 
- 		if book.RoleId != conf.BookAdmin && book.RoleId != conf.BookFounder && book.RoleId != conf.BookEditor {
 
- 			c.JsonResult(6003, "权限不足")
 
- 		}
 
- 		bookId = book.BookId
 
- 	}
 
- 	go models.NewBook().ReleaseContent(bookId)
 
- 	c.JsonResult(0, "发布任务已推送到任务队列,稍后将在后台执行。")
 
- }
 
- //文档排序.
 
- func (c *BookController) SaveSort() {
 
- 	c.Prepare()
 
- 	identify := c.Ctx.Input.Param(":key")
 
- 	if identify == "" {
 
- 		c.Abort("404")
 
- 	}
 
- 	bookId := 0
 
- 	if c.Member.IsAdministrator() {
 
- 		book, err := models.NewBook().FindByFieldFirst("identify", identify)
 
- 		if err != nil || book == nil {
 
- 			c.JsonResult(6001, "项目不存在")
 
- 			return
 
- 		}
 
- 		bookId = book.BookId
 
- 	} else {
 
- 		bookResult, err := models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
 
- 		if err != nil {
 
- 			logs.Error("DocumentController.Edit => ", err)
 
- 			c.Abort("403")
 
- 		}
 
- 		if bookResult.RoleId == conf.BookObserver {
 
- 			c.JsonResult(6002, "项目不存在或权限不足")
 
- 		}
 
- 		bookId = bookResult.BookId
 
- 	}
 
- 	content := c.Ctx.Input.RequestBody
 
- 	var docs []map[string]interface{}
 
- 	err := json.Unmarshal(content, &docs)
 
- 	if err != nil {
 
- 		logs.Error(err)
 
- 		c.JsonResult(6003, "数据错误")
 
- 	}
 
- 	for _, item := range docs {
 
- 		if docId, ok := item["id"].(float64); ok {
 
- 			doc, err := models.NewDocument().Find(int(docId))
 
- 			if err != nil {
 
- 				logs.Error(err)
 
- 				continue
 
- 			}
 
- 			if doc.BookId != bookId {
 
- 				logs.Info("%s", "权限错误")
 
- 				continue
 
- 			}
 
- 			sort, ok := item["sort"].(float64)
 
- 			if !ok {
 
- 				logs.Info("排序数字转换失败 => ", item)
 
- 				continue
 
- 			}
 
- 			parentId, ok := item["parent"].(float64)
 
- 			if !ok {
 
- 				logs.Info("父分类转换失败 => ", item)
 
- 				continue
 
- 			}
 
- 			if parentId > 0 {
 
- 				if parent, err := models.NewDocument().Find(int(parentId)); err != nil || parent.BookId != bookId {
 
- 					continue
 
- 				}
 
- 			}
 
- 			doc.OrderSort = int(sort)
 
- 			doc.ParentId = int(parentId)
 
- 			if err := doc.InsertOrUpdate(); err != nil {
 
- 				fmt.Printf("%s", err.Error())
 
- 				logs.Error(err)
 
- 			}
 
- 		} else {
 
- 			fmt.Printf("文档ID转换失败 => %+v", item)
 
- 		}
 
- 	}
 
- 	c.JsonResult(0, "ok")
 
- }
 
- func (c *BookController) Team() {
 
- 	c.Prepare()
 
- 	c.TplName = "book/team.tpl"
 
- 	key := c.Ctx.Input.Param(":key")
 
- 	pageIndex, _ := c.GetInt("page", 1)
 
- 	if key == "" {
 
- 		c.ShowErrorPage(404, "项目不存在或已删除")
 
- 	}
 
- 	book, err := models.NewBookResult().FindByIdentify(key, c.Member.MemberId)
 
- 	if err != nil || book == nil {
 
- 		if err == models.ErrPermissionDenied {
 
- 			c.ShowErrorPage(403, "权限不足")
 
- 		}
 
- 		c.ShowErrorPage(500, "系统错误")
 
- 		return
 
- 	}
 
- 	//如果不是创始人也不是管理员则不能操作
 
- 	if book.RoleId != conf.BookFounder && book.RoleId != conf.BookAdmin {
 
- 		c.Abort("403")
 
- 	}
 
- 	c.Data["Model"] = book
 
- 	members, totalCount, err := models.NewTeamRelationship().FindByBookToPager(book.BookId, pageIndex, conf.PageSize)
 
- 	if totalCount > 0 {
 
- 		pager := pagination.NewPagination(c.Ctx.Request, totalCount, conf.PageSize, c.BaseUrl())
 
- 		c.Data["PageHtml"] = pager.HtmlPages()
 
- 	} else {
 
- 		c.Data["PageHtml"] = ""
 
- 	}
 
- 	b, err := json.Marshal(members)
 
- 	if err != nil {
 
- 		c.Data["Result"] = template.JS("[]")
 
- 	} else {
 
- 		c.Data["Result"] = template.JS(string(b))
 
- 	}
 
- }
 
- func (c *BookController) TeamAdd() {
 
- 	c.Prepare()
 
- 	teamId, _ := c.GetInt("teamId")
 
- 	book, err := c.IsPermission()
 
- 	if err != nil {
 
- 		c.JsonResult(500, err.Error())
 
- 		return
 
- 	}
 
- 	//如果不是创始人也不是管理员则不能操作
 
- 	if book.RoleId != conf.BookFounder && book.RoleId != conf.BookAdmin {
 
- 		c.Abort("403")
 
- 	}
 
- 	_, err = models.NewTeam().First(teamId, "team_id")
 
- 	if err != nil {
 
- 		if err == orm.ErrNoRows {
 
- 			c.JsonResult(500, "团队不存在")
 
- 		}
 
- 		c.JsonResult(5002, err.Error())
 
- 	}
 
- 	if _, err := models.NewTeamRelationship().FindByBookId(book.BookId, teamId); err == nil {
 
- 		c.JsonResult(5003, "团队已加入当前项目")
 
- 	}
 
- 	teamRel := models.NewTeamRelationship()
 
- 	teamRel.BookId = book.BookId
 
- 	teamRel.TeamId = teamId
 
- 	err = teamRel.Save()
 
- 	if err != nil {
 
- 		c.JsonResult(5004, "加入项目失败")
 
- 		return
 
- 	}
 
- 	teamRel.Include()
 
- 	c.JsonResult(0, "OK", teamRel)
 
- }
 
- //删除项目的团队.
 
- func (c *BookController) TeamDelete() {
 
- 	c.Prepare()
 
- 	teamId, _ := c.GetInt("teamId")
 
- 	if teamId <= 0 {
 
- 		c.JsonResult(5001, "参数错误")
 
- 	}
 
- 	book, err := c.IsPermission()
 
- 	if err != nil {
 
- 		c.JsonResult(5002, err.Error())
 
- 		return
 
- 	}
 
- 	//如果不是创始人也不是管理员则不能操作
 
- 	if book.RoleId != conf.BookFounder && book.RoleId != conf.BookAdmin {
 
- 		c.Abort("403")
 
- 	}
 
- 	err = models.NewTeamRelationship().DeleteByBookId(book.BookId, teamId)
 
- 	if err != nil {
 
- 		if err == orm.ErrNoRows {
 
- 			c.JsonResult(5003, "团队未加入项目")
 
- 		}
 
- 		c.JsonResult(5004, err.Error())
 
- 	}
 
- 	c.JsonResult(0, "OK")
 
- }
 
- //团队搜索.
 
- func (c *BookController) TeamSearch() {
 
- 	c.Prepare()
 
- 	keyword := strings.TrimSpace(c.GetString("q"))
 
- 	book, err := c.IsPermission()
 
- 	if err != nil {
 
- 		c.JsonResult(500, err.Error())
 
- 	}
 
- 	keyword = sqltil.EscapeLike(keyword)
 
- 	searchResult, err := models.NewTeamRelationship().FindNotJoinBookByBookIdentify(book.BookId, keyword, 10)
 
- 	if err != nil {
 
- 		c.JsonResult(500, err.Error(), searchResult)
 
- 	}
 
- 	c.JsonResult(0, "OK", searchResult)
 
- }
 
- //项目空间搜索.
 
- func (c *BookController) ItemsetsSearch() {
 
- 	c.Prepare()
 
- 	keyword := strings.TrimSpace(c.GetString("q"))
 
- 	keyword = sqltil.EscapeLike(keyword)
 
- 	searchResult, err := models.NewItemsets().FindItemsetsByName(keyword, 10)
 
- 	if err != nil {
 
- 		c.JsonResult(500, err.Error(), searchResult)
 
- 	}
 
- 	c.JsonResult(0, "OK", searchResult)
 
- }
 
- func (c *BookController) IsPermission() (*models.BookResult, error) {
 
- 	identify := c.GetString("identify")
 
- 	if identify == "" {
 
- 		return nil, errors.New("参数错误")
 
- 	}
 
- 	book, err := models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
 
- 	if err != nil {
 
- 		if err == models.ErrPermissionDenied {
 
- 			return book, errors.New("权限不足")
 
- 		}
 
- 		if err == orm.ErrNoRows {
 
- 			return book, errors.New("项目不存在")
 
- 		}
 
- 		return book, err
 
- 	}
 
- 	if book.RoleId != conf.BookAdmin && book.RoleId != conf.BookFounder {
 
- 		return book, errors.New("权限不足")
 
- 	}
 
- 	return book, nil
 
- }
 
 
  |