mindoc/controllers/manager.go

514 lines
12 KiB
Go
Raw Normal View History

2017-04-19 18:19:27 +08:00
package controllers
2017-04-23 12:48:46 +08:00
import (
"encoding/json"
"html/template"
"regexp"
"strings"
2017-04-23 12:48:46 +08:00
"github.com/astaxie/beego"
2017-04-23 12:48:46 +08:00
"github.com/astaxie/beego/logs"
"github.com/astaxie/beego/orm"
"github.com/lifei6671/godoc/conf"
"github.com/lifei6671/godoc/models"
"github.com/lifei6671/godoc/utils"
2017-04-23 12:48:46 +08:00
)
2017-04-19 18:19:27 +08:00
type ManagerController struct {
BaseController
}
func (c *ManagerController) Prepare (){
c.BaseController.Prepare()
if !c.Member.IsAdministrator() {
c.Abort("403")
}
}
2017-04-25 20:05:59 +08:00
func (c *ManagerController) Index() {
c.TplName = "manager/index.tpl"
c.Data["Model"] = models.NewDashboard().Query()
2017-04-19 18:19:27 +08:00
}
2017-04-21 18:20:35 +08:00
2017-04-23 12:48:46 +08:00
// 用户列表.
func (c *ManagerController) Users() {
2017-04-23 12:48:46 +08:00
c.Prepare()
c.TplName = "manager/users.tpl"
pageIndex, _ := c.GetInt("page", 0)
2017-04-23 12:48:46 +08:00
members, totalCount, err := models.NewMember().FindToPager(pageIndex, 15)
2017-04-23 12:48:46 +08:00
if err != nil {
c.Data["ErrorMessage"] = err.Error()
return
}
if totalCount > 0 {
html := utils.GetPagerHtml(c.Ctx.Request.RequestURI, pageIndex, 10, int(totalCount))
c.Data["PageHtml"] = html
} else {
c.Data["PageHtml"] = ""
}
2017-04-23 12:48:46 +08:00
b, err := json.Marshal(members)
2017-04-23 12:48:46 +08:00
if err != nil {
c.Data["Result"] = template.JS("[]")
} else {
2017-04-23 12:48:46 +08:00
c.Data["Result"] = template.JS(string(b))
}
}
// 添加用户.
2017-04-23 12:48:46 +08:00
func (c *ManagerController) CreateMember() {
c.Prepare()
account := strings.TrimSpace(c.GetString("account"))
password1 := strings.TrimSpace(c.GetString("password1"))
password2 := strings.TrimSpace(c.GetString("password2"))
email := strings.TrimSpace(c.GetString("email"))
phone := strings.TrimSpace(c.GetString("phone"))
role, _ := c.GetInt("role", 1)
status, _ := c.GetInt("status", 0)
2017-04-23 12:48:46 +08:00
if ok, err := regexp.MatchString(conf.RegexpAccount, account); account == "" || !ok || err != nil {
c.JsonResult(6001, "账号只能由英文字母数字组成且在3-50个字符")
2017-04-23 12:48:46 +08:00
}
if l := strings.Count(password1, ""); password1 == "" || l > 50 || l < 6 {
c.JsonResult(6002, "密码必须在6-50个字符之间")
2017-04-23 12:48:46 +08:00
}
if password1 != password2 {
c.JsonResult(6003, "确认密码不正确")
2017-04-23 12:48:46 +08:00
}
if ok, err := regexp.MatchString(conf.RegexpEmail, email); !ok || err != nil || email == "" {
c.JsonResult(6004, "邮箱格式不正确")
2017-04-23 12:48:46 +08:00
}
if role != 0 && role != 1 && role != 2 {
2017-04-23 12:48:46 +08:00
role = 1
}
if status != 0 && status != 1 {
status = 0
}
member := models.NewMember()
if _, err := member.FindByAccount(account); err == nil && member.MemberId > 0 {
c.JsonResult(6005, "账号已存在")
2017-04-23 12:48:46 +08:00
}
member.Account = account
member.Password = password1
member.Role = role
member.Avatar = conf.GetDefaultAvatar()
member.CreateAt = c.Member.MemberId
member.Email = email
if phone != "" {
member.Phone = phone
}
if err := member.Add(); err != nil {
c.JsonResult(6006, err.Error())
2017-04-23 12:48:46 +08:00
}
c.JsonResult(0, "ok", member)
2017-04-23 12:48:46 +08:00
}
//更新用户状态.
func (c *ManagerController) UpdateMemberStatus() {
2017-04-23 12:48:46 +08:00
c.Prepare()
member_id, _ := c.GetInt("member_id", 0)
status, _ := c.GetInt("status", 0)
2017-04-23 12:48:46 +08:00
if member_id <= 0 {
c.JsonResult(6001, "参数错误")
2017-04-23 12:48:46 +08:00
}
if status != 0 && status != 1 {
status = 0
}
member := models.NewMember()
if _, err := member.Find(member_id); err != nil {
c.JsonResult(6002, "用户不存在")
2017-04-23 12:48:46 +08:00
}
if member.MemberId == c.Member.MemberId {
c.JsonResult(6004,"不能变更自己的状态")
}
if member.Role == conf.MemberSuperRole {
c.JsonResult(6005,"不能变更超级管理员的状态")
}
2017-04-23 12:48:46 +08:00
member.Status = status
if err := member.Update(); err != nil {
logs.Error("", err)
c.JsonResult(6003, "用户状态设置失败")
2017-04-23 12:48:46 +08:00
}
c.JsonResult(0, "ok", member)
2017-04-23 12:48:46 +08:00
}
//变更用户权限.
func (c *ManagerController) ChangeMemberRole() {
2017-04-25 20:05:59 +08:00
c.Prepare()
member_id, _ := c.GetInt("member_id", 0)
role, _ := c.GetInt("role", 0)
2017-04-25 20:05:59 +08:00
if member_id <= 0 {
c.JsonResult(6001, "参数错误")
2017-04-25 20:05:59 +08:00
}
if role != conf.MemberAdminRole && role != conf.MemberGeneralRole {
c.JsonResult(6001, "用户权限不正确")
2017-04-25 20:05:59 +08:00
}
member := models.NewMember()
if _, err := member.Find(member_id); err != nil {
c.JsonResult(6002, "用户不存在")
2017-04-25 20:05:59 +08:00
}
if member.MemberId == c.Member.MemberId {
c.JsonResult(6004,"不能变更自己的权限")
}
if member.Role == conf.MemberSuperRole {
c.JsonResult(6005,"不能变更超级管理员的权限")
}
2017-04-25 20:05:59 +08:00
member.Role = role
if err := member.Update(); err != nil {
logs.Error("", err)
c.JsonResult(6003, "用户权限设置失败")
2017-04-25 20:05:59 +08:00
}
member.ResolveRoleName()
c.JsonResult(0, "ok", member)
2017-04-25 20:05:59 +08:00
}
func (c *ManagerController) EditMember() {
c.Prepare()
c.TplName = "manager/edit_users.tpl"
2017-05-26 14:19:27 +08:00
member_id,_ := c.GetInt(":id",0)
if member_id <= 0 {
c.Abort("404")
}
member ,err := models.NewMember().Find(member_id)
if err != nil {
beego.Error(err)
c.Abort("404")
}
if c.Ctx.Input.IsPost() {
password1 := c.GetString("password1")
password2 := c.GetString("password2")
email := c.GetString("email")
phone := c.GetString("phone")
description := c.GetString("description")
member.Email = email
member.Phone = phone
member.Description = description
if password1 != "" && password2 != password1 {
c.JsonResult(6001,"确认密码不正确")
}
2017-05-26 14:19:27 +08:00
if password1 != "" && member.AuthMethod != conf.AuthMethodLDAP{
member.Password = password1
}
if err := member.Valid(password1 == "");err != nil {
c.JsonResult(6002,err.Error())
}
if password1 != "" {
password,err := utils.PasswordHash(password1)
if err != nil {
beego.Error(err)
c.JsonResult(6003,"对用户密码加密时出错")
}
member.Password = password
}
if err := member.Update();err != nil {
beego.Error(err)
c.JsonResult(6004,"保存失败")
}
c.JsonResult(0,"ok")
}
c.Data["Model"] = member
}
func (c *ManagerController) Books() {
2017-04-23 12:48:46 +08:00
c.Prepare()
c.TplName = "manager/books.tpl"
pageIndex, _ := c.GetInt("page", 1)
books, totalCount, err := models.NewBookResult().FindToPager(pageIndex, conf.PageSize)
if err != nil {
c.Abort("500")
}
if totalCount > 0 {
html := utils.GetPagerHtml(c.Ctx.Request.RequestURI, pageIndex, conf.PageSize, totalCount)
c.Data["PageHtml"] = html
} else {
c.Data["PageHtml"] = ""
}
c.Data["Lists"] = books
}
2017-04-25 20:05:59 +08:00
//编辑项目
func (c *ManagerController) EditBook() {
2017-05-26 14:19:27 +08:00
c.Prepare()
c.TplName = "manager/edit_book.tpl"
2017-05-26 14:19:27 +08:00
identify := c.GetString(":key")
if identify == "" {
c.Abort("404")
}
book, err := models.NewBook().FindByFieldFirst("identify", identify)
if err != nil {
c.Abort("500")
}
2017-04-25 20:05:59 +08:00
if c.Ctx.Input.IsPost() {
book_name := strings.TrimSpace(c.GetString("book_name"))
description := strings.TrimSpace(c.GetString("description", ""))
2017-04-25 20:05:59 +08:00
comment_status := c.GetString("comment_status")
tag := strings.TrimSpace(c.GetString("label"))
order_index, _ := c.GetInt("order_index", 0)
2017-04-25 20:05:59 +08:00
if strings.Count(description, "") > 500 {
c.JsonResult(6004, "项目描述不能大于500字")
2017-04-25 20:05:59 +08:00
}
if comment_status != "open" && comment_status != "closed" && comment_status != "group_only" && comment_status != "registered_only" {
comment_status = "closed"
}
if tag != "" {
tags := strings.Split(tag, ";")
2017-04-25 20:05:59 +08:00
if len(tags) > 10 {
c.JsonResult(6005, "最多允许添加10个标签")
2017-04-25 20:05:59 +08:00
}
}
book.BookName = book_name
book.Description = description
book.CommentStatus = comment_status
book.Label = tag
book.OrderIndex = order_index
2017-04-25 20:05:59 +08:00
if err := book.Update(); err != nil {
c.JsonResult(6006, "保存失败")
2017-04-25 20:05:59 +08:00
}
c.JsonResult(0, "ok")
2017-04-25 20:05:59 +08:00
}
if book.PrivateToken != "" {
book.PrivateToken = c.BaseUrl() + beego.URLFor("DocumentController.Index", ":key", book.Identify, "token", book.PrivateToken)
2017-04-25 20:05:59 +08:00
}
c.Data["Model"] = book
2017-04-23 12:48:46 +08:00
}
// 删除项目.
func (c *ManagerController) DeleteBook() {
2017-04-23 12:48:46 +08:00
c.Prepare()
book_id, _ := c.GetInt("book_id", 0)
if book_id <= 0 {
c.JsonResult(6001, "参数错误")
}
book := models.NewBook()
err := book.ThoroughDeleteBook(book_id)
if err == orm.ErrNoRows {
c.JsonResult(6002, "项目不存在")
}
if err != nil {
logs.Error("DeleteBook => ", err)
c.JsonResult(6003, "删除失败")
}
c.JsonResult(0, "ok")
2017-04-23 12:48:46 +08:00
}
2017-04-25 20:05:59 +08:00
// CreateToken 创建访问来令牌.
func (c *ManagerController) CreateToken() {
2017-05-26 14:19:27 +08:00
c.Prepare()
2017-04-25 20:05:59 +08:00
action := c.GetString("action")
identify := c.GetString("identify")
book, err := models.NewBook().FindByFieldFirst("identify", identify)
2017-04-25 20:05:59 +08:00
if err != nil {
c.JsonResult(6001, "项目不存在")
2017-04-25 20:05:59 +08:00
}
if action == "create" {
if book.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, "生成阅读令牌失败")
}
c.JsonResult(0, "ok", c.BaseUrl()+beego.URLFor("DocumentController.Index", ":key", book.Identify, "token", book.PrivateToken))
} else {
2017-04-25 20:05:59 +08:00
book.PrivateToken = ""
if err := book.Update(); err != nil {
logs.Error("CreateToken => ", err)
c.JsonResult(6004, "删除令牌失败")
2017-04-25 20:05:59 +08:00
}
c.JsonResult(0, "ok", "")
2017-04-25 20:05:59 +08:00
}
}
//项目设置.
2017-04-26 18:17:38 +08:00
func (c *ManagerController) Setting() {
c.Prepare()
c.TplName = "manager/setting.tpl"
options, err := models.NewOption().All()
2017-04-26 18:17:38 +08:00
if c.Ctx.Input.IsPost() {
for _, item := range options {
item.OptionValue = c.GetString(item.OptionName)
item.InsertOrUpdate()
}
c.JsonResult(0, "ok")
}
2017-04-26 18:17:38 +08:00
if err != nil {
c.Abort("500")
}
c.Data["SITE_TITLE"] = c.Option["SITE_NAME"]
for _, item := range options {
2017-04-26 18:17:38 +08:00
c.Data[item.OptionName] = item
}
}
// Transfer 转让项目.
func (c *ManagerController) 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 !c.Member.IsAdministrator() {
c.Abort("403")
}
identify := c.GetString("identify")
book, err := models.NewBook().FindByFieldFirst("identify", identify)
if err != nil {
c.JsonResult(6001, err.Error())
}
rel, err := models.NewRelationship().FindFounder(book.BookId)
if err != nil {
beego.Error("FindFounder => ", err)
c.JsonResult(6009, "查询项目创始人失败")
}
if member.MemberId == rel.MemberId {
c.JsonResult(6007, "不能转让给自己")
}
err = models.NewRelationship().Transfer(book.BookId, rel.MemberId, member.MemberId)
if err != nil {
logs.Error("Transfer => ", err)
c.JsonResult(6008, err.Error())
}
c.JsonResult(0, "ok")
2017-04-26 18:17:38 +08:00
}
func (c *ManagerController) Comments() {
2017-04-23 12:48:46 +08:00
c.Prepare()
2017-04-25 20:05:59 +08:00
c.TplName = "manager/comments.tpl"
if !c.Member.IsAdministrator() {
2017-04-23 12:48:46 +08:00
c.Abort("403")
}
2017-04-25 20:05:59 +08:00
2017-04-23 12:48:46 +08:00
}
//DeleteComment 标记评论为已删除
func (c *ManagerController) DeleteComment() {
2017-04-23 12:48:46 +08:00
c.Prepare()
2017-05-26 14:19:27 +08:00
comment_id, _ := c.GetInt("comment_id", 0)
if comment_id <= 0 {
c.JsonResult(6001, "参数错误")
}
comment := models.NewComment()
if _, err := comment.Find(comment_id); err != nil {
c.JsonResult(6002, "评论不存在")
}
comment.Approved = 3
if err := comment.Update("approved"); err != nil {
c.JsonResult(6003, "删除评论失败")
}
c.JsonResult(0, "ok", comment)
2017-04-23 12:48:46 +08:00
}
//设置项目私有状态.
func (c *ManagerController) PrivatelyOwned() {
2017-05-26 14:19:27 +08:00
c.Prepare()
status := c.GetString("status")
identify := c.GetString("identify")
2017-04-23 12:48:46 +08:00
if status != "open" && status != "close" {
c.JsonResult(6003, "参数错误")
}
state := 0
if status == "open" {
state = 0
} else {
state = 1
}
2017-04-23 12:48:46 +08:00
if !c.Member.IsAdministrator() {
c.Abort("403")
}
2017-04-23 12:48:46 +08:00
book, err := models.NewBook().FindByFieldFirst("identify", identify)
if err != nil {
c.JsonResult(6001, err.Error())
}
2017-04-23 12:48:46 +08:00
book.PrivatelyOwned = state
2017-04-23 12:48:46 +08:00
logs.Info("", state, status)
2017-04-23 12:48:46 +08:00
err = book.Update()
2017-04-23 12:48:46 +08:00
if err != nil {
logs.Error("PrivatelyOwned => ", err)
c.JsonResult(6004, "保存失败")
}
c.JsonResult(0, "ok")
}