2015-08-18 05:57:27 +05:30
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/rand"
|
|
|
|
"encoding/base64"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/coreos/dex/client"
|
|
|
|
"github.com/coreos/dex/pkg/log"
|
|
|
|
schema "github.com/coreos/dex/schema/workerschema"
|
|
|
|
"github.com/coreos/dex/user"
|
2015-12-08 04:59:58 +05:30
|
|
|
"github.com/coreos/dex/user/manager"
|
2015-08-18 05:57:27 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
errorMap = map[error]Error{
|
|
|
|
user.ErrorNotFound: ErrorResourceNotFound,
|
|
|
|
user.ErrorDuplicateEmail: ErrorDuplicateEmail,
|
|
|
|
user.ErrorInvalidEmail: ErrorInvalidEmail,
|
|
|
|
client.ErrorNotFound: ErrorInvalidClient,
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorInvalidEmail = newError("invalid_email", "invalid email.", http.StatusBadRequest)
|
|
|
|
|
|
|
|
ErrorInvalidClient = newError("invalid_client", "invalid email.", http.StatusBadRequest)
|
|
|
|
|
|
|
|
ErrorDuplicateEmail = newError("duplicate_email", "Email already in use.", http.StatusBadRequest)
|
|
|
|
ErrorResourceNotFound = newError("resource_not_found", "Resource could not be found.", http.StatusNotFound)
|
|
|
|
|
2016-01-20 03:10:16 +05:30
|
|
|
ErrorUnauthorized = newError("unauthorized", "Necessary credentials not provided.", http.StatusUnauthorized)
|
|
|
|
ErrorForbidden = newError("forbidden", "The given user and client are not authorized to make this request.", http.StatusForbidden)
|
2015-08-18 05:57:27 +05:30
|
|
|
|
|
|
|
ErrorMaxResultsTooHigh = newError("max_results_too_high", fmt.Sprintf("The max number of results per page is %d", maxUsersPerPage), http.StatusBadRequest)
|
|
|
|
|
|
|
|
ErrorInvalidRedirectURL = newError("invalid_redirect_url", "The provided redirect URL is invalid for the given client", http.StatusBadRequest)
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
maxUsersPerPage = 100
|
|
|
|
)
|
|
|
|
|
|
|
|
func internalError(internal error) Error {
|
|
|
|
return Error{
|
|
|
|
Code: http.StatusInternalServerError,
|
|
|
|
Type: "server_error",
|
|
|
|
Desc: "",
|
|
|
|
Internal: internal,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func newError(typ string, desc string, code int) Error {
|
|
|
|
return Error{
|
|
|
|
Code: code,
|
|
|
|
Type: typ,
|
|
|
|
Desc: desc,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error is the error type returned by AdminAPI methods.
|
|
|
|
type Error struct {
|
|
|
|
Type string
|
|
|
|
|
|
|
|
// The HTTP Code to return for this type of error.
|
|
|
|
Code int
|
|
|
|
|
|
|
|
Desc string
|
|
|
|
|
|
|
|
// The underlying error - not to be consumed by external users.
|
|
|
|
Internal error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e Error) Error() string {
|
|
|
|
return fmt.Sprintf("%v: Desc: %v Internal: %v", e.Type, e.Desc, e.Internal)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UsersAPI is the user management API for Dex administrators.
|
|
|
|
|
|
|
|
// All calls take a Creds object with the ClientID of the calling app and the
|
|
|
|
// calling User. It is assumed that the clientID has already validated as an
|
|
|
|
// admin app before calling.
|
|
|
|
type UsersAPI struct {
|
2015-12-08 04:59:58 +05:30
|
|
|
manager *manager.UserManager
|
2015-08-18 05:57:27 +05:30
|
|
|
localConnectorID string
|
|
|
|
clientIdentityRepo client.ClientIdentityRepo
|
|
|
|
emailer Emailer
|
|
|
|
}
|
|
|
|
|
|
|
|
type Emailer interface {
|
2015-10-31 03:11:00 +05:30
|
|
|
SendInviteEmail(string, url.URL, string) (*url.URL, error)
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
type Creds struct {
|
|
|
|
ClientID string
|
|
|
|
User user.User
|
|
|
|
}
|
|
|
|
|
2015-12-08 04:59:58 +05:30
|
|
|
func NewUsersAPI(manager *manager.UserManager, cir client.ClientIdentityRepo, emailer Emailer, localConnectorID string) *UsersAPI {
|
2015-08-18 05:57:27 +05:30
|
|
|
return &UsersAPI{
|
|
|
|
manager: manager,
|
|
|
|
clientIdentityRepo: cir,
|
|
|
|
localConnectorID: localConnectorID,
|
|
|
|
emailer: emailer,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *UsersAPI) GetUser(creds Creds, id string) (schema.User, error) {
|
|
|
|
log.Infof("userAPI: GetUser")
|
|
|
|
|
|
|
|
if !u.Authorize(creds) {
|
|
|
|
return schema.User{}, ErrorUnauthorized
|
|
|
|
}
|
|
|
|
|
|
|
|
usr, err := u.manager.Get(id)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return schema.User{}, mapError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return userToSchemaUser(usr), nil
|
|
|
|
}
|
|
|
|
|
2015-09-29 02:21:48 +05:30
|
|
|
func (u *UsersAPI) DisableUser(creds Creds, userID string, disable bool) (schema.UserDisableResponse, error) {
|
|
|
|
log.Infof("userAPI: DisableUser")
|
|
|
|
if !u.Authorize(creds) {
|
|
|
|
return schema.UserDisableResponse{}, ErrorUnauthorized
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := u.manager.Disable(userID, disable); err != nil {
|
|
|
|
return schema.UserDisableResponse{}, mapError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return schema.UserDisableResponse{
|
|
|
|
Ok: true,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2015-08-18 05:57:27 +05:30
|
|
|
func (u *UsersAPI) CreateUser(creds Creds, usr schema.User, redirURL url.URL) (schema.UserCreateResponse, error) {
|
|
|
|
log.Infof("userAPI: CreateUser")
|
|
|
|
if !u.Authorize(creds) {
|
|
|
|
return schema.UserCreateResponse{}, ErrorUnauthorized
|
|
|
|
}
|
|
|
|
|
|
|
|
hash, err := generateTempHash()
|
|
|
|
if err != nil {
|
|
|
|
return schema.UserCreateResponse{}, mapError(err)
|
|
|
|
}
|
|
|
|
|
2015-09-26 03:38:45 +05:30
|
|
|
metadata, err := u.clientIdentityRepo.Metadata(creds.ClientID)
|
2015-08-18 05:57:27 +05:30
|
|
|
if err != nil {
|
|
|
|
return schema.UserCreateResponse{}, mapError(err)
|
|
|
|
}
|
|
|
|
|
2016-01-13 06:46:28 +05:30
|
|
|
validRedirURL, err := client.ValidRedirectURL(&redirURL, metadata.RedirectURIs)
|
2015-08-18 05:57:27 +05:30
|
|
|
if err != nil {
|
2015-09-26 03:38:45 +05:30
|
|
|
return schema.UserCreateResponse{}, ErrorInvalidRedirectURL
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
|
2015-09-26 03:38:45 +05:30
|
|
|
id, err := u.manager.CreateUser(schemaUserToUser(usr), user.Password(hash), u.localConnectorID)
|
2015-08-18 05:57:27 +05:30
|
|
|
if err != nil {
|
|
|
|
return schema.UserCreateResponse{}, mapError(err)
|
|
|
|
}
|
|
|
|
|
2015-09-26 03:38:45 +05:30
|
|
|
userUser, err := u.manager.Get(id)
|
2015-08-18 05:57:27 +05:30
|
|
|
if err != nil {
|
2015-09-26 03:38:45 +05:30
|
|
|
return schema.UserCreateResponse{}, mapError(err)
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
|
2015-09-26 03:38:45 +05:30
|
|
|
usr = userToSchemaUser(userUser)
|
|
|
|
|
2015-10-31 03:11:00 +05:30
|
|
|
url, err := u.emailer.SendInviteEmail(usr.Email, validRedirURL, creds.ClientID)
|
2015-08-18 05:57:27 +05:30
|
|
|
|
|
|
|
// An email is sent only if we don't get a link and there's no error.
|
|
|
|
emailSent := err == nil && url == nil
|
|
|
|
|
|
|
|
var resetLink string
|
|
|
|
if url != nil {
|
|
|
|
resetLink = url.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
return schema.UserCreateResponse{
|
|
|
|
User: &usr,
|
|
|
|
EmailSent: emailSent,
|
|
|
|
ResetPasswordLink: resetLink,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *UsersAPI) ListUsers(creds Creds, maxResults int, nextPageToken string) ([]*schema.User, string, error) {
|
|
|
|
log.Infof("userAPI: ListUsers")
|
|
|
|
|
|
|
|
if !u.Authorize(creds) {
|
|
|
|
return nil, "", ErrorUnauthorized
|
|
|
|
}
|
|
|
|
|
|
|
|
if maxResults > maxUsersPerPage {
|
|
|
|
return nil, "", ErrorMaxResultsTooHigh
|
|
|
|
}
|
|
|
|
|
|
|
|
users, tok, err := u.manager.List(user.UserFilter{}, maxResults, nextPageToken)
|
|
|
|
if err != nil {
|
|
|
|
return nil, "", mapError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
list := []*schema.User{}
|
|
|
|
for _, usr := range users {
|
|
|
|
schemaUsr := userToSchemaUser(usr)
|
|
|
|
list = append(list, &schemaUsr)
|
|
|
|
}
|
|
|
|
|
|
|
|
return list, tok, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *UsersAPI) Authorize(creds Creds) bool {
|
2015-09-26 05:59:59 +05:30
|
|
|
return creds.User.Admin && !creds.User.Disabled
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
func userToSchemaUser(usr user.User) schema.User {
|
|
|
|
return schema.User{
|
|
|
|
Id: usr.ID,
|
|
|
|
Email: usr.Email,
|
|
|
|
EmailVerified: usr.EmailVerified,
|
|
|
|
DisplayName: usr.DisplayName,
|
|
|
|
Admin: usr.Admin,
|
2015-09-29 02:21:48 +05:30
|
|
|
Disabled: usr.Disabled,
|
2015-08-18 05:57:27 +05:30
|
|
|
CreatedAt: usr.CreatedAt.UTC().Format(time.RFC3339),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func schemaUserToUser(usr schema.User) user.User {
|
|
|
|
return user.User{
|
|
|
|
ID: usr.Id,
|
|
|
|
Email: usr.Email,
|
|
|
|
EmailVerified: usr.EmailVerified,
|
|
|
|
DisplayName: usr.DisplayName,
|
|
|
|
Admin: usr.Admin,
|
2015-09-29 02:21:48 +05:30
|
|
|
Disabled: usr.Disabled,
|
2015-08-18 05:57:27 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func mapError(e error) error {
|
|
|
|
if mapped, ok := errorMap[e]; ok {
|
|
|
|
return mapped
|
|
|
|
}
|
|
|
|
return internalError(e)
|
|
|
|
}
|
|
|
|
|
|
|
|
func generateTempHash() (string, error) {
|
|
|
|
b := make([]byte, 32)
|
|
|
|
n, err := rand.Read(b)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
2015-09-05 01:15:32 +05:30
|
|
|
}
|
|
|
|
if n != 32 {
|
2015-08-18 05:57:27 +05:30
|
|
|
return "", errors.New("unable to read enough random bytes")
|
|
|
|
}
|
|
|
|
return base64.URLEncoding.EncodeToString(b), nil
|
|
|
|
}
|