-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.go
37 lines (32 loc) · 946 Bytes
/
auth.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
package session
import (
"net/http"
)
var (
RedirectUrl string = "/account/login"
AdminRedirectUrl string = "/admin/account/login"
RedirectParam string = "next"
)
// User
type User interface {
Login() int
Logout() int
IsAdmin() bool
IsAuthenticated() bool
UniqueId() interface{}
GetById(id interface{}) (User, int)
}
func LoginRequired(user User, req *http.Request, resp http.ResponseWriter) {
if !user.IsAuthenticated() {
//path := fmt.Sprintf("%s?%s=%s", RedirectUrl, RedirectParam, req.URL.Path)
//http.Redirect(resp, req, path, http.StatusFound)
http.Error(resp, "", http.StatusUnauthorized)
}
}
func AdminRequired(user User, req *http.Request, resp http.ResponseWriter) {
if !user.IsAuthenticated() || !user.IsAdmin() {
//path := fmt.Sprintf("%s?%s=%s", AdminRedirectUrl, RedirectParam, req.URL.Path)
//http.Redirect(resp, req, path, http.StatusFound)
http.Error(resp, "", http.StatusUnauthorized)
}
}