-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
103 lines (80 loc) · 1.93 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package main
import (
"net/http"
"example/crud/db"
"github.com/gin-gonic/gin"
)
func main() {
db.Open()
sqlDB, _ := db.DB.DB()
defer sqlDB.Close()
router := gin.Default()
router.GET("/test", func(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"message": "hello world!"})
})
router.GET("/items", getItems)
router.GET("/item/:itemId", getItem)
router.POST("/item/", postItem)
router.PATCH("/item/:itemId", patchItem)
router.DELETE("/item/:itemId", deleteItem)
router.Run()
}
func getItems(c *gin.Context) {
var items []db.Item
err := db.GetItems(&items)
if err != nil {
c.AbortWithStatusJSON(http.StatusBadGateway, gin.H{"error": err})
return
}
c.JSON(http.StatusOK, items)
}
func getItem(c *gin.Context) {
itemId := c.Param("itemId")
var item db.Item
err := db.GetItem(&item, itemId)
if err != nil {
c.AbortWithStatusJSON(http.StatusBadGateway, gin.H{"error": err})
return
}
c.IndentedJSON(http.StatusAccepted, item)
}
func postItem(c *gin.Context) {
var item db.Item
if err := c.BindJSON(&item); err != nil {
return
}
db.CreateItem(&item)
c.IndentedJSON(http.StatusCreated, item)
}
type ItemUpdate struct {
Name string `json:"name"`
Stock int `json:"stock"`
}
func patchItem(c *gin.Context) {
itemId := c.Param("itemId")
var itemUpdate ItemUpdate
if err := c.BindJSON(&itemUpdate); err != nil {
return
}
var item db.Item
err := db.GetItem(&item, itemId)
if err != nil {
c.AbortWithStatusJSON(http.StatusBadGateway, gin.H{"error": err})
return
}
item.Name = itemUpdate.Name
item.Stock = itemUpdate.Stock
db.UpdateItem(&item)
c.IndentedJSON(http.StatusAccepted, item)
}
func deleteItem(c *gin.Context) {
itemId := c.Param("itemId")
var item db.Item
err := db.GetItem(&item, itemId)
if err != nil {
c.AbortWithStatusJSON(http.StatusBadGateway, gin.H{"error": err})
return
}
db.DeleteItem(&item)
c.IndentedJSON(http.StatusAccepted, gin.H{"message": "Item has been removed."})
}