mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-16 23:35:20 +01:00
7873a0312a
1. Update the nginx.conf 2. Update Makefile 3. Update docker-compose 4. Update image name 5. Rename folder ui to core 6. Change the harbor-ui's package name to core 7. Remove unused static file on harbor-core 8. Remove unused code for harbor-portal Signed-off-by: Qian Deng <dengq@vmware.com>
117 lines
3.5 KiB
Go
117 lines
3.5 KiB
Go
// Copyright (c) 2017 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 api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/goharbor/harbor/src/common/api"
|
|
"github.com/goharbor/harbor/src/common/security"
|
|
"github.com/goharbor/harbor/src/common/utils/log"
|
|
"github.com/goharbor/harbor/src/core/config"
|
|
"github.com/goharbor/harbor/src/core/filter"
|
|
"github.com/goharbor/harbor/src/core/promgr"
|
|
"github.com/goharbor/harbor/src/core/utils"
|
|
)
|
|
|
|
// BaseController ...
|
|
type BaseController struct {
|
|
api.BaseAPI
|
|
// SecurityCtx is the security context used to authN &authZ
|
|
SecurityCtx security.Context
|
|
// ProjectMgr is the project manager which abstracts the operations
|
|
// related to projects
|
|
ProjectMgr promgr.ProjectManager
|
|
}
|
|
|
|
const (
|
|
// ReplicationJobType ...
|
|
ReplicationJobType = "replication"
|
|
// ScanJobType ...
|
|
ScanJobType = "scan"
|
|
)
|
|
|
|
// Prepare inits security context and project manager from request
|
|
// context
|
|
func (b *BaseController) Prepare() {
|
|
ctx, err := filter.GetSecurityContext(b.Ctx.Request)
|
|
if err != nil {
|
|
log.Errorf("failed to get security context: %v", err)
|
|
b.CustomAbort(http.StatusInternalServerError, "")
|
|
}
|
|
b.SecurityCtx = ctx
|
|
|
|
pm, err := filter.GetProjectManager(b.Ctx.Request)
|
|
if err != nil {
|
|
log.Errorf("failed to get project manager: %v", err)
|
|
b.CustomAbort(http.StatusInternalServerError, "")
|
|
}
|
|
b.ProjectMgr = pm
|
|
}
|
|
|
|
// RenderFormatedError renders errors with well formted style `{"error": "This is an error"}`
|
|
func (b *BaseController) RenderFormatedError(code int, err error) {
|
|
formatedErr := utils.WrapError(err)
|
|
log.Errorf("%s %s failed with error: %s", b.Ctx.Request.Method, b.Ctx.Request.URL.String(), formatedErr.Error())
|
|
b.RenderError(code, formatedErr.Error())
|
|
}
|
|
|
|
// SendUnAuthorizedError sends unauthorized error to the client.
|
|
func (b *BaseController) SendUnAuthorizedError(err error) {
|
|
b.RenderFormatedError(http.StatusUnauthorized, err)
|
|
}
|
|
|
|
// SendConflictError sends conflict error to the client.
|
|
func (b *BaseController) SendConflictError(err error) {
|
|
b.RenderFormatedError(http.StatusConflict, err)
|
|
}
|
|
|
|
// SendNotFoundError sends not found error to the client.
|
|
func (b *BaseController) SendNotFoundError(err error) {
|
|
b.RenderFormatedError(http.StatusNotFound, err)
|
|
}
|
|
|
|
// SendBadRequestError sends bad request error to the client.
|
|
func (b *BaseController) SendBadRequestError(err error) {
|
|
b.RenderFormatedError(http.StatusBadRequest, err)
|
|
}
|
|
|
|
// SendInternalServerError sends internal server error to the client.
|
|
func (b *BaseController) SendInternalServerError(err error) {
|
|
b.RenderFormatedError(http.StatusInternalServerError, err)
|
|
}
|
|
|
|
// SendForbiddenError sends forbidden error to the client.
|
|
func (b *BaseController) SendForbiddenError(err error) {
|
|
b.RenderFormatedError(http.StatusForbidden, err)
|
|
}
|
|
|
|
// Init related objects/configurations for the API controllers
|
|
func Init() error {
|
|
// If chart repository is not enabled then directly return
|
|
if !config.WithChartMuseum() {
|
|
return nil
|
|
}
|
|
|
|
chartCtl, err := initializeChartController()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
chartController = chartCtl
|
|
|
|
return nil
|
|
}
|