mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 14:22:33 +03:00
create thread wip
This commit is contained in:
parent
32216118a7
commit
9f4082a832
@ -13,7 +13,7 @@ import (
|
|||||||
func GetThreads(c *gin.Context) {
|
func GetThreads(c *gin.Context) {
|
||||||
threads, err := Repositories.Posts.Get(10, 10)
|
threads, err := Repositories.Posts.Get(10, 10)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// TODO: наверное, тут 500 будет
|
// TODO: рендерить шаблон 500
|
||||||
log.Println("error:", err)
|
log.Println("error:", err)
|
||||||
c.JSON(http.StatusOK, gin.H{"error": true})
|
c.JSON(http.StatusOK, gin.H{"error": true})
|
||||||
return
|
return
|
||||||
@ -25,23 +25,47 @@ func GetThread(c *gin.Context) {
|
|||||||
threadIDString := c.Param("threadID")
|
threadIDString := c.Param("threadID")
|
||||||
threadID, err := strconv.Atoi(threadIDString)
|
threadID, err := strconv.Atoi(threadIDString)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// TODO: тут 400 будет
|
// TODO: рендерить шаблон 404
|
||||||
log.Println("error:", err)
|
log.Println("error:", err)
|
||||||
c.JSON(http.StatusOK, gin.H{"error": true})
|
c.JSON(http.StatusOK, gin.H{"error": true})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
thread, err := Repositories.Posts.GetThreadByPostID(threadID)
|
thread, err := Repositories.Posts.GetThreadByPostID(threadID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// TODO: наверное, тут 500 будет
|
// TODO: рендерить шаблон 500
|
||||||
log.Println("error:", err)
|
log.Println("error:", err)
|
||||||
c.JSON(http.StatusOK, gin.H{"error": true})
|
c.JSON(http.StatusOK, gin.H{"error": true})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
if thread == nil {
|
||||||
|
// TODO: рендерить шаблон 404
|
||||||
|
return
|
||||||
|
}
|
||||||
c.HTML(http.StatusOK, "thread.html", thread)
|
c.HTML(http.StatusOK, "thread.html", thread)
|
||||||
}
|
}
|
||||||
|
|
||||||
func CreateThread(c *gin.Context) {
|
func CreateThread(c *gin.Context) {
|
||||||
c.JSON(http.StatusOK, gin.H{"route": "create thread"})
|
form, err := c.MultipartForm()
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusBadRequest, gin.H{
|
||||||
|
"error": "Problem uploading file!",
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: dat shit crashes if no fields in request
|
||||||
|
// text := form.Value["text"][0]
|
||||||
|
// title := form.Value["title"][0]
|
||||||
|
// isSageString := form.Value["isSage"][0]
|
||||||
|
// isSage, err := strconv.ParseBool(isSageString)
|
||||||
|
// if err != nil {
|
||||||
|
// // TODO: validation error
|
||||||
|
// response := Dto.GetInternalServerErrorResponse()
|
||||||
|
// c.JSON(http.StatusInternalServerError, response)
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
|
||||||
|
c.JSON(http.StatusOK, gin.H{"route": form})
|
||||||
}
|
}
|
||||||
|
|
||||||
func UpdateThread(c *gin.Context) {
|
func UpdateThread(c *gin.Context) {
|
||||||
|
@ -165,5 +165,13 @@ func (r *PostsRepository) GetThreadByPostID(ID int) ([]Post, error) {
|
|||||||
|
|
||||||
return posts, nil
|
return posts, nil
|
||||||
}
|
}
|
||||||
// func (r *PostsRepository) GetByID() int {
|
|
||||||
|
// func (r *PostsRepository) IsThreadExists(ID int) ([]Post, error) {
|
||||||
|
// conn, err := Db.Pool.Acquire(context.TODO())
|
||||||
|
// if err != nil {
|
||||||
|
// return nil, err
|
||||||
|
// }
|
||||||
|
// defer conn.Release()
|
||||||
|
|
||||||
|
// sql
|
||||||
// }
|
// }
|
||||||
|
Loading…
Reference in New Issue
Block a user