mindoc/controllers/book.go

243 lines
5.4 KiB
Go
Raw Normal View History

2017-04-20 18:19:32 +08:00
package controllers
2017-04-22 17:24:17 +08:00
import (
"strings"
"regexp"
"strconv"
"time"
"encoding/json"
"html/template"
"github.com/lifei6671/godoc/models"
"github.com/lifei6671/godoc/utils"
"github.com/astaxie/beego"
"github.com/astaxie/beego/orm"
)
2017-04-21 18:20:35 +08:00
2017-04-20 18:19:32 +08:00
type BookController struct {
BaseController
}
2017-04-22 17:24:17 +08:00
func (c *BookController) Index() {
c.Prepare()
c.TplName = "book/index.tpl"
pageIndex, _ := c.GetInt("page", 1)
books,totalCount,err := models.NewBook().FindToPager(pageIndex,10,c.Member.MemberId)
if err != nil {
c.Abort("500")
}
html := utils.GetPagerHtml(c.Ctx.Request.RequestURI,pageIndex,10,totalCount)
c.Data["PageHtml"] = html
b,err := json.Marshal(books)
if err != nil {
c.Data["Result"] = template.JS("[]")
}else{
c.Data["Result"] = template.JS(string(b))
}
2017-04-20 18:19:32 +08:00
}
// Dashboard 项目概要 .
2017-04-22 17:24:17 +08:00
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")
}
c.Data["Model"] = *book
2017-04-20 18:19:32 +08:00
}
// Setting 项目设置 .
2017-04-22 17:24:17 +08:00
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 == models.ErrPermissionDenied {
c.Abort("403")
}
c.Abort("500")
}
c.Data["Model"] = *book
}
//用户列表.
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.Abort("404")
}
book,err := models.NewBookResult().FindByIdentify(key,c.Member.MemberId)
if err != nil {
if err == models.ErrPermissionDenied {
c.Abort("403")
}
c.Abort("500")
}
c.Data["Model"] = *book
members,totalCount,err := models.NewMemberRelationshipResult().FindForUsersByBookId(book.BookId,pageIndex,15)
html := utils.GetPagerHtml(c.Ctx.Request.RequestURI,pageIndex,10,totalCount)
c.Data["PageHtml"] = html
b,err := json.Marshal(members)
if err != nil {
c.Data["Result"] = template.JS("[]")
}else{
c.Data["Result"] = template.JS(string(b))
}
2017-04-20 18:19:32 +08:00
}
2017-04-22 17:24:17 +08:00
func (c *BookController) AddMember() {
identify := c.GetString("identify")
account := c.GetString("account")
role_id,_ := c.GetInt("role_id",3)
if identify == "" || account == ""{
c.JsonResult(6001,"参数错误")
}
book ,err := models.NewBookResult().FindByIdentify("identify",c.Member.MemberId)
if err != nil {
if err == models.ErrPermissionDenied {
c.JsonResult(403,"权限不足")
}
if err == orm.ErrNoRows {
c.JsonResult(404,"项目不能存在")
}
c.JsonResult(6002,err.Error())
}
if book.RoleId != 0 && book.RoleId != 1 {
c.JsonResult(403,"权限不足")
}
member := models.NewMember()
if err := member.FindByAccount(account) ; err != nil {
c.JsonResult(404,"用户不存在")
}
if _,err := models.NewRelationship().FindForRoleId(book.BookId,member.MemberId);err == orm.ErrNoRows {
c.JsonResult(6003,"用户已存在该项目中")
}
relationship := models.NewRelationship()
relationship.BookId = book.BookId
relationship.MemberId = member.MemberId
relationship.RoleId = role_id
if err := relationship.Insert(); err == nil {
c.JsonResult(0,"ok",member)
}
c.JsonResult(500,err.Error())
2017-04-20 18:19:32 +08:00
}
2017-04-22 17:24:17 +08:00
2017-04-21 18:20:35 +08:00
func (c *BookController) Create() {
if c.Ctx.Input.IsPost() {
book_name := strings.TrimSpace(c.GetString("book_name",""))
identify := strings.TrimSpace(c.GetString("identify",""))
description := strings.TrimSpace(c.GetString("description",""))
2017-04-22 17:24:17 +08:00
privately_owned,_ := strconv.Atoi(c.GetString("privately_owned"))
2017-04-21 18:20:35 +08:00
comment_status := c.GetString("comment_status")
2017-04-21 18:24:31 +08:00
2017-04-22 17:24:17 +08:00
if book_name == "" {
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 privately_owned !=0 && privately_owned != 1 {
privately_owned = 1
}
if comment_status != "open" && comment_status != "closed" && comment_status != "group_only" && comment_status != "registered_only" {
comment_status = "closed"
}
book := models.NewBook()
if books,err := book.FindByField("identify",identify); err == nil || len(books) > 0 {
c.JsonResult(6006,"项目标识已存在")
}
book.BookName = book_name
book.Description = description
book.CommentCount = 0
book.PrivatelyOwned = privately_owned
book.CommentStatus = comment_status
book.Identify = identify
book.DocCount = 0
book.MemberId = c.Member.MemberId
book.CommentCount = 0
book.Version = time.Now().Unix()
book.Cover = beego.AppConfig.String("cover")
err := book.Insert()
if err != nil {
c.JsonResult(6005,err.Error())
}
c.JsonResult(0,"ok",book)
2017-04-21 18:20:35 +08:00
}
c.JsonResult(6001,"error")
2017-04-20 18:19:32 +08:00
}
// Edit 编辑项目.
func (p *BookController) Edit() {
p.TplName = "book/edit.tpl"
}
// Delete 删除项目.
func (p *BookController) Delete() {
p.StopRun()
}
// Transfer 转让项目.
func (p *BookController)Transfer() {
}