aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middleware/basic_auth.go
blob: 887acc0c57a8c56b456e8c837ba586e90e5fd091 (plain)
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
// Copyright 2017 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.

package middleware

import (
	"context"
	"log"
	"net/http"

	"github.com/miniflux/miniflux/storage"
)

// BasicAuthMiddleware is the middleware for HTTP Basic authentication.
type BasicAuthMiddleware struct {
	store *storage.Storage
}

// Handler executes the middleware.
func (b *BasicAuthMiddleware) Handler(next http.Handler) http.Handler {
	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		w.Header().Set("WWW-Authenticate", `Basic realm="Restricted"`)
		errorResponse := `{"error_message": "Not Authorized"}`

		username, password, authOK := r.BasicAuth()
		if !authOK {
			log.Println("[Middleware:BasicAuth] No authentication headers sent")
			w.WriteHeader(http.StatusUnauthorized)
			w.Write([]byte(errorResponse))
			return
		}

		if err := b.store.CheckPassword(username, password); err != nil {
			log.Println("[Middleware:BasicAuth] Invalid username or password:", username)
			w.WriteHeader(http.StatusUnauthorized)
			w.Write([]byte(errorResponse))
			return
		}

		user, err := b.store.UserByUsername(username)
		if err != nil || user == nil {
			log.Println("[Middleware:BasicAuth] User not found:", username)
			w.WriteHeader(http.StatusUnauthorized)
			w.Write([]byte(errorResponse))
			return
		}

		log.Println("[Middleware:BasicAuth] User authenticated:", username)
		b.store.SetLastLogin(user.ID)

		ctx := r.Context()
		ctx = context.WithValue(ctx, UserIDContextKey, user.ID)
		ctx = context.WithValue(ctx, UserTimezoneContextKey, user.Timezone)
		ctx = context.WithValue(ctx, IsAdminUserContextKey, user.IsAdmin)
		ctx = context.WithValue(ctx, IsAuthenticatedContextKey, true)

		next.ServeHTTP(w, r.WithContext(ctx))
	})
}

// NewBasicAuthMiddleware returns a new BasicAuthMiddleware.
func NewBasicAuthMiddleware(s *storage.Storage) *BasicAuthMiddleware {
	return &BasicAuthMiddleware{store: s}
}