book.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688
  1. package controllers
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "fmt"
  6. "html/template"
  7. "os"
  8. "path/filepath"
  9. "regexp"
  10. "strconv"
  11. "strings"
  12. "time"
  13. "github.com/astaxie/beego"
  14. "github.com/astaxie/beego/logs"
  15. "github.com/astaxie/beego/orm"
  16. "github.com/lifei6671/mindoc/conf"
  17. "github.com/lifei6671/mindoc/graphics"
  18. "github.com/lifei6671/mindoc/models"
  19. "github.com/lifei6671/mindoc/utils"
  20. "github.com/lifei6671/mindoc/utils/pagination"
  21. "net/http"
  22. "github.com/lifei6671/mindoc/converter"
  23. )
  24. type BookController struct {
  25. BaseController
  26. }
  27. func (c *BookController) Index() {
  28. c.Prepare()
  29. c.TplName = "book/index.tpl"
  30. pageIndex, _ := c.GetInt("page", 1)
  31. books, totalCount, err := models.NewBook().FindToPager(pageIndex, conf.PageSize, c.Member.MemberId)
  32. if err != nil {
  33. logs.Error("BookController.Index => ", err)
  34. c.Abort("500")
  35. }
  36. if totalCount > 0 {
  37. pager := pagination.NewPagination(c.Ctx.Request,totalCount,conf.PageSize)
  38. c.Data["PageHtml"] = pager.HtmlPages()
  39. } else {
  40. c.Data["PageHtml"] = ""
  41. }
  42. b, err := json.Marshal(books)
  43. if err != nil || len(books) <= 0 {
  44. c.Data["Result"] = template.JS("[]")
  45. } else {
  46. c.Data["Result"] = template.JS(string(b))
  47. }
  48. }
  49. // Dashboard 项目概要 .
  50. func (c *BookController) Dashboard() {
  51. c.Prepare()
  52. c.TplName = "book/dashboard.tpl"
  53. key := c.Ctx.Input.Param(":key")
  54. if key == "" {
  55. c.Abort("404")
  56. }
  57. book, err := models.NewBookResult().FindByIdentify(key, c.Member.MemberId)
  58. if err != nil {
  59. if err == models.ErrPermissionDenied {
  60. c.Abort("403")
  61. }
  62. beego.Error(err)
  63. c.Abort("500")
  64. }
  65. c.Data["Model"] = *book
  66. }
  67. // Setting 项目设置 .
  68. func (c *BookController) Setting() {
  69. c.Prepare()
  70. c.TplName = "book/setting.tpl"
  71. key := c.Ctx.Input.Param(":key")
  72. if key == "" {
  73. c.Abort("404")
  74. }
  75. book, err := models.NewBookResult().FindByIdentify(key, c.Member.MemberId)
  76. if err != nil {
  77. if err == orm.ErrNoRows {
  78. c.Abort("404")
  79. }
  80. if err == models.ErrPermissionDenied {
  81. c.Abort("403")
  82. }
  83. c.Abort("500")
  84. }
  85. //如果不是创始人也不是管理员则不能操作
  86. if book.RoleId != conf.BookFounder && book.RoleId != conf.BookAdmin {
  87. c.Abort("403")
  88. }
  89. if book.PrivateToken != "" {
  90. book.PrivateToken = c.BaseUrl() + beego.URLFor("DocumentController.Index", ":key", book.Identify, "token", book.PrivateToken)
  91. }
  92. c.Data["Model"] = book
  93. }
  94. //保存项目信息
  95. func (c *BookController) SaveBook() {
  96. bookResult, err := c.IsPermission()
  97. if err != nil {
  98. c.JsonResult(6001, err.Error())
  99. }
  100. book, err := models.NewBook().Find(bookResult.BookId)
  101. if err != nil {
  102. logs.Error("SaveBook => ", err)
  103. c.JsonResult(6002, err.Error())
  104. }
  105. bookName := strings.TrimSpace(c.GetString("book_name"))
  106. description := strings.TrimSpace(c.GetString("description", ""))
  107. commentStatus := c.GetString("comment_status")
  108. tag := strings.TrimSpace(c.GetString("label"))
  109. editor := strings.TrimSpace(c.GetString("editor"))
  110. autoRelease := strings.TrimSpace(c.GetString("auto_release")) == "on"
  111. publisher := strings.TrimSpace(c.GetString("publisher"))
  112. if strings.Count(description, "") > 500 {
  113. c.JsonResult(6004, "项目描述不能大于500字")
  114. }
  115. if commentStatus != "open" && commentStatus != "closed" && commentStatus != "group_only" && commentStatus != "registered_only" {
  116. commentStatus = "closed"
  117. }
  118. if tag != "" {
  119. tags := strings.Split(tag, ",")
  120. if len(tags) > 10 {
  121. c.JsonResult(6005, "最多允许添加10个标签")
  122. }
  123. }
  124. if editor != "markdown" && editor != "html" {
  125. editor = "markdown"
  126. }
  127. book.BookName = bookName
  128. book.Description = description
  129. book.CommentStatus = commentStatus
  130. book.Publisher = publisher
  131. book.Label = tag
  132. book.Editor = editor
  133. if autoRelease {
  134. book.AutoRelease = 1
  135. } else {
  136. book.AutoRelease = 0
  137. }
  138. if err := book.Update(); err != nil {
  139. c.JsonResult(6006, "保存失败")
  140. }
  141. bookResult.BookName = bookName
  142. bookResult.Description = description
  143. bookResult.CommentStatus = commentStatus
  144. bookResult.Label = tag
  145. c.JsonResult(0, "ok", bookResult)
  146. }
  147. //设置项目私有状态.
  148. func (c *BookController) PrivatelyOwned() {
  149. status := c.GetString("status")
  150. if status != "open" && status != "close" {
  151. c.JsonResult(6003, "参数错误")
  152. }
  153. state := 0
  154. if status == "open" {
  155. state = 0
  156. } else {
  157. state = 1
  158. }
  159. bookResult, err := c.IsPermission()
  160. if err != nil {
  161. c.JsonResult(6001, err.Error())
  162. }
  163. //只有创始人才能变更私有状态
  164. if bookResult.RoleId != conf.BookFounder {
  165. c.JsonResult(6002, "权限不足")
  166. }
  167. book, err := models.NewBook().Find(bookResult.BookId)
  168. if err != nil {
  169. c.JsonResult(6005, "项目不存在")
  170. }
  171. book.PrivatelyOwned = state
  172. err = book.Update()
  173. if err != nil {
  174. logs.Error("PrivatelyOwned => ", err)
  175. c.JsonResult(6004, "保存失败")
  176. }
  177. c.JsonResult(0, "ok")
  178. }
  179. // Transfer 转让项目.
  180. func (c *BookController) Transfer() {
  181. c.Prepare()
  182. account := c.GetString("account")
  183. if account == "" {
  184. c.JsonResult(6004, "接受者账号不能为空")
  185. }
  186. member, err := models.NewMember().FindByAccount(account)
  187. if err != nil {
  188. logs.Error("FindByAccount => ", err)
  189. c.JsonResult(6005, "接受用户不存在")
  190. }
  191. if member.Status != 0 {
  192. c.JsonResult(6006, "接受用户已被禁用")
  193. }
  194. if member.MemberId == c.Member.MemberId {
  195. c.JsonResult(6007, "不能转让给自己")
  196. }
  197. bookResult, err := c.IsPermission()
  198. if err != nil {
  199. c.JsonResult(6001, err.Error())
  200. }
  201. err = models.NewRelationship().Transfer(bookResult.BookId, c.Member.MemberId, member.MemberId)
  202. if err != nil {
  203. logs.Error("Transfer => ", err)
  204. c.JsonResult(6008, err.Error())
  205. }
  206. c.JsonResult(0, "ok")
  207. }
  208. //上传项目封面.
  209. func (c *BookController) UploadCover() {
  210. bookResult, err := c.IsPermission()
  211. if err != nil {
  212. c.JsonResult(6001, err.Error())
  213. }
  214. book, err := models.NewBook().Find(bookResult.BookId)
  215. if err != nil {
  216. logs.Error("SaveBook => ", err)
  217. c.JsonResult(6002, err.Error())
  218. }
  219. file, moreFile, err := c.GetFile("image-file")
  220. defer file.Close()
  221. if err != nil {
  222. logs.Error("", err.Error())
  223. c.JsonResult(500, "读取文件异常")
  224. }
  225. ext := filepath.Ext(moreFile.Filename)
  226. if !strings.EqualFold(ext, ".png") && !strings.EqualFold(ext, ".jpg") && !strings.EqualFold(ext, ".gif") && !strings.EqualFold(ext, ".jpeg") {
  227. c.JsonResult(500, "不支持的图片格式")
  228. }
  229. x1, _ := strconv.ParseFloat(c.GetString("x"), 10)
  230. y1, _ := strconv.ParseFloat(c.GetString("y"), 10)
  231. w1, _ := strconv.ParseFloat(c.GetString("width"), 10)
  232. h1, _ := strconv.ParseFloat(c.GetString("height"), 10)
  233. x := int(x1)
  234. y := int(y1)
  235. width := int(w1)
  236. height := int(h1)
  237. fileName := "cover_" + strconv.FormatInt(time.Now().UnixNano(), 16)
  238. filePath := filepath.Join("uploads", time.Now().Format("200601"), fileName+ext)
  239. path := filepath.Dir(filePath)
  240. os.MkdirAll(path, os.ModePerm)
  241. err = c.SaveToFile("image-file", filePath)
  242. if err != nil {
  243. logs.Error("", err)
  244. c.JsonResult(500, "图片保存失败")
  245. }
  246. defer func(filePath string) {
  247. os.Remove(filePath)
  248. }(filePath)
  249. //剪切图片
  250. subImg, err := graphics.ImageCopyFromFile(filePath, x, y, width, height)
  251. if err != nil {
  252. logs.Error("graphics.ImageCopyFromFile => ", err)
  253. c.JsonResult(500, "图片剪切")
  254. }
  255. filePath = filepath.Join(conf.WorkingDirectory, "uploads", time.Now().Format("200601"), fileName+"_small"+ext)
  256. //生成缩略图并保存到磁盘
  257. err = graphics.ImageResizeSaveFile(subImg, 175, 230, filePath)
  258. if err != nil {
  259. logs.Error("ImageResizeSaveFile => ", err.Error())
  260. c.JsonResult(500, "保存图片失败")
  261. }
  262. url := "/" + strings.Replace(strings.TrimPrefix(filePath, conf.WorkingDirectory), "\\", "/", -1)
  263. if strings.HasPrefix(url, "//") {
  264. url = string(url[1:])
  265. }
  266. old_cover := book.Cover
  267. book.Cover = url
  268. if err := book.Update(); err != nil {
  269. c.JsonResult(6001, "保存图片失败")
  270. }
  271. //如果原封面不是默认封面则删除
  272. if old_cover != conf.GetDefaultCover() {
  273. os.Remove("." + old_cover)
  274. }
  275. c.JsonResult(0, "ok", url)
  276. }
  277. // Users 用户列表.
  278. func (c *BookController) Users() {
  279. c.Prepare()
  280. c.TplName = "book/users.tpl"
  281. key := c.Ctx.Input.Param(":key")
  282. pageIndex, _ := c.GetInt("page", 1)
  283. if key == "" {
  284. c.Abort("404")
  285. }
  286. book, err := models.NewBookResult().FindByIdentify(key, c.Member.MemberId)
  287. if err != nil {
  288. if err == models.ErrPermissionDenied {
  289. c.Abort("403")
  290. }
  291. c.Abort("500")
  292. }
  293. c.Data["Model"] = *book
  294. members, totalCount, err := models.NewMemberRelationshipResult().FindForUsersByBookId(book.BookId, pageIndex, 15)
  295. if totalCount > 0 {
  296. pager := pagination.NewPagination(c.Ctx.Request,totalCount,conf.PageSize)
  297. c.Data["PageHtml"] = pager.HtmlPages()
  298. } else {
  299. c.Data["PageHtml"] = ""
  300. }
  301. b, err := json.Marshal(members)
  302. if err != nil {
  303. c.Data["Result"] = template.JS("[]")
  304. } else {
  305. c.Data["Result"] = template.JS(string(b))
  306. }
  307. }
  308. // Create 创建项目.
  309. func (c *BookController) Create() {
  310. if c.Ctx.Input.IsPost() {
  311. book_name := strings.TrimSpace(c.GetString("book_name", ""))
  312. identify := strings.TrimSpace(c.GetString("identify", ""))
  313. description := strings.TrimSpace(c.GetString("description", ""))
  314. privately_owned, _ := strconv.Atoi(c.GetString("privately_owned"))
  315. comment_status := c.GetString("comment_status")
  316. if book_name == "" {
  317. c.JsonResult(6001, "项目名称不能为空")
  318. }
  319. if identify == "" {
  320. c.JsonResult(6002, "项目标识不能为空")
  321. }
  322. if ok, err := regexp.MatchString(`^[a-z]+[a-zA-Z0-9_\-]*$`, identify); !ok || err != nil {
  323. c.JsonResult(6003, "项目标识只能包含小写字母、数字,以及“-”和“_”符号,并且只能小写字母开头")
  324. }
  325. if strings.Count(identify, "") > 50 {
  326. c.JsonResult(6004, "文档标识不能超过50字")
  327. }
  328. if strings.Count(description, "") > 500 {
  329. c.JsonResult(6004, "项目描述不能大于500字")
  330. }
  331. if privately_owned != 0 && privately_owned != 1 {
  332. privately_owned = 1
  333. }
  334. if comment_status != "open" && comment_status != "closed" && comment_status != "group_only" && comment_status != "registered_only" {
  335. comment_status = "closed"
  336. }
  337. book := models.NewBook()
  338. if books, _ := book.FindByField("identify", identify); len(books) > 0 {
  339. c.JsonResult(6006, "项目标识已存在")
  340. }
  341. book.BookName = book_name
  342. book.Description = description
  343. book.CommentCount = 0
  344. book.PrivatelyOwned = privately_owned
  345. book.CommentStatus = comment_status
  346. book.Identify = identify
  347. book.DocCount = 0
  348. book.MemberId = c.Member.MemberId
  349. book.CommentCount = 0
  350. book.Version = time.Now().Unix()
  351. book.Cover = conf.GetDefaultCover()
  352. book.Editor = "markdown"
  353. book.Theme = "default"
  354. err := book.Insert()
  355. if err != nil {
  356. logs.Error("Insert => ", err)
  357. c.JsonResult(6005, "保存项目失败")
  358. }
  359. bookResult, err := models.NewBookResult().FindByIdentify(book.Identify, c.Member.MemberId)
  360. if err != nil {
  361. beego.Error(err)
  362. }
  363. c.JsonResult(0, "ok", bookResult)
  364. }
  365. c.JsonResult(6001, "error")
  366. }
  367. func (c *BookController) Import() {
  368. file, moreFile, err := c.GetFile("import-file")
  369. if err == http.ErrMissingFile {
  370. c.JsonResult(6003, "没有发现需要上传的文件")
  371. }
  372. defer file.Close()
  373. beego.Info(moreFile.Filename)
  374. tempPath := filepath.Join(os.TempDir(),c.CruSession.SessionID())
  375. os.MkdirAll(tempPath,0766)
  376. tempPath = filepath.Join(tempPath,moreFile.Filename)
  377. err = c.SaveToFile("import-file", tempPath)
  378. converter.Resolve(tempPath)
  379. }
  380. // CreateToken 创建访问来令牌.
  381. func (c *BookController) CreateToken() {
  382. action := c.GetString("action")
  383. bookResult, err := c.IsPermission()
  384. if err != nil {
  385. if err == models.ErrPermissionDenied {
  386. c.JsonResult(403, "权限不足")
  387. }
  388. if err == orm.ErrNoRows {
  389. c.JsonResult(404, "项目不存在")
  390. }
  391. logs.Error("生成阅读令牌失败 =>", err)
  392. c.JsonResult(6002, err.Error())
  393. }
  394. book := models.NewBook()
  395. if _, err := book.Find(bookResult.BookId); err != nil {
  396. c.JsonResult(6001, "项目不存在")
  397. }
  398. if action == "create" {
  399. if bookResult.PrivatelyOwned == 0 {
  400. c.JsonResult(6001, "公开项目不能创建阅读令牌")
  401. }
  402. book.PrivateToken = string(utils.Krand(conf.GetTokenSize(), utils.KC_RAND_KIND_ALL))
  403. if err := book.Update(); err != nil {
  404. logs.Error("生成阅读令牌失败 => ", err)
  405. c.JsonResult(6003, "生成阅读令牌失败")
  406. }
  407. c.JsonResult(0, "ok", c.BaseUrl()+beego.URLFor("DocumentController.Index", ":key", book.Identify, "token", book.PrivateToken))
  408. } else {
  409. book.PrivateToken = ""
  410. if err := book.Update(); err != nil {
  411. logs.Error("CreateToken => ", err)
  412. c.JsonResult(6004, "删除令牌失败")
  413. }
  414. c.JsonResult(0, "ok", "")
  415. }
  416. }
  417. // Delete 删除项目.
  418. func (c *BookController) Delete() {
  419. c.Prepare()
  420. bookResult, err := c.IsPermission()
  421. if err != nil {
  422. c.JsonResult(6001, err.Error())
  423. }
  424. if bookResult.RoleId != conf.BookFounder {
  425. c.JsonResult(6002, "只有创始人才能删除项目")
  426. }
  427. err = models.NewBook().ThoroughDeleteBook(bookResult.BookId)
  428. if err == orm.ErrNoRows {
  429. c.JsonResult(6002, "项目不存在")
  430. }
  431. if err != nil {
  432. logs.Error("删除项目 => ", err)
  433. c.JsonResult(6003, "删除失败")
  434. }
  435. c.JsonResult(0, "ok")
  436. }
  437. //发布项目.
  438. func (c *BookController) Release() {
  439. c.Prepare()
  440. identify := c.GetString("identify")
  441. bookId := 0
  442. if c.Member.IsAdministrator() {
  443. book, err := models.NewBook().FindByFieldFirst("identify", identify)
  444. if err != nil {
  445. }
  446. bookId = book.BookId
  447. } else {
  448. book, err := models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
  449. if err != nil {
  450. if err == models.ErrPermissionDenied {
  451. c.JsonResult(6001, "权限不足")
  452. }
  453. if err == orm.ErrNoRows {
  454. c.JsonResult(6002, "项目不存在")
  455. }
  456. beego.Error(err)
  457. c.JsonResult(6003, "未知错误")
  458. }
  459. if book.RoleId != conf.BookAdmin && book.RoleId != conf.BookFounder && book.RoleId != conf.BookEditor {
  460. c.JsonResult(6003, "权限不足")
  461. }
  462. bookId = book.BookId
  463. }
  464. go func(identify string) {
  465. models.NewDocument().ReleaseContent(bookId)
  466. //当文档发布后,需要删除已缓存的转换项目
  467. outputPath := filepath.Join(beego.AppConfig.DefaultString("book_output_path", "cache"), strconv.Itoa(bookId))
  468. os.RemoveAll(outputPath)
  469. }(identify)
  470. c.JsonResult(0, "发布任务已推送到任务队列,稍后将在后台执行。")
  471. }
  472. //文档排序.
  473. func (c *BookController) SaveSort() {
  474. c.Prepare()
  475. identify := c.Ctx.Input.Param(":key")
  476. if identify == "" {
  477. c.Abort("404")
  478. }
  479. book_id := 0
  480. if c.Member.IsAdministrator() {
  481. book, err := models.NewBook().FindByFieldFirst("identify", identify)
  482. if err != nil {
  483. }
  484. book_id = book.BookId
  485. } else {
  486. bookResult, err := models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
  487. if err != nil {
  488. beego.Error("DocumentController.Edit => ", err)
  489. c.Abort("403")
  490. }
  491. if bookResult.RoleId == conf.BookObserver {
  492. c.JsonResult(6002, "项目不存在或权限不足")
  493. }
  494. book_id = bookResult.BookId
  495. }
  496. content := c.Ctx.Input.RequestBody
  497. var docs []map[string]interface{}
  498. err := json.Unmarshal(content, &docs)
  499. if err != nil {
  500. beego.Error(err)
  501. c.JsonResult(6003, "数据错误")
  502. }
  503. for _, item := range docs {
  504. if doc_id, ok := item["id"].(float64); ok {
  505. doc, err := models.NewDocument().Find(int(doc_id))
  506. if err != nil {
  507. beego.Error(err)
  508. continue
  509. }
  510. if doc.BookId != book_id {
  511. logs.Info("%s", "权限错误")
  512. continue
  513. }
  514. sort, ok := item["sort"].(float64)
  515. if !ok {
  516. beego.Info("排序数字转换失败 => ", item)
  517. continue
  518. }
  519. parent_id, ok := item["parent"].(float64)
  520. if !ok {
  521. beego.Info("父分类转换失败 => ", item)
  522. continue
  523. }
  524. if parent_id > 0 {
  525. if parent, err := models.NewDocument().Find(int(parent_id)); err != nil || parent.BookId != book_id {
  526. continue
  527. }
  528. }
  529. doc.OrderSort = int(sort)
  530. doc.ParentId = int(parent_id)
  531. if err := doc.InsertOrUpdate(); err != nil {
  532. fmt.Printf("%s", err.Error())
  533. beego.Error(err)
  534. }
  535. } else {
  536. fmt.Printf("文档ID转换失败 => %+v", item)
  537. }
  538. }
  539. c.JsonResult(0, "ok")
  540. }
  541. func (c *BookController) IsPermission() (*models.BookResult, error) {
  542. identify := c.GetString("identify")
  543. book, err := models.NewBookResult().FindByIdentify(identify, c.Member.MemberId)
  544. if err != nil {
  545. if err == models.ErrPermissionDenied {
  546. return book, errors.New("权限不足")
  547. }
  548. if err == orm.ErrNoRows {
  549. return book, errors.New("项目不存在")
  550. }
  551. return book, err
  552. }
  553. if book.RoleId != conf.BookAdmin && book.RoleId != conf.BookFounder {
  554. return book, errors.New("权限不足")
  555. }
  556. return book, nil
  557. }