Documentation ¶
Index ¶
- type Client
- type RESTClient
- func (c *RESTClient) DeleteUser(ctx context.Context, id int64) error
- func (c *RESTClient) GetCurrentUserInfo(ctx context.Context) (*modelv2.UserResp, error)
- func (c *RESTClient) GetCurrentUserPermisisons(ctx context.Context, relative bool, scope string) ([]*modelv2.Permission, error)
- func (c *RESTClient) GetUserByID(ctx context.Context, id int64) (*modelv2.UserResp, error)
- func (c *RESTClient) GetUserByName(ctx context.Context, username string) (*modelv2.UserResp, error)
- func (c *RESTClient) ListUsers(ctx context.Context) ([]*modelv2.UserResp, error)
- func (c *RESTClient) NewUser(ctx context.Context, username, email, realname, password, comments string) error
- func (c *RESTClient) SearchUsers(ctx context.Context, name string) ([]*modelv2.UserSearchRespItem, error)
- func (c *RESTClient) SetUserSysAdmin(ctx context.Context, id int64, admin bool) error
- func (c *RESTClient) UpdateUserPassword(ctx context.Context, userID int64, passwordRequest *modelv2.PasswordReq) error
- func (c *RESTClient) UpdateUserProfile(ctx context.Context, id int64, profile *modelv2.UserProfile) error
- func (c *RESTClient) UserExists(ctx context.Context, idOrName intstr.IntOrString) (bool, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client interface { NewUser(ctx context.Context, username, email, realname, password, comments string) error GetUserByName(ctx context.Context, username string) (*modelv2.UserResp, error) GetUserByID(ctx context.Context, id int64) (*modelv2.UserResp, error) ListUsers(ctx context.Context) ([]*modelv2.UserResp, error) SearchUsers(ctx context.Context, name string) ([]*modelv2.UserSearchRespItem, error) GetCurrentUserInfo(ctx context.Context) (*modelv2.UserResp, error) GetCurrentUserPermisisons(ctx context.Context, relative bool, scope string) ([]*modelv2.Permission, error) SetUserSysAdmin(ctx context.Context, id int64, admin bool) error DeleteUser(ctx context.Context, id int64) error UpdateUserProfile(ctx context.Context, id int64, profile *modelv2.UserProfile) error UpdateUserPassword(ctx context.Context, userID int64, passwordRequest *modelv2.PasswordReq) error UserExists(ctx context.Context, idOrName intstr.IntOrString) (bool, error) }
type RESTClient ¶
type RESTClient struct { // The new client of the harbor v2 API V2Client *v2client.Harbor // Options contains optional configuration when making API calls. Options *config.Options // AuthInfo contains the auth information that is provided on API calls. AuthInfo runtime.ClientAuthInfoWriter }
RESTClient is a subclient for handling user related actions.
func NewClient ¶
func NewClient(v2Client *v2client.Harbor, opts *config.Options, authInfo runtime.ClientAuthInfoWriter) *RESTClient
func (*RESTClient) DeleteUser ¶
func (c *RESTClient) DeleteUser(ctx context.Context, id int64) error
DeleteUser deletes the specified user, first ensuring its existence.
func (*RESTClient) GetCurrentUserInfo ¶
GetCurrentUserInfo returns information of currently active user.
func (*RESTClient) GetCurrentUserPermisisons ¶
func (c *RESTClient) GetCurrentUserPermisisons(ctx context.Context, relative bool, scope string) ([]*modelv2.Permission, error)
GetCurrentUserPermisisons returns the permissions of the currently active user.
func (*RESTClient) GetUserByID ¶
GetUserByID returns an existing user identified by ID.
func (*RESTClient) GetUserByName ¶
GetUserByName returns an existing user identified by name.
func (*RESTClient) ListUsers ¶
ListUsers lists and returns all registered Harbor users. The maximum number of users listed is bound to the RESTClient's configured PageSize.
func (*RESTClient) NewUser ¶
func (c *RESTClient) NewUser(ctx context.Context, username, email, realname, password, comments string) error
NewUser creates a new user with the provided values.
func (*RESTClient) SearchUsers ¶
func (c *RESTClient) SearchUsers(ctx context.Context, name string) ([]*modelv2.UserSearchRespItem, error)
SearchUsers searches all existing users by the provided username 'name' and returns matching users.
func (*RESTClient) SetUserSysAdmin ¶
SetUserSysAdmin updates a user's administrator privileges.
func (*RESTClient) UpdateUserPassword ¶
func (c *RESTClient) UpdateUserPassword(ctx context.Context, userID int64, passwordRequest *modelv2.PasswordReq) error
UpdateUserPassword updates a user's password from 'old' to 'new'. 'old' is an optional parameter when called by an administrator.
func (*RESTClient) UpdateUserProfile ¶
func (c *RESTClient) UpdateUserProfile(ctx context.Context, id int64, profile *modelv2.UserProfile) error
UpdateUserProfile updates a user identified by id with the specified profile data.
func (*RESTClient) UserExists ¶
func (c *RESTClient) UserExists(ctx context.Context, idOrName intstr.IntOrString) (bool, error)
UserExists checks the user with the provided 'idOrName' for existence.