-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.go
More file actions
64 lines (48 loc) · 1.07 KB
/
utils.go
File metadata and controls
64 lines (48 loc) · 1.07 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
package main
import (
"encoding/json"
"net/http"
)
func WriteJSON(w http.ResponseWriter, status int, v any) {
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(status)
json.NewEncoder(w).Encode(v)
}
func GetTokenFromRequest(r *http.Request) string {
tokenAuth := r.Header.Get("Authorization")
tokenQuery := r.URL.Query().Get("token")
if tokenAuth != "" {
return tokenAuth
}
if tokenQuery != "" {
return tokenQuery
}
return ""
}
func GetUserIdFromRequest(r *http.Request) string {
claims, err := GetTokenData(GetTokenFromRequest(r))
if err != nil || claims["userID"] == nil {
return ""
}
return claims["userID"].(string)
}
type ErrorResponse struct {
Error string `json:"error"`
}
func ContainsSlice(s []string, e string) bool {
for _, a := range s {
if a == e {
return true
}
}
return false
}
func RemoveElement(slice []string, valueToRemove string) []string {
result := []string{}
for _, value := range slice {
if value != valueToRemove {
result = append(result, value)
}
}
return result
}