| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package v1
- import (
- "github.com/runningwater/gohub/app/models/topic"
- "github.com/runningwater/gohub/app/requests"
- "github.com/runningwater/gohub/pkg/auth"
- "github.com/runningwater/gohub/pkg/response"
- "github.com/gin-gonic/gin"
- )
- type TopicsController struct {
- BaseApiController
- }
- // func (ctrl *TopicsController) Index(c *gin.Context) {
- // topics := topic.All()
- // response.Data(c, topics)
- // }
- func (ctrl *TopicsController) Store(c *gin.Context) {
- request := requests.TopicRequest{}
- if ok := requests.Validate(c, &request, requests.TopicSave); !ok {
- return
- }
- topicModel := topic.Topic{
- Title: request.Title,
- Body: request.Body,
- CategoryID: request.CategoryID,
- UserID: auth.CurrentUID(c),
- }
- topicModel.Create()
- if topicModel.ID > 0 {
- response.Created(c, topicModel)
- } else {
- response.Abort500(c, "创建失败,请稍后尝试~")
- }
- }
- func (ctrl *TopicsController) Update(c *gin.Context) {
- topicModel := topic.Get(c.Param("id"))
- if topicModel.ID == 0 {
- response.Abort404(c)
- return
- }
- request := requests.TopicRequest{}
- if ok := requests.Validate(c, &request, requests.TopicSave); !ok {
- return
- }
- topicModel.Title = request.Title
- topicModel.Body = request.Body
- topicModel.CategoryID = request.CategoryID
- rowsAffected := topicModel.Save()
- if rowsAffected > 0 {
- response.Data(c, topicModel)
- } else {
- response.Abort500(c, "更新失败,请稍后尝试~")
- }
- }
- func (ctrl *TopicsController) Delete(c *gin.Context) {
- }
|