aboutsummaryrefslogtreecommitdiffhomepage
path: root/http/middleware/basic_auth.go
blob: 35a9f8169ad9a6c9156038dfb98ba60a6c148a36 (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
66
67
68
69
70
71
72
// 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"
	"net/http"

	"github.com/miniflux/miniflux/logger"
	"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 {
			logger.Debug("[Middleware:BasicAuth] No authentication headers sent")
			w.WriteHeader(http.StatusUnauthorized)
			w.Write([]byte(errorResponse))
			return
		}

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

		user, err := b.store.UserByUsername(username)
		if err != nil {
			logger.Error("[Middleware:BasicAuth] %v", err)
			w.WriteHeader(http.StatusInternalServerError)
			w.Write([]byte(errorResponse))
			return
		}

		if user == nil {
			logger.Info("[Middleware:BasicAuth] User not found: %s", username)
			w.WriteHeader(http.StatusUnauthorized)
			w.Write([]byte(errorResponse))
			return
		}

		logger.Info("[Middleware:BasicAuth] User authenticated: %s", 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}
}