2017-05-09 18:18:23 +08:00
|
|
|
// 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"
|
|
|
|
|
|
2018-09-19 14:45:52 +08:00
|
|
|
yaml "github.com/ghodss/yaml"
|
2018-08-23 15:02:20 +08:00
|
|
|
"github.com/goharbor/harbor/src/common/api"
|
|
|
|
|
"github.com/goharbor/harbor/src/common/security"
|
|
|
|
|
"github.com/goharbor/harbor/src/common/utils/log"
|
2018-09-12 14:38:29 +08:00
|
|
|
"github.com/goharbor/harbor/src/core/config"
|
|
|
|
|
"github.com/goharbor/harbor/src/core/promgr"
|
|
|
|
|
"github.com/goharbor/harbor/src/core/utils"
|
2017-05-09 18:18:23 +08:00
|
|
|
)
|
|
|
|
|
|
2018-09-19 14:45:52 +08:00
|
|
|
const (
|
|
|
|
|
yamlFileContentType = "application/x-yaml"
|
|
|
|
|
)
|
|
|
|
|
|
2017-05-09 18:18:23 +08:00
|
|
|
// BaseController ...
|
|
|
|
|
type BaseController struct {
|
|
|
|
|
api.BaseAPI
|
2017-05-11 17:02:01 +08:00
|
|
|
// SecurityCtx is the security context used to authN &authZ
|
|
|
|
|
SecurityCtx security.Context
|
|
|
|
|
// ProjectMgr is the project manager which abstracts the operations
|
2017-05-09 18:18:23 +08:00
|
|
|
// related to projects
|
2017-09-26 16:41:08 +08:00
|
|
|
ProjectMgr promgr.ProjectManager
|
2017-05-09 18:18:23 +08:00
|
|
|
}
|
|
|
|
|
|
2017-07-20 19:18:29 +08:00
|
|
|
const (
|
2018-09-05 16:16:31 +08:00
|
|
|
// ReplicationJobType ...
|
2017-07-20 19:18:29 +08:00
|
|
|
ReplicationJobType = "replication"
|
2018-09-05 16:16:31 +08:00
|
|
|
// ScanJobType ...
|
2017-07-20 19:18:29 +08:00
|
|
|
ScanJobType = "scan"
|
|
|
|
|
)
|
|
|
|
|
|
2017-05-11 16:45:24 +08:00
|
|
|
// Prepare inits security context and project manager from request
|
2017-05-09 18:18:23 +08:00
|
|
|
// context
|
|
|
|
|
func (b *BaseController) Prepare() {
|
2018-09-20 17:51:27 +08:00
|
|
|
/*ctx, err := filter.GetSecurityContext(b.Ctx.Request)
|
2017-05-11 16:45:24 +08:00
|
|
|
if err != nil {
|
2017-06-18 13:51:42 +08:00
|
|
|
log.Errorf("failed to get security context: %v", err)
|
2017-05-09 18:18:23 +08:00
|
|
|
b.CustomAbort(http.StatusInternalServerError, "")
|
|
|
|
|
}
|
2017-05-11 16:45:24 +08:00
|
|
|
b.SecurityCtx = ctx
|
2017-05-09 18:18:23 +08:00
|
|
|
|
2017-05-11 16:45:24 +08:00
|
|
|
pm, err := filter.GetProjectManager(b.Ctx.Request)
|
|
|
|
|
if err != nil {
|
2017-06-18 13:51:42 +08:00
|
|
|
log.Errorf("failed to get project manager: %v", err)
|
2017-05-09 18:18:23 +08:00
|
|
|
b.CustomAbort(http.StatusInternalServerError, "")
|
|
|
|
|
}
|
2018-09-20 17:51:27 +08:00
|
|
|
b.ProjectMgr = pm*/
|
2017-05-09 18:18:23 +08:00
|
|
|
}
|
2018-07-19 23:50:25 +08:00
|
|
|
|
2018-09-13 15:06:15 +08:00
|
|
|
// 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)
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-19 14:45:52 +08:00
|
|
|
// WriteJSONData writes the JSON data to the client.
|
|
|
|
|
func (b *BaseController) WriteJSONData(object interface{}) {
|
|
|
|
|
b.Data["json"] = object
|
|
|
|
|
b.ServeJSON()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// WriteYamlData writes the yaml data to the client.
|
|
|
|
|
func (b *BaseController) WriteYamlData(object interface{}) {
|
|
|
|
|
yData, err := yaml.Marshal(object)
|
|
|
|
|
if err != nil {
|
|
|
|
|
b.SendInternalServerError(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
w := b.Ctx.ResponseWriter
|
|
|
|
|
w.Header().Set("Content-Type", yamlFileContentType)
|
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
|
w.Write(yData)
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-05 16:16:31 +08:00
|
|
|
// Init related objects/configurations for the API controllers
|
2018-07-19 23:50:25 +08:00
|
|
|
func Init() error {
|
2018-09-05 16:16:31 +08:00
|
|
|
// If chart repository is not enabled then directly return
|
2018-07-19 23:50:25 +08:00
|
|
|
if !config.WithChartMuseum() {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
chartCtl, err := initializeChartController()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
chartController = chartCtl
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|