2015-08-18 05:57:27 +05:30
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/coreos/go-oidc/jose"
|
|
|
|
"github.com/coreos/go-oidc/oidc"
|
|
|
|
"github.com/julienschmidt/httprouter"
|
|
|
|
|
|
|
|
"github.com/coreos/dex/client"
|
|
|
|
"github.com/coreos/dex/pkg/log"
|
|
|
|
schema "github.com/coreos/dex/schema/workerschema"
|
|
|
|
"github.com/coreos/dex/user"
|
|
|
|
"github.com/coreos/dex/user/api"
|
2015-12-08 04:59:58 +05:30
|
|
|
"github.com/coreos/dex/user/manager"
|
2015-08-18 05:57:27 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
defaultMaxResults = 20
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2016-02-23 17:10:00 +05:30
|
|
|
UsersSubTree = "/users"
|
|
|
|
UsersListEndpoint = addBasePath(UsersSubTree)
|
|
|
|
UsersCreateEndpoint = addBasePath(UsersSubTree)
|
|
|
|
UsersGetEndpoint = addBasePath(UsersSubTree + "/:id")
|
|
|
|
UsersDisableEndpoint = addBasePath(UsersSubTree + "/:id/disable")
|
|
|
|
UsersResendInvitationEndpoint = addBasePath(UsersSubTree + "/:id/resend-invitation")
|
2015-08-18 05:57:27 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
type UserMgmtServer struct {
|
|
|
|
api *api.UsersAPI
|
|
|
|
jwtvFactory JWTVerifierFactory
|
2015-12-08 04:59:58 +05:30
|
|
|
um *manager.UserManager
|
2015-08-18 05:57:27 +05:30
|
|
|
cir client.ClientIdentityRepo
|
|
|
|
}
|
|
|
|
|
2015-12-08 04:59:58 +05:30
|
|
|
func NewUserMgmtServer(userMgmtAPI *api.UsersAPI, jwtvFactory JWTVerifierFactory, um *manager.UserManager, cir client.ClientIdentityRepo) *UserMgmtServer {
|
2015-08-18 05:57:27 +05:30
|
|
|
return &UserMgmtServer{
|
|
|
|
api: userMgmtAPI,
|
|
|
|
jwtvFactory: jwtvFactory,
|
|
|
|
um: um,
|
|
|
|
cir: cir,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *UserMgmtServer) HTTPHandler() http.Handler {
|
|
|
|
r := httprouter.New()
|
2015-09-25 05:11:29 +05:30
|
|
|
r.RedirectTrailingSlash = false
|
|
|
|
r.RedirectFixedPath = false
|
2016-01-20 03:10:16 +05:30
|
|
|
r.GET(UsersListEndpoint, s.authAPIHandle(s.listUsers))
|
|
|
|
r.POST(UsersCreateEndpoint, s.authAPIHandle(s.createUser))
|
|
|
|
r.POST(UsersDisableEndpoint, s.authAPIHandle(s.disableUser))
|
|
|
|
r.GET(UsersGetEndpoint, s.authAPIHandle(s.getUser))
|
2016-02-23 17:10:00 +05:30
|
|
|
r.POST(UsersResendInvitationEndpoint, s.authAPIHandle(s.resendInvitationEmail))
|
2015-08-18 05:57:27 +05:30
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:10:16 +05:30
|
|
|
// authedHandle is an HTTP handle which requires requests to be authenticated as an admin user.
|
|
|
|
type authedHandle func(w http.ResponseWriter, r *http.Request, ps httprouter.Params, creds api.Creds)
|
|
|
|
|
|
|
|
// authAPIHandle is a middleware function with authenticates an HTTP request before passing
|
|
|
|
// it along to the authedHandle.
|
|
|
|
func (s *UserMgmtServer) authAPIHandle(handle authedHandle) httprouter.Handle {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
|
|
|
|
creds, err := s.getCreds(r)
|
|
|
|
if err != nil {
|
|
|
|
s.writeError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
handle(w, r, ps, creds)
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
2016-01-20 03:10:16 +05:30
|
|
|
}
|
2015-08-18 05:57:27 +05:30
|
|
|
|
2016-01-20 03:10:16 +05:30
|
|
|
func (s *UserMgmtServer) listUsers(w http.ResponseWriter, r *http.Request, ps httprouter.Params, creds api.Creds) {
|
2015-08-18 05:57:27 +05:30
|
|
|
nextPageToken := r.URL.Query().Get("nextPageToken")
|
|
|
|
|
|
|
|
maxResults, err := intFromQuery(r.URL.Query(), "maxResults", defaultMaxResults)
|
|
|
|
if err != nil {
|
|
|
|
writeAPIError(w, http.StatusBadRequest,
|
|
|
|
newAPIError(errorInvalidRequest, "maxResults must be an integer"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
users, nextPageToken, err := s.api.ListUsers(creds, maxResults, nextPageToken)
|
|
|
|
if err != nil {
|
|
|
|
s.writeError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
usersResponse := schema.UsersResponse{
|
|
|
|
Users: users,
|
|
|
|
NextPageToken: nextPageToken,
|
|
|
|
}
|
|
|
|
writeResponseWithBody(w, http.StatusOK, usersResponse)
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:10:16 +05:30
|
|
|
func (s *UserMgmtServer) getUser(w http.ResponseWriter, r *http.Request, ps httprouter.Params, creds api.Creds) {
|
2015-08-18 05:57:27 +05:30
|
|
|
id := ps.ByName("id")
|
|
|
|
if id == "" {
|
|
|
|
writeAPIError(w, http.StatusBadRequest,
|
|
|
|
newAPIError(errorInvalidRequest, "id is required"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
usr, err := s.api.GetUser(creds, id)
|
|
|
|
if err != nil {
|
|
|
|
s.writeError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
userResponse := schema.UserResponse{
|
|
|
|
User: &usr,
|
|
|
|
}
|
|
|
|
writeResponseWithBody(w, http.StatusOK, userResponse)
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:10:16 +05:30
|
|
|
func (s *UserMgmtServer) createUser(w http.ResponseWriter, r *http.Request, ps httprouter.Params, creds api.Creds) {
|
2015-08-18 05:57:27 +05:30
|
|
|
createReq := schema.UserCreateRequest{}
|
2016-01-20 03:10:16 +05:30
|
|
|
if err := json.NewDecoder(r.Body).Decode(&createReq); err != nil {
|
2015-08-18 05:57:27 +05:30
|
|
|
writeInvalidRequest(w, "cannot parse JSON body")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
redirURL, err := url.Parse(createReq.RedirectURL)
|
|
|
|
if err != nil {
|
|
|
|
writeAPIError(w, http.StatusBadRequest,
|
|
|
|
newAPIError(errorInvalidRequest, "redirectURL must be a valid URL"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
createdResponse, err := s.api.CreateUser(creds, *createReq.User, *redirURL)
|
|
|
|
if err != nil {
|
|
|
|
s.writeError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
writeResponseWithBody(w, http.StatusOK, createdResponse)
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:10:16 +05:30
|
|
|
func (s *UserMgmtServer) disableUser(w http.ResponseWriter, r *http.Request, ps httprouter.Params, creds api.Creds) {
|
2015-09-29 02:21:48 +05:30
|
|
|
id := ps.ByName("id")
|
|
|
|
if id == "" {
|
|
|
|
writeAPIError(w, http.StatusBadRequest,
|
|
|
|
newAPIError(errorInvalidRequest, "id is required"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
disableReq := schema.UserDisableRequest{}
|
2016-01-20 03:10:16 +05:30
|
|
|
if err := json.NewDecoder(r.Body).Decode(&disableReq); err != nil {
|
2015-09-29 02:21:48 +05:30
|
|
|
writeInvalidRequest(w, "cannot parse JSON body")
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := s.api.DisableUser(creds, id, disableReq.Disable)
|
|
|
|
if err != nil {
|
|
|
|
s.writeError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
writeResponseWithBody(w, http.StatusOK, resp)
|
|
|
|
}
|
|
|
|
|
2016-02-23 17:10:00 +05:30
|
|
|
func (s *UserMgmtServer) resendInvitationEmail(w http.ResponseWriter, r *http.Request, ps httprouter.Params, creds api.Creds) {
|
|
|
|
id := ps.ByName("id")
|
|
|
|
if id == "" {
|
|
|
|
writeAPIError(w, http.StatusBadRequest, newAPIError(errorInvalidRequest, "id is required"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
resendEmailInvitationReq := schema.ResendEmailInvitationRequest{}
|
|
|
|
if err := json.NewDecoder(r.Body).Decode(&resendEmailInvitationReq); err != nil {
|
|
|
|
writeInvalidRequest(w, "cannot parse JSON body")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
redirURL, err := url.Parse(resendEmailInvitationReq.RedirectURL)
|
|
|
|
if err != nil {
|
|
|
|
writeAPIError(w, http.StatusBadRequest,
|
|
|
|
newAPIError(errorInvalidRequest, "redirectURL must be a valid URL"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
resendEmailInvitationResponse, err := s.api.ResendEmailInvitation(creds, id, *redirURL)
|
|
|
|
if err != nil {
|
|
|
|
s.writeError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
writeResponseWithBody(w, http.StatusOK, resendEmailInvitationResponse)
|
|
|
|
}
|
|
|
|
|
2015-08-18 05:57:27 +05:30
|
|
|
func (s *UserMgmtServer) writeError(w http.ResponseWriter, err error) {
|
|
|
|
log.Errorf("Error calling user management API: %v: ", err)
|
|
|
|
if apiErr, ok := err.(api.Error); ok {
|
|
|
|
writeAPIError(w, apiErr.Code, newAPIError(apiErr.Type, apiErr.Desc))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
writeAPIError(w, http.StatusInternalServerError, newAPIError(errorServerError, err.Error()))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *UserMgmtServer) getCreds(r *http.Request) (api.Creds, error) {
|
|
|
|
token, err := oidc.ExtractBearerToken(r)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("userMgmtServer: GetCreds err: %q", err)
|
|
|
|
return api.Creds{}, api.ErrorUnauthorized
|
|
|
|
}
|
|
|
|
|
|
|
|
jwt, err := jose.ParseJWT(token)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("userMgmtServer: GetCreds err: %q", err)
|
|
|
|
return api.Creds{}, api.ErrorUnauthorized
|
|
|
|
}
|
|
|
|
|
|
|
|
claims, err := jwt.Claims()
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("userMgmtServer: GetCreds err: %q", err)
|
|
|
|
return api.Creds{}, api.ErrorUnauthorized
|
|
|
|
}
|
|
|
|
|
|
|
|
clientID, ok, err := claims.StringClaim("aud")
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("userMgmtServer: GetCreds err: %q", err)
|
|
|
|
return api.Creds{}, err
|
|
|
|
}
|
|
|
|
if !ok || clientID == "" {
|
|
|
|
return api.Creds{}, errors.New("no aud(client ID) claim")
|
|
|
|
}
|
|
|
|
|
|
|
|
verifier := s.jwtvFactory(clientID)
|
|
|
|
if err := verifier.Verify(jwt); err != nil {
|
|
|
|
log.Errorf("userMgmtServer: GetCreds err: %q", err)
|
|
|
|
return api.Creds{}, api.ErrorUnauthorized
|
|
|
|
}
|
|
|
|
|
|
|
|
sub, ok, err := claims.StringClaim("sub")
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("userMgmtServer: GetCreds err: %q", err)
|
|
|
|
return api.Creds{}, err
|
|
|
|
}
|
|
|
|
if !ok || sub == "" {
|
|
|
|
return api.Creds{}, api.ErrorUnauthorized
|
|
|
|
}
|
|
|
|
|
|
|
|
usr, err := s.um.Get(sub)
|
|
|
|
if err != nil {
|
|
|
|
if err == user.ErrorNotFound {
|
|
|
|
return api.Creds{}, api.ErrorUnauthorized
|
|
|
|
}
|
|
|
|
log.Errorf("userMgmtServer: GetCreds err: %q", err)
|
|
|
|
return api.Creds{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
isAdmin, err := s.cir.IsDexAdmin(clientID)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("userMgmtServer: GetCreds err: %q", err)
|
|
|
|
return api.Creds{}, err
|
|
|
|
}
|
|
|
|
if !isAdmin {
|
2016-01-20 03:10:16 +05:30
|
|
|
return api.Creds{}, api.ErrorForbidden
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
return api.Creds{
|
|
|
|
ClientID: clientID,
|
|
|
|
User: usr,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func intFromQuery(ps url.Values, name string, defaultVal int) (int, error) {
|
|
|
|
s := ps.Get(name)
|
|
|
|
if s == "" {
|
|
|
|
return defaultVal, nil
|
|
|
|
}
|
|
|
|
return strconv.Atoi(s)
|
|
|
|
}
|