-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathmain.go
55 lines (43 loc) · 1.13 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
package main
import (
"net/http"
"github.com/gin-gonic/gin"
)
type album struct {
ID string `json:"id"`
Title string `json:"title"`
Artist string `json:"artist"`
}
var albums = []album{
{ID: "1", Title: "asdasd", Artist: "asdasdasdas"},
{ID: "2", Title: "asdasd", Artist: "asdasdasdas",},
{ID: "3", Title: "asdasd", Artist: "asdasdasdaa",},
}
func main() {
router := gin.Default()
router.GET("/test", getAlbums)
router.GET("/test/:id", getAlbumByID)
router.POST("/post_test", postAlbums)
router.Run("0.0.0.0:666")
}
func getAlbums(c *gin.Context) {
c.IndentedJSON(http.StatusOK, albums)
}
func postAlbums(c *gin.Context) {
var newAlbum album
if err := c.BindJSON(&newAlbum); err != nil {
return
}
albums = append(albums, newAlbum)
c.IndentedJSON(http.StatusCreated, newAlbum)
}
func getAlbumByID(c *gin.Context) {
id := c.Param("id")
for _, a := range albums {
if a.ID == id {
c.IndentedJSON(http.StatusOK, a)
return
}
}
c.IndentedJSON(http.StatusNotFound, gin.H{"message": "album not found"})
}