1
0
Fork 0
miniflux/middleware/fever.go

53 lines
1.5 KiB
Go
Raw Normal View History

2018-04-27 23:38:46 -04:00
// Copyright 2018 Frédéric Guillot. All rights reserved.
2017-12-03 20:44:27 -05:00
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2018-08-25 00:51:50 -04:00
package middleware // import "miniflux.app/middleware"
2017-12-03 20:44:27 -05:00
import (
"context"
"net/http"
2018-09-03 17:26:40 -04:00
"miniflux.app/http/request"
2018-08-25 00:51:50 -04:00
"miniflux.app/http/response/json"
"miniflux.app/logger"
2017-12-03 20:44:27 -05:00
)
var feverAuthFailureResponse = map[string]int{"api_version": 3, "auth": 0}
2018-04-27 23:38:46 -04:00
// FeverAuth handles Fever API authentication.
func (m *Middleware) FeverAuth(next http.Handler) http.Handler {
2017-12-03 20:44:27 -05:00
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
apiKey := r.FormValue("api_key")
if apiKey == "" {
logger.Info("[Middleware:Fever] No API key provided")
json.OK(w, r, feverAuthFailureResponse)
return
}
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 {
logger.Error("[Middleware:Fever] %v", err)
json.OK(w, r, feverAuthFailureResponse)
2017-12-03 20:44:27 -05:00
return
}
if user == nil {
2018-10-07 21:42:43 -04:00
logger.Info("[Middleware:Fever] No user found with this API key")
json.OK(w, r, feverAuthFailureResponse)
2017-12-03 20:44:27 -05:00
return
}
2017-12-15 21:55:57 -05:00
logger.Info("[Middleware:Fever] User #%d is authenticated", user.ID)
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))
})
}