mirror of
https://github.com/goharbor/harbor.git
synced 2024-10-31 23:59:32 +01:00
103 lines
2.8 KiB
Go
103 lines
2.8 KiB
Go
/*
|
|
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package controllers
|
|
|
|
import (
|
|
"net/http"
|
|
"net/url"
|
|
"os"
|
|
|
|
"github.com/vmware/harbor/dao"
|
|
"github.com/vmware/harbor/utils/log"
|
|
)
|
|
|
|
// ItemDetailController handles requet to /registry/detail, which shows the detail of a project.
|
|
type ItemDetailController struct {
|
|
BaseController
|
|
}
|
|
|
|
// Get will check if user has permission to view a certain project, if not user will be redirected to signin or his homepage.
|
|
// If the check is passed it renders the project detail page.
|
|
func (idc *ItemDetailController) Get() {
|
|
|
|
projectID, _ := idc.GetInt64("project_id")
|
|
|
|
if projectID <= 0 {
|
|
log.Errorf("Invalid project id: %d", projectID)
|
|
idc.Redirect("/signIn", http.StatusFound)
|
|
return
|
|
}
|
|
|
|
project, err := dao.GetProjectByID(projectID)
|
|
|
|
if err != nil {
|
|
log.Errorf("Error occurred in GetProjectById: %v", err)
|
|
idc.CustomAbort(http.StatusInternalServerError, "Internal error.")
|
|
}
|
|
|
|
if project == nil {
|
|
idc.Redirect("/signIn", http.StatusFound)
|
|
return
|
|
}
|
|
|
|
sessionUserID := idc.GetSession("userId")
|
|
|
|
if project.Public != 1 && sessionUserID == nil {
|
|
idc.Redirect("/signIn?uri="+url.QueryEscape(idc.Ctx.Input.URI()), http.StatusFound)
|
|
return
|
|
}
|
|
|
|
if sessionUserID != nil {
|
|
|
|
userID := sessionUserID.(int)
|
|
|
|
idc.Data["Username"] = idc.GetSession("username")
|
|
idc.Data["UserId"] = userID
|
|
|
|
roleList, err := dao.GetUserProjectRoles(userID, projectID)
|
|
if err != nil {
|
|
log.Errorf("Error occurred in GetUserProjectRoles: %v", err)
|
|
idc.CustomAbort(http.StatusInternalServerError, "Internal error.")
|
|
}
|
|
|
|
isAdmin, err := dao.IsAdminRole(userID)
|
|
if err != nil {
|
|
log.Errorf("Error occurred in IsAdminRole: %v", 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 {
|
|
idc.Data["RoleId"] = roleList[0].RoleID
|
|
}
|
|
}
|
|
|
|
idc.Data["ProjectId"] = project.ProjectID
|
|
idc.Data["ProjectName"] = project.Name
|
|
idc.Data["OwnerName"] = project.OwnerName
|
|
idc.Data["OwnerId"] = project.OwnerID
|
|
|
|
idc.Data["HarborRegUrl"] = os.Getenv("HARBOR_REG_URL")
|
|
idc.Data["RepoName"] = idc.GetString("repo_name")
|
|
|
|
idc.ForwardTo("page_title_item_details", "item-detail")
|
|
|
|
}
|