28 lines
766 B
Go
28 lines
766 B
Go
package api
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"net/http"
|
|
|
|
"git.fabledsword.com/bvandeusen/minstrel/internal/apierror"
|
|
"git.fabledsword.com/bvandeusen/minstrel/internal/auth"
|
|
)
|
|
|
|
func (h *handlers) handleGetMe(w http.ResponseWriter, r *http.Request) {
|
|
user, ok := auth.UserFromContext(r.Context())
|
|
if !ok {
|
|
// Hitting /me without RequireUser in front of it is a routing bug;
|
|
// it can't happen in real traffic.
|
|
h.logger.Error("api: /me reached without authenticated user")
|
|
writeErr(w, apierror.InternalMsg("missing auth context", errors.New("missing auth context")))
|
|
return
|
|
}
|
|
w.Header().Set("Content-Type", "application/json")
|
|
_ = json.NewEncoder(w).Encode(UserView{
|
|
ID: user.ID,
|
|
Username: user.Username,
|
|
IsAdmin: user.IsAdmin,
|
|
})
|
|
}
|