242 lines
4.3 KiB
Go
242 lines
4.3 KiB
Go
package controller
|
|
|
|
import (
|
|
"background/db"
|
|
"background/logs"
|
|
"background/model"
|
|
"fmt"
|
|
"github.com/gin-gonic/gin"
|
|
"qiniupkg.com/x/log.v7"
|
|
"strconv"
|
|
)
|
|
|
|
func GetPageParaFromQuery(c *gin.Context) (int,int){
|
|
limit := c.Query("limit")
|
|
offset := c.Query("offset")
|
|
|
|
iLmit,e := strconv.Atoi(limit)
|
|
if nil != e{
|
|
return 0,0
|
|
}
|
|
iOffset,e := strconv.Atoi(offset)
|
|
if nil != e{
|
|
return 0,0
|
|
}
|
|
return iLmit,iOffset
|
|
}
|
|
func GetArticles(c *gin.Context) {
|
|
type ReqArticles struct {
|
|
Name string `json:"name"`
|
|
}
|
|
var req ReqArticles
|
|
rsp := RespBase{"ERR",-1,nil}
|
|
defer func() {
|
|
c.JSON(200,rsp)
|
|
}()
|
|
e := c.BindJSON(&req)
|
|
if nil != e{
|
|
logs.Error(e.Error())
|
|
return
|
|
}
|
|
article := []model.Doc{}
|
|
limit,offset := GetPageParaFromQuery(c)
|
|
var sql string
|
|
if req.Name != ""{
|
|
sql = fmt.Sprintf("select * from doc where doc.name like '%%%s%%' limit %d offset %d",req.Name,limit,offset*limit)
|
|
}else{
|
|
sql = fmt.Sprintf("select * from doc limit %d offset %d",limit,offset)
|
|
}
|
|
e = db.GetMysqlClient().Query2(sql,&article)
|
|
if nil != e{
|
|
logs.Error(e.Error())
|
|
return
|
|
}
|
|
rsp.Data = article
|
|
rsp.Status = 0
|
|
rsp.Msg = "OK"
|
|
}
|
|
|
|
func GetArticleCount(c *gin.Context) {
|
|
resp := RespBase{Msg:"FAIL",Status: 211}
|
|
|
|
defer func() {
|
|
c.JSON(200,resp)
|
|
}()
|
|
|
|
query := fmt.Sprintf("select count(*) as cnt from doc")
|
|
type Cnt struct {
|
|
Cnt int64 `sql:"cnt" json:"cnt"`
|
|
}
|
|
cnt := []Cnt{};
|
|
|
|
e := db.GetMysqlClient().Query2(query,&cnt)
|
|
if nil != e{
|
|
log.Print(e.Error())
|
|
return
|
|
}
|
|
resp.Data = cnt[0]
|
|
resp.Status = 0
|
|
resp.Msg = "OK"
|
|
}
|
|
|
|
func GetArticle(c *gin.Context) {
|
|
resp := RespBase{Msg:"FAIL",Status: 211}
|
|
sid := c.Param("id")
|
|
var id int
|
|
var err error
|
|
|
|
defer func() {
|
|
c.JSON(200,resp)
|
|
}()
|
|
|
|
if sid == ""{
|
|
return
|
|
}else{
|
|
id,err = strconv.Atoi(sid)
|
|
if nil != err{
|
|
return
|
|
}
|
|
}
|
|
query := fmt.Sprintf("select * from doc where doc.id = '%d'",id)
|
|
docs := []model.Doc{}
|
|
e := db.GetMysqlClient().Query2(query,&docs)
|
|
if nil != e{
|
|
log.Print(e.Error())
|
|
return
|
|
}
|
|
if len(docs) > 0{
|
|
resp.Data = docs[0]
|
|
resp.Status = 0
|
|
resp.Msg = "OK"
|
|
}
|
|
|
|
}
|
|
|
|
func UpdateArtilce(c *gin.Context) {
|
|
rsp := RespBase{Msg:"FAIL", Status:210,}
|
|
type ReqUpdateArticle struct {
|
|
Id int64 `json:"id"`
|
|
Title string `json:"title"`
|
|
Content string `json:"content"`
|
|
author string `json:"author"`
|
|
Type int64 `json:"type"`
|
|
}
|
|
var req ReqUpdateArticle
|
|
defer func() {
|
|
c.JSON(200,rsp)
|
|
}()
|
|
er := c.BindJSON(&req)
|
|
if nil != er{
|
|
logs.Error(er.Error())
|
|
return
|
|
}
|
|
if req.Title == ""{
|
|
rsp.Msg = "title required"
|
|
return
|
|
}
|
|
e := model.UpdateDoc(
|
|
model.Doc{
|
|
Type:req.Type,
|
|
Title:req.Title,
|
|
Content:req.Content,
|
|
Author:req.author,
|
|
ID:req.Id,
|
|
},
|
|
)
|
|
if nil != e{
|
|
logs.Error(e.Error())
|
|
return
|
|
}
|
|
rsp.Msg = "OK"
|
|
rsp.Status = 0
|
|
|
|
}
|
|
func AddArticle(c *gin.Context) {
|
|
rsp := RespBase{Msg:"FAIL", Status:210,}
|
|
type ReqAddArticle struct {
|
|
Id int64 `json:"id"`
|
|
Title string `json:"title"`
|
|
Content string `json:"content"`
|
|
author string `json:"author"`
|
|
Type int64 `json:"type"`
|
|
}
|
|
var req ReqAddArticle
|
|
defer func() {
|
|
c.JSON(200,rsp)
|
|
}()
|
|
er := c.BindJSON(&req)
|
|
if nil != er{
|
|
logs.Error(er.Error())
|
|
return
|
|
}
|
|
if req.Title == ""{
|
|
rsp.Msg = "title required"
|
|
return
|
|
}
|
|
e := model.CreateDoc(
|
|
model.Doc{
|
|
Type:req.Type,
|
|
Title:req.Title,
|
|
Content:req.Content,
|
|
Author:req.author,
|
|
},
|
|
)
|
|
if nil != e{
|
|
logs.Error(e.Error())
|
|
return
|
|
}
|
|
rsp.Msg = "OK"
|
|
rsp.Status = 0
|
|
}
|
|
|
|
|
|
func ArticlesType(c *gin.Context) {
|
|
rsp := RespBase{Msg:"FAIL", Status:210,}
|
|
defer func() {
|
|
c.JSON(200,rsp)
|
|
}()
|
|
rsp.Data = model.GetArticlesType()
|
|
rsp.Msg = "OK"
|
|
rsp.Status = 0
|
|
}
|
|
func DeleteArticle(c *gin.Context) {
|
|
|
|
rsp := RespBase{Msg:"FAIL", Status:210,}
|
|
defer func() {
|
|
c.JSON(200,rsp)
|
|
}()
|
|
sid := c.Param("id")
|
|
id,err := strconv.Atoi(sid)
|
|
if nil != err{
|
|
rsp.Status = -234
|
|
c.JSON(200,rsp)
|
|
}
|
|
err = model.DeleteDoc(int64(id))
|
|
if nil != err{
|
|
rsp.Status = -234
|
|
c.JSON(200,rsp)
|
|
}
|
|
rsp.Data = id
|
|
rsp.Status = 0
|
|
rsp.Msg = "OK"
|
|
}
|
|
func ArticlesTypes(c *gin.Context) {
|
|
resp := RespBase{"unkown error",-231,nil}
|
|
defer func() {
|
|
c.JSON(200,resp)
|
|
}()
|
|
type DocType struct {
|
|
Id int64 `sql:"id"`
|
|
TypeName string `sql:"type_name"`
|
|
}
|
|
docTypes := []DocType{}
|
|
e := db.GetMysqlClient().Query2("select * from doc_type",
|
|
&docTypes)
|
|
if nil != e{
|
|
log.Print(e.Error())
|
|
return
|
|
}
|
|
resp.Data = docTypes
|
|
resp.Msg = "OK"
|
|
resp.Status = 0
|
|
} |