mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
2.8 KiB
144 lines
2.8 KiB
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/imdotdev/im.dev/server/internal/story"
|
|
"github.com/imdotdev/im.dev/server/internal/user"
|
|
"github.com/imdotdev/im.dev/server/pkg/common"
|
|
"github.com/imdotdev/im.dev/server/pkg/e"
|
|
)
|
|
|
|
func SubmitPost(c *gin.Context) {
|
|
res, err := story.SubmitPost(c)
|
|
if err != nil {
|
|
c.JSON(err.Status, common.RespError(err.Message))
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, common.RespSuccess(res))
|
|
}
|
|
|
|
func DeletePost(c *gin.Context) {
|
|
id := c.Param("id")
|
|
if id == "" {
|
|
c.JSON(http.StatusBadRequest, common.RespError(e.ParamInvalid))
|
|
return
|
|
}
|
|
|
|
user := user.CurrentUser(c)
|
|
creator, err := story.GetPostCreator(id)
|
|
if err != nil {
|
|
c.JSON(err.Status, common.RespError(err.Message))
|
|
return
|
|
}
|
|
|
|
if user.ID != creator {
|
|
c.JSON(http.StatusForbidden, common.RespError(e.NoPermission))
|
|
return
|
|
}
|
|
|
|
err = story.DeletePost(id)
|
|
if err != nil {
|
|
c.JSON(err.Status, common.RespError(err.Message))
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, common.RespSuccess(nil))
|
|
}
|
|
func GetPost(c *gin.Context) {
|
|
id := c.Param("id")
|
|
|
|
ar, err := story.GetPost(id, "")
|
|
if err != nil {
|
|
c.JSON(err.Status, common.RespError(err.Message))
|
|
return
|
|
}
|
|
|
|
user := user.CurrentUser(c)
|
|
if user == nil {
|
|
ar.Liked = false
|
|
} else {
|
|
ar.Liked = story.GetLiked(ar.ID, user.ID)
|
|
|
|
}
|
|
|
|
c.JSON(http.StatusOK, common.RespSuccess(ar))
|
|
}
|
|
|
|
func LikeStory(c *gin.Context) {
|
|
user := user.CurrentUser(c)
|
|
id := c.Param("id")
|
|
if id == "" {
|
|
c.JSON(http.StatusBadRequest, common.RespError(e.ParamInvalid))
|
|
return
|
|
}
|
|
|
|
err := story.Like(id, user.ID)
|
|
if err != nil {
|
|
c.JSON(err.Status, common.RespError(err.Message))
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, common.RespSuccess(nil))
|
|
}
|
|
|
|
func GetUserPosts(c *gin.Context) {
|
|
userID, _ := strconv.ParseInt(c.Param("userID"), 10, 64)
|
|
|
|
posts, err := story.UserPosts(userID)
|
|
if err != nil {
|
|
c.JSON(err.Status, common.RespError(err.Message))
|
|
return
|
|
}
|
|
|
|
user := user.CurrentUser(c)
|
|
if user != nil {
|
|
for _, post := range posts {
|
|
post.Liked = story.GetLiked(post.ID, user.ID)
|
|
}
|
|
}
|
|
|
|
c.JSON(http.StatusOK, common.RespSuccess(posts))
|
|
}
|
|
|
|
func GetTagPosts(c *gin.Context) {
|
|
tagID, _ := strconv.ParseInt(c.Param("id"), 10, 64)
|
|
|
|
posts, err := story.TagPosts(tagID)
|
|
if err != nil {
|
|
c.JSON(err.Status, common.RespError(err.Message))
|
|
return
|
|
}
|
|
|
|
user := user.CurrentUser(c)
|
|
if user != nil {
|
|
for _, post := range posts {
|
|
post.Liked = story.GetLiked(post.ID, user.ID)
|
|
}
|
|
}
|
|
|
|
c.JSON(http.StatusOK, common.RespSuccess(posts))
|
|
}
|
|
|
|
func GetHomePosts(c *gin.Context) {
|
|
filter := c.Param("filter")
|
|
|
|
posts, err := story.HomePosts(filter)
|
|
if err != nil {
|
|
c.JSON(err.Status, common.RespError(err.Message))
|
|
return
|
|
}
|
|
|
|
user := user.CurrentUser(c)
|
|
if user != nil {
|
|
for _, post := range posts {
|
|
post.Liked = story.GetLiked(post.ID, user.ID)
|
|
}
|
|
}
|
|
|
|
c.JSON(http.StatusOK, common.RespSuccess(posts))
|
|
}
|