-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandler.go
More file actions
149 lines (120 loc) · 2.7 KB
/
Copy pathhandler.go
File metadata and controls
149 lines (120 loc) · 2.7 KB
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
package main
import (
"net/http"
"strconv"
"github.com/gin-gonic/gin"
"github.com/naman-dave/technotest/db"
)
const (
APIInvalidIDError = "Invalid id"
APICommonError = "something went wrong!"
)
func HandleUsers(c *gin.Context) {
users := db.GetUsers()
c.JSON(http.StatusOK, gin.H{
"error": "",
"message": "fetched users successfully",
"data": users,
})
}
func HandleUserByID(c *gin.Context) {
idStr := c.Param("id")
id, err := strconv.Atoi(idStr)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{
"error": APIInvalidIDError,
"message": APIInvalidIDError,
"data": nil,
})
}
user, err := db.GetUser(id)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{
"error": err.Error(),
"message": APICommonError,
"data": nil,
})
}
c.JSON(http.StatusOK, gin.H{
"error": "",
"message": "fetched user successfully",
"data": user,
})
}
func HandleAddUser(c *gin.Context) {
user := db.User{}
if err := c.ShouldBindJSON(&user); err != nil {
c.JSON(http.StatusBadRequest, gin.H{
"error": err.Error(),
"message": "invalid request payload",
"data": nil,
})
}
err := db.AddUser(user.ID, user)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{
"error": err.Error(),
"message": APICommonError,
"data": nil,
})
}
c.JSON(http.StatusAccepted, gin.H{
"error": "",
"message": "added user successfully",
"data": user,
})
}
func HandleEditUsers(c *gin.Context) {
idStr := c.Param("id")
id, err := strconv.Atoi(idStr)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{
"error": APIInvalidIDError,
"message": APIInvalidIDError,
"data": nil,
})
}
user := db.User{}
if err := c.ShouldBindJSON(&user); err != nil {
c.JSON(http.StatusBadRequest, gin.H{
"error": err.Error(),
"message": "invalid request payload",
"data": nil,
})
}
if err := db.EditUser(id, user); err != nil {
c.JSON(http.StatusInternalServerError, gin.H{
"error": err.Error(),
"message": APICommonError,
"data": nil,
})
}
c.JSON(http.StatusAccepted, gin.H{
"error": "",
"message": "edited user successfully",
"data": user,
})
}
func HandleDeleteUsers(c *gin.Context) {
idStr := c.Param("id")
id, err := strconv.Atoi(idStr)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{
"error": APIInvalidIDError,
"message": APIInvalidIDError,
"data": nil,
})
}
if err := db.DeleteUser(id); err != nil {
c.JSON(http.StatusInternalServerError, gin.H{
"error": err.Error(),
"message": APICommonError,
"data": nil,
})
}
c.JSON(http.StatusAccepted, gin.H{
"error": "",
"message": "edited user successfully",
"data": nil,
})
}