mirror of
https://github.com/goharbor/harbor.git
synced 2025-04-06 12:06:55 +02:00
refactor user API
This commit is contained in:
parent
ed63c916bf
commit
3287bf6f9e
@ -21,7 +21,6 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/vmware/harbor/src/common/api"
|
|
||||||
"github.com/vmware/harbor/src/common/dao"
|
"github.com/vmware/harbor/src/common/dao"
|
||||||
"github.com/vmware/harbor/src/common/models"
|
"github.com/vmware/harbor/src/common/models"
|
||||||
"github.com/vmware/harbor/src/common/utils/log"
|
"github.com/vmware/harbor/src/common/utils/log"
|
||||||
@ -30,7 +29,7 @@ import (
|
|||||||
|
|
||||||
// UserAPI handles request to /api/users/{}
|
// UserAPI handles request to /api/users/{}
|
||||||
type UserAPI struct {
|
type UserAPI struct {
|
||||||
api.BaseAPI
|
BaseController
|
||||||
currentUserID int
|
currentUserID int
|
||||||
userID int
|
userID int
|
||||||
SelfRegistration bool
|
SelfRegistration bool
|
||||||
@ -45,6 +44,7 @@ type passwordReq struct {
|
|||||||
|
|
||||||
// Prepare validates the URL and parms
|
// Prepare validates the URL and parms
|
||||||
func (ua *UserAPI) Prepare() {
|
func (ua *UserAPI) Prepare() {
|
||||||
|
ua.BaseController.Prepare()
|
||||||
mode, err := config.AuthMode()
|
mode, err := config.AuthMode()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf("failed to get auth mode: %v", err)
|
log.Errorf("failed to get auth mode: %v", err)
|
||||||
@ -61,15 +61,24 @@ func (ua *UserAPI) Prepare() {
|
|||||||
|
|
||||||
ua.SelfRegistration = self
|
ua.SelfRegistration = self
|
||||||
|
|
||||||
if ua.Ctx.Input.IsPost() {
|
if !ua.SecurityCtx.IsAuthenticated() {
|
||||||
sessionUserID := ua.GetSession("userId")
|
if ua.Ctx.Input.IsPost() {
|
||||||
_, _, ok := ua.Ctx.Request.BasicAuth()
|
|
||||||
if sessionUserID == nil && !ok {
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
ua.HandleUnauthorized()
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
ua.currentUserID = ua.ValidateUser()
|
user, err := dao.GetUser(models.User{
|
||||||
|
Username: ua.SecurityCtx.GetUsername(),
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
ua.HandleInternalServerError(fmt.Sprintf("failed to get user %s: %v",
|
||||||
|
ua.SecurityCtx.GetUsername(), err))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
ua.currentUserID = user.UserID
|
||||||
id := ua.Ctx.Input.Param(":id")
|
id := ua.Ctx.Input.Param(":id")
|
||||||
if id == "current" {
|
if id == "current" {
|
||||||
ua.userID = ua.currentUserID
|
ua.userID = ua.currentUserID
|
||||||
@ -92,12 +101,7 @@ func (ua *UserAPI) Prepare() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ua.IsAdmin, err = dao.IsAdminRole(ua.currentUserID)
|
ua.IsAdmin = ua.SecurityCtx.IsSysAdmin()
|
||||||
if err != nil {
|
|
||||||
log.Errorf("Error occurred in IsAdminRole:%v", err)
|
|
||||||
ua.CustomAbort(http.StatusInternalServerError, "Internal error.")
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get ...
|
// Get ...
|
||||||
|
Loading…
Reference in New Issue
Block a user