blog_backend_api/controller/blog.go

543 lines
9.8 KiB
Go
Raw Normal View History

2019-05-16 10:05:20 +00:00
package controller
import (
2019-05-17 09:45:50 +00:00
"background/db"
2019-05-16 10:05:20 +00:00
"background/logs"
"background/model"
2019-05-17 09:45:50 +00:00
"fmt"
2020-08-23 18:08:26 +00:00
"strconv"
2019-05-16 10:05:20 +00:00
"github.com/gin-gonic/gin"
2019-06-30 14:59:00 +00:00
"qiniupkg.com/x/log.v7"
2019-05-16 10:05:20 +00:00
)
2020-08-23 18:08:26 +00:00
func GetPageParaFromQuery(c *gin.Context) (int, int) {
2019-05-17 09:45:50 +00:00
limit := c.Query("limit")
offset := c.Query("offset")
2020-08-23 18:08:26 +00:00
iLmit, e := strconv.Atoi(limit)
if nil != e {
return 0, 0
2019-05-17 09:45:50 +00:00
}
2020-08-23 18:08:26 +00:00
iOffset, e := strconv.Atoi(offset)
if nil != e {
return 0, 0
2019-05-17 09:45:50 +00:00
}
2020-08-23 18:08:26 +00:00
return iLmit, iOffset
2019-05-17 09:45:50 +00:00
}
2020-04-28 04:29:17 +00:00
2020-08-23 18:08:26 +00:00
func GetArticles(c *gin.Context) {
2019-05-17 09:45:50 +00:00
type ReqArticles struct {
Name string `json:"name"`
2020-03-01 14:33:00 +00:00
Type int32 `json:"types"`
2019-05-17 09:45:50 +00:00
}
var req ReqArticles
2020-08-23 18:08:26 +00:00
rsp := RespBase{"ERR", -1, nil}
2019-05-17 09:45:50 +00:00
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, rsp)
2019-05-17 09:45:50 +00:00
}()
e := c.BindJSON(&req)
2020-08-23 18:08:26 +00:00
if nil != e {
2019-05-17 09:45:50 +00:00
logs.Error(e.Error())
return
}
article := []model.Doc{}
2020-08-23 18:08:26 +00:00
limit, offset := GetPageParaFromQuery(c)
2020-04-28 04:29:17 +00:00
public := c.Query("is_public")
2019-05-17 09:45:50 +00:00
var sql string
2020-08-23 18:08:26 +00:00
if req.Name != "" {
if req.Type == 110 {
2020-04-28 04:29:17 +00:00
is_public := 0
2020-08-23 18:08:26 +00:00
if public == "true" {
2020-04-28 04:29:17 +00:00
is_public = 0
2020-08-23 18:08:26 +00:00
} else {
2020-04-28 04:29:17 +00:00
is_public = 1
}
sql = "select * from doc where doc.title like '%%%s%%' and is_public = %d limit %d offset %d "
2020-08-23 18:08:26 +00:00
sql = fmt.Sprintf(sql, req.Name, is_public, limit, offset*limit)
} else {
2020-04-28 04:29:17 +00:00
is_public := 0
2020-06-01 11:40:31 +00:00
if public == "true" {
2020-04-28 04:29:17 +00:00
is_public = 0
2020-08-23 18:08:26 +00:00
} else {
2020-04-28 04:29:17 +00:00
is_public = 1
}
sql = fmt.Sprintf("select * from doc where doc.title like '%%%s%%' and doc.type = %d and is_public = %d limit %d offset %d ",
2020-08-23 18:08:26 +00:00
req.Name, req.Type, is_public, limit, offset*limit)
2020-03-01 14:33:00 +00:00
}
2020-08-23 18:08:26 +00:00
} else {
if req.Type == 110 {
2020-04-28 04:29:17 +00:00
is_public := 0
2020-06-01 11:40:31 +00:00
if public == "true" {
2020-04-28 04:29:17 +00:00
is_public = 1
2020-08-23 18:08:26 +00:00
} else {
2020-04-28 04:29:17 +00:00
is_public = 0
}
2020-08-23 18:08:26 +00:00
sql = fmt.Sprintf("SELECT doc.id,doc.author,LEFT(doc.content,50) as content,doc.title from doc where is_public = %d "+
"order by id desc limit %d offset %d", is_public, limit, offset)
} else {
2020-04-28 04:29:17 +00:00
is_public := 0
2020-06-01 11:40:31 +00:00
if public == "true" {
2020-04-28 04:29:17 +00:00
is_public = 1
2020-08-23 18:08:26 +00:00
} else {
is_public = 0
2020-04-28 04:29:17 +00:00
}
2020-08-23 18:08:26 +00:00
sql = fmt.Sprintf("SELECT doc.id,doc.author,LEFT(doc.content,50) as content,doc.title,doc.type from doc where doc.type = %d and is_public = %d "+
" order by id desc limit %d offset %d", req.Type, is_public, limit, offset)
2020-03-01 14:33:00 +00:00
}
2019-05-17 09:45:50 +00:00
}
2020-05-04 08:12:17 +00:00
log.Print(sql)
2020-08-23 18:08:26 +00:00
e = db.GetMysqlClient().Query2(sql, &article)
if nil != e {
logs.Error(e.Error(), sql)
2019-05-17 09:45:50 +00:00
return
}
2020-08-23 18:08:26 +00:00
for k, _ := range article {
article[k].Content += "..."
}
2019-05-17 09:45:50 +00:00
rsp.Data = article
2019-05-17 09:45:50 +00:00
rsp.Status = 0
rsp.Msg = "OK"
}
2019-05-16 10:05:20 +00:00
2020-08-23 18:08:26 +00:00
func GetArticleCount(c *gin.Context) {
resp := RespBase{Msg: "FAIL", Status: 211}
2019-09-04 16:32:39 +00:00
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, resp)
2019-09-04 16:32:39 +00:00
}()
query := fmt.Sprintf("select count(*) as cnt from doc")
type Cnt struct {
Cnt int64 `sql:"cnt" json:"cnt"`
}
2020-08-23 18:08:26 +00:00
cnt := []Cnt{}
e := db.GetMysqlClient().Query2(query, &cnt)
if nil != e {
2019-09-04 16:32:39 +00:00
log.Print(e.Error())
return
}
resp.Data = cnt[0]
resp.Status = 0
resp.Msg = "OK"
}
2020-08-23 18:08:26 +00:00
func GetArticle(c *gin.Context) {
resp := RespBase{Msg: "FAIL", Status: 211}
2019-06-30 14:59:00 +00:00
sid := c.Param("id")
var id int
var err error
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, resp)
2019-06-30 14:59:00 +00:00
}()
2020-08-23 18:08:26 +00:00
if sid == "" {
2019-06-30 14:59:00 +00:00
return
2020-08-23 18:08:26 +00:00
} else {
id, err = strconv.Atoi(sid)
if nil != err {
2019-06-30 14:59:00 +00:00
return
}
}
2020-08-23 18:08:26 +00:00
query := fmt.Sprintf("select * from doc where doc.id = '%d'", id)
2019-06-30 14:59:00 +00:00
docs := []model.Doc{}
2020-08-23 18:08:26 +00:00
e := db.GetMysqlClient().Query2(query, &docs)
if nil != e {
2019-06-30 14:59:00 +00:00
log.Print(e.Error())
return
}
2020-08-23 18:08:26 +00:00
if len(docs) > 0 {
2019-06-30 14:59:00 +00:00
resp.Data = docs[0]
resp.Status = 0
resp.Msg = "OK"
}
}
2020-08-23 18:08:26 +00:00
func UpdateArtilce(c *gin.Context) {
rsp := RespBase{Msg: "FAIL", Status: 210}
2019-08-01 14:52:57 +00:00
type ReqUpdateArticle struct {
2020-08-23 18:08:26 +00:00
Id int64 `json:"id"`
Title string `json:"title"`
2019-08-01 14:52:57 +00:00
Content string `json:"content"`
2020-08-23 18:08:26 +00:00
author string `json:"author"`
Type int64 `json:"type"`
IsPublic int `json:"is_public"`
2019-08-01 14:52:57 +00:00
}
var req ReqUpdateArticle
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, rsp)
2019-08-01 14:52:57 +00:00
}()
er := c.BindJSON(&req)
2020-08-23 18:08:26 +00:00
if nil != er {
2019-08-01 14:52:57 +00:00
logs.Error(er.Error())
return
}
2020-08-23 18:08:26 +00:00
if req.Title == "" {
2019-08-01 14:52:57 +00:00
rsp.Msg = "title required"
return
}
e := model.UpdateDoc(
model.Doc{
2020-08-23 18:08:26 +00:00
Type: req.Type,
Title: req.Title,
Content: req.Content,
Author: req.author,
ID: req.Id,
IsPublic: req.IsPublic,
2019-08-01 14:52:57 +00:00
},
)
2020-08-23 18:08:26 +00:00
if nil != e {
2019-08-01 14:52:57 +00:00
logs.Error(e.Error())
return
}
rsp.Msg = "OK"
rsp.Status = 0
2020-08-23 18:08:26 +00:00
2019-08-01 14:52:57 +00:00
}
2020-06-15 16:34:59 +00:00
func SearchArticle(c *gin.Context) {
2020-08-23 18:08:26 +00:00
rsp := RespBase{Msg: "FAIL", Status: 210}
2020-06-15 16:34:59 +00:00
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, rsp)
2020-06-15 16:34:59 +00:00
}()
}
2020-08-23 18:08:26 +00:00
func AddArticle(c *gin.Context) {
rsp := RespBase{Msg: "FAIL", Status: 210}
2019-05-16 10:05:20 +00:00
type ReqAddArticle struct {
2020-08-23 18:08:26 +00:00
Id int64 `json:"id"`
Title string `json:"title"`
2019-05-16 10:05:20 +00:00
Content string `json:"content"`
2020-08-23 18:08:26 +00:00
author string `json:"author"`
Type int64 `json:"type"`
Ispublic int `json:"is_public"`
2019-05-16 10:05:20 +00:00
}
var req ReqAddArticle
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, rsp)
2019-05-16 10:05:20 +00:00
}()
er := c.BindJSON(&req)
2020-08-23 18:08:26 +00:00
if nil != er {
2019-05-16 10:05:20 +00:00
logs.Error(er.Error())
return
}
2020-08-23 18:08:26 +00:00
if req.Title == "" {
2019-05-17 09:45:50 +00:00
rsp.Msg = "title required"
return
}
2019-05-16 10:05:20 +00:00
e := model.CreateDoc(
model.Doc{
2020-08-23 18:08:26 +00:00
Type: req.Type,
Title: req.Title,
Content: req.Content,
Author: req.author,
IsPublic: req.Ispublic,
2019-05-16 10:05:20 +00:00
},
2020-08-23 18:08:26 +00:00
)
if nil != e {
2019-05-16 10:05:20 +00:00
logs.Error(e.Error())
return
}
rsp.Msg = "OK"
rsp.Status = 0
2019-05-17 09:45:50 +00:00
}
2020-08-23 18:08:26 +00:00
func ArticlesType(c *gin.Context) {
rsp := RespBase{Msg: "FAIL", Status: 210}
2019-05-17 09:45:50 +00:00
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, rsp)
2019-05-17 09:45:50 +00:00
}()
rsp.Data = model.GetArticlesType()
rsp.Msg = "OK"
rsp.Status = 0
}
2020-08-23 18:08:26 +00:00
func DeleteArticleType(c *gin.Context) {
rsp := RespBase{Msg: "Fail", Status: 210}
2020-01-24 16:07:37 +00:00
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, rsp)
2020-01-24 16:07:37 +00:00
}()
2020-01-25 17:39:31 +00:00
2020-08-23 18:08:26 +00:00
sid := c.Query("id")
if sid == "" {
2020-01-25 17:39:31 +00:00
return
2020-01-24 16:07:37 +00:00
}
2020-08-23 18:08:26 +00:00
id, e := strconv.Atoi(sid)
if nil != e {
2020-01-25 17:39:31 +00:00
log.Print(e.Error())
return
}
rsp.Data = model.DeleteArticleType(int32(id))
rsp.Msg = "OK"
rsp.Status = 0
}
2020-08-23 18:08:26 +00:00
func AddArticleType(c *gin.Context) {
rsp := RespBase{Msg: "Fail", Status: 210}
2020-01-25 17:39:31 +00:00
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, rsp)
2020-01-25 17:39:31 +00:00
}()
2020-08-23 18:08:26 +00:00
typeName := c.Query("name")
2020-07-26 07:03:42 +00:00
group := c.Query("group")
2020-08-23 18:08:26 +00:00
groupid, e := strconv.Atoi(group)
if nil != e {
2020-07-26 07:03:42 +00:00
return
}
2020-01-26 11:11:48 +00:00
id := c.Query("id")
2020-08-23 18:08:26 +00:00
if id != "" {
if typeName == "" {
2020-01-26 11:11:48 +00:00
return
}
articleType := model.ArticleType{
2020-08-23 18:08:26 +00:00
Id: 0,
Name: typeName,
Group: int32(groupid),
2020-01-26 11:11:48 +00:00
}
rsp.Data = model.UpdateArticleType(articleType)
rsp.Msg = "OK"
rsp.Status = 0
2020-08-23 18:08:26 +00:00
} else {
if typeName == "" {
2020-01-26 11:11:48 +00:00
return
}
articleType := model.ArticleType{
2020-08-23 18:08:26 +00:00
Id: 0,
Name: typeName,
Group: int32(groupid),
2020-01-26 11:11:48 +00:00
}
rsp.Data = model.AddArticleType(articleType)
rsp.Msg = "OK"
rsp.Status = 0
2020-01-24 16:07:37 +00:00
}
}
2020-08-23 18:08:26 +00:00
func DeleteArticle(c *gin.Context) {
rsp := RespBase{Msg: "FAIL", Status: 210}
2019-09-06 07:53:04 +00:00
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, rsp)
2019-09-06 07:53:04 +00:00
}()
sid := c.Param("id")
2020-08-23 18:08:26 +00:00
id, err := strconv.Atoi(sid)
if nil != err {
2019-09-06 07:53:04 +00:00
rsp.Status = -234
2020-08-23 18:08:26 +00:00
c.JSON(200, rsp)
2019-09-06 07:53:04 +00:00
}
err = model.DeleteDoc(int64(id))
2020-08-23 18:08:26 +00:00
if nil != err {
2019-09-06 07:53:04 +00:00
rsp.Status = -234
2020-08-23 18:08:26 +00:00
c.JSON(200, rsp)
2019-09-06 07:53:04 +00:00
}
rsp.Data = id
rsp.Status = 0
rsp.Msg = "OK"
2019-09-06 16:31:01 +00:00
}
2020-03-21 03:17:24 +00:00
2020-08-23 18:08:26 +00:00
func ArticlesTypes(c *gin.Context) {
resp := RespBase{"unkown error", -231, nil}
2019-09-06 16:31:01 +00:00
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, resp)
2019-09-06 16:31:01 +00:00
}()
2020-09-26 04:30:23 +00:00
docTypes := []model.ArticleType{}
2019-09-06 16:31:01 +00:00
e := db.GetMysqlClient().Query2("select * from doc_type",
&docTypes)
2020-08-23 18:08:26 +00:00
if nil != e {
2019-09-06 16:31:01 +00:00
log.Print(e.Error())
return
}
resp.Data = docTypes
resp.Msg = "OK"
resp.Status = 0
2020-06-24 17:15:46 +00:00
}
2020-08-23 18:08:26 +00:00
func CreateMemo(c *gin.Context) {
resp := RespBase{"unkown error", -231, nil}
2020-06-24 17:15:46 +00:00
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, resp)
2020-06-24 17:15:46 +00:00
}()
var req model.Memo
e := c.BindJSON(&req)
2020-08-23 18:08:26 +00:00
if nil != e {
2020-06-26 10:20:36 +00:00
logs.Error(e.Error())
2020-06-24 17:15:46 +00:00
resp.Msg = "wrong input"
return
}
e = model.CreateMemo(req)
2020-08-23 18:08:26 +00:00
if nil != e {
2020-06-24 17:15:46 +00:00
logs.Error(e.Error())
return
}
resp.Data = nil
resp.Msg = "OK"
resp.Status = 0
}
2020-08-23 18:08:26 +00:00
func UpdateMemo(c *gin.Context) {
resp := RespBase{"unkown error", -231, nil}
2020-06-24 17:15:46 +00:00
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, resp)
2020-06-24 17:15:46 +00:00
}()
var req model.Memo
e := c.BindJSON(&req)
2020-08-23 18:08:26 +00:00
if nil != e {
2020-06-24 17:15:46 +00:00
resp.Msg = "wrong input"
return
}
e = model.UpdateMemo(req)
2020-08-23 18:08:26 +00:00
if nil != e {
2020-06-24 17:15:46 +00:00
logs.Error(e.Error())
return
}
resp.Data = nil
resp.Msg = "OK"
resp.Status = 0
}
2020-09-26 04:30:23 +00:00
func GetDocTypeGroup(c *gin.Context) {
type DocType struct {
Id int32 `json:"id"`
}
rsp := RespBase{"ERR", -1, nil}
defer func() {
c.JSON(200, rsp)
}()
var id DocType
e := c.BindJSON(&id)
if nil != e {
log.Print(e.Error)
return
}
group, e := model.GetTypeGroup(id.Id)
if nil != e {
log.Print(e.Error)
return
}
rsp.Data = group
rsp.Status = 0
rsp.Msg = "OK"
}
func GetDoGroupcType(c *gin.Context) {
type DocType struct {
Id int32 `json:"id"`
}
rsp := RespBase{"ERR", -1, nil}
defer func() {
c.JSON(200, rsp)
}()
var id DocType
e := c.BindJSON(&id)
if nil != e {
log.Print(e.Error)
return
}
group, e := model.GetGroupTypes(id.Id)
if nil != e {
log.Print(e.Error)
return
}
rsp.Data = group
rsp.Status = 0
rsp.Msg = "OK"
}
2020-07-26 07:03:42 +00:00
func GetDocGroup(c *gin.Context) {
2020-08-23 18:08:26 +00:00
rsp := RespBase{"ERR", -1, nil}
2020-07-26 07:03:42 +00:00
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, rsp)
2020-07-26 07:03:42 +00:00
}()
2020-08-23 18:08:26 +00:00
group, e := model.GetAllGroup()
if nil != e {
2020-07-26 07:03:42 +00:00
log.Print(e.Error())
return
}
rsp.Data = group
rsp.Status = 0
rsp.Msg = "OK"
}
2020-08-23 18:08:26 +00:00
func GetTemplates(c *gin.Context) {
rsp := RespBase{"ERR", -1, nil}
defer func() {
c.JSON(200, rsp)
}()
}
2020-06-24 17:15:46 +00:00
func GetMemos(c *gin.Context) {
2020-08-23 18:08:26 +00:00
rsp := RespBase{"ERR", -1, nil}
2020-06-24 17:15:46 +00:00
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, rsp)
2020-06-24 17:15:46 +00:00
}()
type ReqMemos struct {
2020-06-26 10:20:36 +00:00
Title string `json:"title"`
2020-06-24 17:15:46 +00:00
}
req := ReqMemos{}
e := c.BindJSON(&req)
2020-08-23 18:08:26 +00:00
if nil != e {
2020-06-24 17:15:46 +00:00
logs.Error(e.Error())
return
}
2020-08-23 18:08:26 +00:00
limit, offset := GetPageParaFromQuery(c)
if limit != 0 && offset != 0 {
dat, e := model.GetMemos(req.Title, 10, 0)
if nil != e {
2020-06-24 17:15:46 +00:00
return
}
rsp.Data = dat
rsp.Status = 0
rsp.Msg = "OK"
2020-08-23 18:08:26 +00:00
} else {
dat, e := model.GetMemos(req.Title, 10, 0)
if nil != e {
2020-06-24 17:15:46 +00:00
return
}
rsp.Data = dat
rsp.Status = 0
rsp.Msg = "OK"
}
}
2020-08-23 18:08:26 +00:00
func GetDocTemplate(c *gin.Context) {
2020-06-24 17:15:46 +00:00
2020-08-23 18:08:26 +00:00
}
2020-06-24 17:15:46 +00:00
func GetMemo(c *gin.Context) {
2020-08-23 18:08:26 +00:00
rsp := RespBase{"ERR", -1, nil}
2020-06-24 17:15:46 +00:00
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, rsp)
2020-06-24 17:15:46 +00:00
}()
id := c.Query("id")
dat, e := model.ReadMemo(int32(db.Atoi(id)))
2020-08-23 18:08:26 +00:00
if nil != e {
2020-06-24 17:15:46 +00:00
return
}
rsp.Msg = "OK"
rsp.Status = 0
rsp.Data = dat
}
func DeleteMemos(c *gin.Context) {
2020-08-23 18:08:26 +00:00
resp := RespBase{"unkown error", -231, nil}
2020-06-24 17:15:46 +00:00
defer func() {
2020-08-23 18:08:26 +00:00
c.JSON(200, resp)
2020-06-24 17:15:46 +00:00
}()
type DelReq struct {
Id int32 `json:"id"`
}
var req DelReq
e := c.BindJSON(&req)
2020-08-23 18:08:26 +00:00
if nil != e {
2020-06-24 17:15:46 +00:00
resp.Msg = "wrong input"
return
}
e = model.DeleteMemo(req.Id)
2020-08-23 18:08:26 +00:00
if nil != e {
2020-06-24 17:15:46 +00:00
logs.Error(e.Error())
return
}
resp.Data = nil
resp.Msg = "OK"
resp.Status = 0
2020-08-23 18:08:26 +00:00
}