-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.go
113 lines (96 loc) · 2.15 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
104
105
106
107
108
109
110
111
112
113
package main
import (
"net/http"
"strconv"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
)
type (
user struct {
ID int `json:"id"`
Name string `json:"name"`
}
)
var (
users = map[int]*user{}
seq = 1
)
//----------
// Handlers
//----------
// Add documentation to your API with swagger:route POST /users users createUser
//
// CreateUser is a handler for creating a new user in the service
// responses:
//
// 200: userResp
// 422: errorResp
func createUser(c echo.Context) error {
u := &user{
ID: seq,
}
if err := c.Bind(u); err != nil {
return err
}
users[u.ID] = u
seq++
return c.JSON(http.StatusCreated, u)
}
// Add documentation to your API with swagger:route GET /users/{id} users getUser
//
// GetUser is a handler for getting a user in the service
// responses:
//
// 200: userResp
// 404: errorResp
func getUser(c echo.Context) error {
id, _ := strconv.Atoi(c.Param("id"))
return c.JSON(http.StatusOK, users[id])
}
// Add documentation to your API with swagger:route PUT /users/{id} users updateUser
//
// UpdateUser is a handler for updating a user in the service
// responses:
//
// 200: userResp
// 404: errorResp
func updateUser(c echo.Context) error {
u := new(user)
if err := c.Bind(u); err != nil {
return err
}
id, _ := strconv.Atoi(c.Param("id"))
users[id].Name = u.Name
return c.JSON(http.StatusOK, users[id])
}
// Add documentation to your API with swagger:route DELETE /users/{id} users deleteUser
//
// DeleteUser is a handler for deleting a user in the service
// responses:
//
// 204: emptyResp
// 404: errorResp
func deleteUser(c echo.Context) error {
id, _ := strconv.Atoi(c.Param("id"))
delete(users, id)
return c.NoContent(http.StatusNoContent)
}
// ----------
// Main
// ----------
func main() {
e := echo.New()
// Middleware
e.Use(middleware.Logger())
e.Use(middleware.Recover())
// Routes
e.GET("/", func(c echo.Context) error {
return c.JSON(http.StatusOK, "Hello! Welcome to the API!!!")
})
e.POST("/users", createUser)
e.GET("/users/:id", getUser)
e.PUT("/users/:id", updateUser)
e.DELETE("/users/:id", deleteUser)
// Start server
e.Logger.Fatal(e.Start(":1323"))
}