mirror of https://github.com/portainer/portainer
				
				
				
			
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
package users
 | 
						|
 | 
						|
import (
 | 
						|
	"errors"
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	"github.com/asaskevich/govalidator"
 | 
						|
	httperror "github.com/portainer/libhttp/error"
 | 
						|
	"github.com/portainer/libhttp/request"
 | 
						|
	"github.com/portainer/libhttp/response"
 | 
						|
	portainer "github.com/portainer/portainer/api"
 | 
						|
)
 | 
						|
 | 
						|
type adminInitPayload struct {
 | 
						|
	// Username for the admin user
 | 
						|
	Username string `validate:"required" example:"admin"`
 | 
						|
	// Password for the admin user
 | 
						|
	Password string `validate:"required" example:"admin-password"`
 | 
						|
}
 | 
						|
 | 
						|
func (payload *adminInitPayload) Validate(r *http.Request) error {
 | 
						|
	if govalidator.IsNull(payload.Username) || govalidator.Contains(payload.Username, " ") {
 | 
						|
		return errors.New("Invalid username. Must not contain any whitespace")
 | 
						|
	}
 | 
						|
	if govalidator.IsNull(payload.Password) {
 | 
						|
		return errors.New("Invalid password")
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
// @id UserAdminInit
 | 
						|
// @summary Initialize administrator account
 | 
						|
// @description Initialize the 'admin' user account.
 | 
						|
// @description **Access policy**: public
 | 
						|
// @tags
 | 
						|
// @accept json
 | 
						|
// @produce json
 | 
						|
// @param body body adminInitPayload true "User details"
 | 
						|
// @success 200 {object} portainer.User "Success"
 | 
						|
// @failure 400 "Invalid request"
 | 
						|
// @failure 409 "Admin user already initialized"
 | 
						|
// @failure 500 "Server error"
 | 
						|
// @router /users/admin/init [post]
 | 
						|
func (handler *Handler) adminInit(w http.ResponseWriter, r *http.Request) *httperror.HandlerError {
 | 
						|
	var payload adminInitPayload
 | 
						|
	err := request.DecodeAndValidateJSONPayload(r, &payload)
 | 
						|
	if err != nil {
 | 
						|
		return &httperror.HandlerError{http.StatusBadRequest, "Invalid request payload", err}
 | 
						|
	}
 | 
						|
 | 
						|
	users, err := handler.DataStore.User().UsersByRole(portainer.AdministratorRole)
 | 
						|
	if err != nil {
 | 
						|
		return &httperror.HandlerError{http.StatusInternalServerError, "Unable to retrieve users from the database", err}
 | 
						|
	}
 | 
						|
 | 
						|
	if len(users) != 0 {
 | 
						|
		return &httperror.HandlerError{http.StatusConflict, "Unable to create administrator user", errAdminAlreadyInitialized}
 | 
						|
	}
 | 
						|
 | 
						|
	user := &portainer.User{
 | 
						|
		Username: payload.Username,
 | 
						|
		Role:     portainer.AdministratorRole,
 | 
						|
	}
 | 
						|
 | 
						|
	user.Password, err = handler.CryptoService.Hash(payload.Password)
 | 
						|
	if err != nil {
 | 
						|
		return &httperror.HandlerError{http.StatusInternalServerError, "Unable to hash user password", errCryptoHashFailure}
 | 
						|
	}
 | 
						|
 | 
						|
	err = handler.DataStore.User().CreateUser(user)
 | 
						|
	if err != nil {
 | 
						|
		return &httperror.HandlerError{http.StatusInternalServerError, "Unable to persist user inside the database", err}
 | 
						|
	}
 | 
						|
 | 
						|
	return response.JSON(w, user)
 | 
						|
}
 |