2023-06-19 17:42:47 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2017-12-03 20:44:27 -05:00
|
|
|
|
2023-08-10 00:15:55 -04:00
|
|
|
package fever // import "miniflux.app/v2/fever"
|
2017-12-03 20:44:27 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net/http"
|
|
|
|
|
2023-08-10 00:15:55 -04:00
|
|
|
"miniflux.app/v2/http/request"
|
|
|
|
"miniflux.app/v2/http/response/json"
|
|
|
|
"miniflux.app/v2/logger"
|
|
|
|
"miniflux.app/v2/storage"
|
2017-12-03 20:44:27 -05:00
|
|
|
)
|
|
|
|
|
2018-11-11 12:52:12 -05:00
|
|
|
type middleware struct {
|
|
|
|
store *storage.Storage
|
|
|
|
}
|
|
|
|
|
|
|
|
func newMiddleware(s *storage.Storage) *middleware {
|
|
|
|
return &middleware{s}
|
|
|
|
}
|
2018-10-26 22:49:49 -04:00
|
|
|
|
2018-11-11 12:52:12 -05:00
|
|
|
func (m *middleware) serve(next http.Handler) http.Handler {
|
2017-12-03 20:44:27 -05:00
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2020-08-09 00:51:52 -04:00
|
|
|
clientIP := request.ClientIP(r)
|
2017-12-03 20:44:27 -05:00
|
|
|
apiKey := r.FormValue("api_key")
|
2018-10-26 22:49:49 -04:00
|
|
|
if apiKey == "" {
|
2020-08-09 00:51:52 -04:00
|
|
|
logger.Info("[Fever] [ClientIP=%s] No API key provided", clientIP)
|
2018-11-11 12:52:12 -05:00
|
|
|
json.OK(w, r, newAuthFailureResponse())
|
2018-10-26 22:49:49 -04:00
|
|
|
return
|
|
|
|
}
|
2018-04-29 19:35:04 -04:00
|
|
|
|
2018-04-27 23:38:46 -04:00
|
|
|
user, err := m.store.UserByFeverToken(apiKey)
|
2017-12-03 20:44:27 -05:00
|
|
|
if err != nil {
|
2018-11-11 12:52:12 -05:00
|
|
|
logger.Error("[Fever] %v", err)
|
|
|
|
json.OK(w, r, newAuthFailureResponse())
|
2017-12-03 20:44:27 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if user == nil {
|
2020-08-09 00:51:52 -04:00
|
|
|
logger.Info("[Fever] [ClientIP=%s] No user found with this API key", clientIP)
|
2018-11-11 12:52:12 -05:00
|
|
|
json.OK(w, r, newAuthFailureResponse())
|
2017-12-03 20:44:27 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-08-09 00:51:52 -04:00
|
|
|
logger.Info("[Fever] [ClientIP=%s] User #%d is authenticated with user agent %q", clientIP, user.ID, r.UserAgent())
|
2018-04-27 23:38:46 -04:00
|
|
|
m.store.SetLastLogin(user.ID)
|
2017-12-03 20:44:27 -05:00
|
|
|
|
|
|
|
ctx := r.Context()
|
2018-09-03 17:26:40 -04:00
|
|
|
ctx = context.WithValue(ctx, request.UserIDContextKey, user.ID)
|
|
|
|
ctx = context.WithValue(ctx, request.UserTimezoneContextKey, user.Timezone)
|
|
|
|
ctx = context.WithValue(ctx, request.IsAdminUserContextKey, user.IsAdmin)
|
|
|
|
ctx = context.WithValue(ctx, request.IsAuthenticatedContextKey, true)
|
2017-12-03 20:44:27 -05:00
|
|
|
|
|
|
|
next.ServeHTTP(w, r.WithContext(ctx))
|
|
|
|
})
|
|
|
|
}
|