-
Notifications
You must be signed in to change notification settings - Fork 0
/
handlers_users.go
58 lines (46 loc) · 1.3 KB
/
handlers_users.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
package main
import (
"encoding/json"
"fmt"
"net/http"
"time"
"github.com/ayushrakesh/go-rssagg/internal/auth"
"github.com/ayushrakesh/go-rssagg/internal/database"
"github.com/google/uuid"
)
func (apiCfg *apiConfig) handlerCreateUser(w http.ResponseWriter, r *http.Request) {
type parameters struct {
Name string `json:"name"`
}
params := parameters{}
decoder := json.NewDecoder(r.Body)
err := decoder.Decode(¶ms)
if err != nil {
respondWithError(w, 400, fmt.Sprintf("Error parsing JSON - %s\n", err))
return
}
user, er := apiCfg.DB.CreateUser(r.Context(), database.CreateUserParams{
ID: uuid.New(),
CreatedAt: time.Now().UTC(),
UpdatedAt: time.Now().UTC(),
Name: params.Name,
})
if er != nil {
respondWithError(w, 400, fmt.Sprintf("Couldn't create user %s\n", er))
return
}
respondWithJSON(w, 201, databaseUserToUser(user))
}
func (apiCfg *apiConfig) getUserByAPIKey(w http.ResponseWriter, r *http.Request) {
apiKey, err := auth.GetAPIKey(r.Header)
if err != nil {
respondWithError(w, 403, fmt.Sprintf("Authentication error- %v", err))
return
}
user, er := apiCfg.DB.GetUserByAPIKey(r.Context(), apiKey)
if er != nil {
respondWithError(w, 400, fmt.Sprintf("Couldn't found user- %v", er))
return
}
respondWithJSON(w, 200, databaseUserToUser(user))
}