MXS-1220: Add creation and deletion of admin users
Admin users can now be created via the REST API. This allows remote management of the administrative interface itself.
This commit is contained in:
@ -33,6 +33,20 @@ MXS_BEGIN_DECLS
|
||||
static const char INET_DEFAULT_USERNAME[] = "admin";
|
||||
static const char INET_DEFAULT_PASSWORD[] = "mariadb";
|
||||
|
||||
/** Return values for the functions */
|
||||
static const char *ADMIN_ERR_NOMEM = "Out of memory";
|
||||
static const char *ADMIN_ERR_FILEOPEN = "Unable to create password file";
|
||||
static const char *ADMIN_ERR_DUPLICATE = "Duplicate username specified";
|
||||
static const char *ADMIN_ERR_USERNOTFOUND = "User not found";
|
||||
static const char *ADMIN_ERR_AUTHENTICATION = "Authentication failed";
|
||||
static const char *ADMIN_ERR_FILEAPPEND = "Unable to append to password file";
|
||||
static const char *ADMIN_ERR_PWDFILEOPEN = "Failed to open password file";
|
||||
static const char *ADMIN_ERR_TMPFILEOPEN = "Failed to open temporary password file";
|
||||
static const char *ADMIN_ERR_PWDFILEACCESS = "Failed to access password file";
|
||||
static const char *ADMIN_ERR_DELLASTUSER = "Deleting the last user is forbidden";
|
||||
static const char *ADMIN_ERR_DELROOT = "Deleting the default admin user is forbidden";
|
||||
static const char *ADMIN_SUCCESS = NULL;
|
||||
|
||||
/** User types */
|
||||
enum user_type
|
||||
{
|
||||
|
@ -60,7 +60,9 @@ MXS_BEGIN_DECLS
|
||||
#define MXS_JSON_PTR_PARAM_SSL_VERSION MXS_JSON_PTR_PARAMETERS "/ssl_version"
|
||||
#define MXS_JSON_PTR_PARAM_SSL_CERT_VERIFY_DEPTH MXS_JSON_PTR_PARAMETERS "/ssl_cert_verify_depth"
|
||||
|
||||
/** Non-parameter JSON pointers */
|
||||
#define MXS_JSON_PTR_MODULE "/data/attributes/module"
|
||||
#define MXS_JSON_PTR_PASSWORD "/data/attributes/password"
|
||||
|
||||
/**
|
||||
* Common configuration parameters names
|
||||
|
Reference in New Issue
Block a user