-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.go
95 lines (83 loc) · 2.23 KB
/
handler.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
package main
import (
"log"
"os"
"strings"
"time"
"github.com/aws/aws-lambda-go/events"
"github.com/aws/aws-lambda-go/lambda"
"jaf-unwrapped.com/users/clients"
"jaf-unwrapped.com/users/models"
)
var (
adminSpotifyId string
auth clients.IAuth
ddb clients.IDdb
)
func init() {
log.SetPrefix("LoadUsers:")
log.SetFlags(0)
adminSpotifyId = os.Getenv("AdminSpotifyId")
auth = clients.NewAuth()
ddb = clients.NewDdb()
}
func HandleLambdaEvent(request events.APIGatewayProxyRequest) (events.APIGatewayProxyResponse, error) {
log.Println(request)
log.Println("request.HTTPMethod:", request.HTTPMethod)
log.Println("request.Body:", request.Body)
if request.HTTPMethod == "OPTIONS" {
return models.NewBasicResponse(200, ""), nil
}
authHeader, ok := request.Headers["Authorization"]
if !ok || authHeader == "" {
msg := "Invalid request, missing Authorization header"
return models.NewBasicResponse(400, msg), nil
}
var token string
s := strings.Split(authHeader, " ")
if len(s) == 2 {
token = s[1]
}
if token == "" {
msg := "Invalid request, invalid Authorization header"
return models.NewBasicResponse(400, msg), nil
}
claims, err := auth.Decode(token)
if err != nil {
msg := "Invalid request, failed to decode bearer token"
return models.NewBasicResponse(400, msg), nil
}
if claims.Data.SpotifyId != adminSpotifyId {
msg := "Invalid request, Unauthorized user, not joe!"
return models.NewBasicResponse(400, msg), nil
}
// https://stackoverflow.com/questions/36051177/date-now-equivalent-in-go
now := time.Now().UTC().UnixNano() / 1e6
if claims.Data.Expires < now {
msg := "Invalid request, token expired"
return models.NewBasicResponse(400, msg), nil
}
users, err := ddb.GetUsers()
if err != nil {
msg := "Failed to get users from ddb " + err.Error()
return models.NewBasicResponse(400, msg), nil
}
nextClaims := models.JWTClaims{
Data: models.JWTData{
Expires: now * 1000,
SpotifyId: claims.Data.SpotifyId,
},
}
token, err = auth.Encode(nextClaims)
if err != nil {
msg := "Failed to encode token " + err.Error()
return models.NewBasicResponse(500, msg), nil
}
return models.NewUserResponse(
users,
token,
), nil
}
func main() {
lambda.Start(HandleLambdaEvent)
}