all repos — quartzgun @ 1dd23fe176ca430b11b550729d8cc06035afb609

lightweight web framework in go

middleware/middleware.go (raw)

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
package middleware

import (
	"context"
	"fmt"
	"net/http"
	"nilfm.cc/git/quartzgun/auth"
	"nilfm.cc/git/quartzgun/cookie"
)

func Protected(next http.Handler, method string, userStore auth.UserStore) http.Handler {
	handlerFunc := func(w http.ResponseWriter, req *http.Request) {
		user, err := cookie.GetToken("user", req)
		if err == nil {
			session, err := cookie.GetToken("session", req)
			if err == nil {
				login, err := userStore.ValidateUser(user, session)
				if err == nil && login {
					fmt.Printf("authorized!\n")
					fmt.Printf("user: %s, session: %s\n", user, session)
					req.Method = method
					next.ServeHTTP(w, req)
					return
				}
			}
		}
		fmt.Printf("unauthorized...\n")
		req.Method = http.MethodGet
		http.Redirect(w, req, "/login", http.StatusSeeOther)
	}

	return http.HandlerFunc(handlerFunc)
}

func Authorize(next string, userStore auth.UserStore) http.Handler {
	handlerFunc := func(w http.ResponseWriter, req *http.Request) {
		err := auth.Login(
			req.FormValue("user"),
			req.FormValue("password"),
			userStore,
			w,
			24*7*52)
		if err == nil {
			req.Method = http.MethodGet
			fmt.Printf("logged in as %s\n", req.FormValue("user"))
			http.Redirect(w, req, next, http.StatusSeeOther)
		} else {
			*req = *req.WithContext(
				context.WithValue(
					req.Context(),
					"message",
					"Incorrect credentials"))
			fmt.Printf("login failed!\n")
			req.Method = http.MethodGet
			http.Redirect(w, req, "/login", http.StatusSeeOther)
		}
	}

	return http.HandlerFunc(handlerFunc)
}