|
@@ -1,7 +1,29 @@
|
1
|
1
|
package login
|
2
|
2
|
|
3
|
|
-import "net/http"
|
|
3
|
+import (
|
|
4
|
+ "context"
|
|
5
|
+ "net/http"
|
4
|
6
|
|
5
|
|
-func Logged(w http.ResponseWriter, r *http.Request) bool {
|
6
|
|
- return true
|
|
7
|
+ "../../../core/errorHandler"
|
|
8
|
+ "../../../core/response"
|
|
9
|
+ "../../lib/auth"
|
|
10
|
+)
|
|
11
|
+
|
|
12
|
+func Mandatory(w http.ResponseWriter, r *http.Request) (logged bool) {
|
|
13
|
+
|
|
14
|
+ user, logged := auth.GetUser(r)
|
|
15
|
+
|
|
16
|
+ if !logged {
|
|
17
|
+
|
|
18
|
+ var Errors errorHandler.Errors
|
|
19
|
+ Errors.ActionForbidden("User must be logged in")
|
|
20
|
+ response.JSON(Errors)
|
|
21
|
+
|
|
22
|
+ } else {
|
|
23
|
+
|
|
24
|
+ ctx := context.WithValue(r.Context(), "user", user)
|
|
25
|
+ r = r.WithContext(ctx)
|
|
26
|
+ }
|
|
27
|
+
|
|
28
|
+ return
|
7
|
29
|
}
|