Spaces:
Runtime error
Runtime error
File size: 949 Bytes
48511d8 |
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 |
package auth
import (
"errors"
"net/http"
)
type AuthHandler struct {
authService *AuthService
}
func NewAuthHandler(authService *AuthService) *AuthHandler {
return &AuthHandler{
authService: authService,
}
}
func (h *AuthHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPost {
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
return
}
apiKey := r.Header.Get("X-API-Key")
if apiKey == "" {
http.Error(w, "API key required", http.StatusUnauthorized)
return
}
token, err := h.authService.Authenticate(apiKey)
if err != nil {
if errors.Is(err, ErrInvalidAPIKey) {
http.Error(w, "Invalid API key", http.StatusUnauthorized)
} else {
http.Error(w, "Authentication error", http.StatusInternalServerError)
}
return
}
w.Header().Set("Content-Type", "application/json")
w.Write([]byte(`{"token":"` + token + `"}`))
}
|