mirror of
https://github.com/goharbor/harbor.git
synced 2025-01-03 14:37:44 +01:00
fixed visiting project details for a admin user.
This commit is contained in:
parent
3b71580986
commit
61240f9144
@ -64,6 +64,8 @@ func (idc *ItemDetailController) Get() {
|
||||
|
||||
if sessionUserID != nil {
|
||||
|
||||
userId := sessionUserID.(int)
|
||||
|
||||
idc.Data["Username"] = idc.GetSession("username")
|
||||
idc.Data["UserId"] = sessionUserID.(int)
|
||||
|
||||
@ -73,12 +75,20 @@ func (idc *ItemDetailController) Get() {
|
||||
idc.CustomAbort(http.StatusInternalServerError, "Internal error.")
|
||||
}
|
||||
|
||||
if project.Public == 0 && len(roleList) == 0 {
|
||||
isAdmin, err := dao.IsAdminRole(userId)
|
||||
if err != nil {
|
||||
beego.Error("Error occurred in IsAdminRole:", err)
|
||||
idc.CustomAbort(http.StatusInternalServerError, "Internal error.")
|
||||
}
|
||||
|
||||
if !isAdmin && (project.Public == 0 && len(roleList) == 0) {
|
||||
idc.Redirect("/registry/project", http.StatusFound)
|
||||
return
|
||||
}
|
||||
|
||||
if len(roleList) > 0 {
|
||||
if isAdmin {
|
||||
idc.Data["RoleId"] = models.SYSADMIN
|
||||
} else if len(roleList) > 0 {
|
||||
idc.Data["RoleId"] = roleList[0].RoleID
|
||||
}
|
||||
}
|
||||
|
@ -152,7 +152,7 @@ jQuery(function(){
|
||||
url: "/api/projects/" + $("#projectId").val() + "/members/current",
|
||||
type: "get",
|
||||
success: function(data, status, xhr){
|
||||
if(xhr && xhr.status == 200 && data.roles.length > 0){
|
||||
if(xhr && xhr.status == 200 && data.roles != null && data.roles.length > 0){
|
||||
hasAuthorization = true;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user