267 lines
6.9 KiB
Go
267 lines
6.9 KiB
Go
// Copyright 2019 Sorint.lab
|
|
//
|
|
// 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 (
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
"net/url"
|
|
"path"
|
|
|
|
"agola.io/agola/internal/db"
|
|
"agola.io/agola/internal/services/configstore/action"
|
|
"agola.io/agola/internal/services/configstore/readdb"
|
|
"agola.io/agola/internal/util"
|
|
csapitypes "agola.io/agola/services/configstore/api/types"
|
|
"agola.io/agola/services/configstore/types"
|
|
|
|
"github.com/gorilla/mux"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func projectResponse(ctx context.Context, readDB *readdb.ReadDB, project *types.Project) (*csapitypes.Project, error) {
|
|
r, err := projectsResponse(ctx, readDB, []*types.Project{project})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return r[0], nil
|
|
}
|
|
|
|
func projectsResponse(ctx context.Context, readDB *readdb.ReadDB, projects []*types.Project) ([]*csapitypes.Project, error) {
|
|
resProjects := make([]*csapitypes.Project, len(projects))
|
|
|
|
err := readDB.Do(ctx, func(tx *db.Tx) error {
|
|
for i, project := range projects {
|
|
pp, err := readDB.GetPath(tx, project.Parent.Type, project.Parent.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
ownerType, ownerID, err := readDB.GetProjectOwnerID(tx, project)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// calculate global visibility
|
|
visibility, err := getGlobalVisibility(readDB, tx, project.Visibility, &project.Parent)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// we calculate the path here from parent path since the db could not yet be
|
|
// updated on create
|
|
resProjects[i] = &csapitypes.Project{
|
|
Project: project,
|
|
OwnerType: ownerType,
|
|
OwnerID: ownerID,
|
|
Path: path.Join(pp, project.Name),
|
|
ParentPath: pp,
|
|
GlobalVisibility: visibility,
|
|
}
|
|
}
|
|
|
|
return nil
|
|
})
|
|
|
|
return resProjects, err
|
|
}
|
|
|
|
func getGlobalVisibility(readDB *readdb.ReadDB, tx *db.Tx, curVisibility types.Visibility, parent *types.Parent) (types.Visibility, error) {
|
|
curParent := parent
|
|
if curVisibility == types.VisibilityPrivate {
|
|
return curVisibility, nil
|
|
}
|
|
|
|
for curParent.Type == types.ConfigTypeProjectGroup {
|
|
projectGroup, err := readDB.GetProjectGroupByID(tx, curParent.ID)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
if projectGroup.Visibility == types.VisibilityPrivate {
|
|
return types.VisibilityPrivate, nil
|
|
}
|
|
|
|
curParent = &projectGroup.Parent
|
|
}
|
|
|
|
// check parent visibility
|
|
if curParent.Type == types.ConfigTypeOrg {
|
|
org, err := readDB.GetOrg(tx, curParent.ID)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
if org.Visibility == types.VisibilityPrivate {
|
|
return types.VisibilityPrivate, nil
|
|
}
|
|
}
|
|
|
|
return curVisibility, nil
|
|
}
|
|
|
|
type ProjectHandler struct {
|
|
log *zap.SugaredLogger
|
|
ah *action.ActionHandler
|
|
readDB *readdb.ReadDB
|
|
}
|
|
|
|
func NewProjectHandler(logger *zap.Logger, ah *action.ActionHandler, readDB *readdb.ReadDB) *ProjectHandler {
|
|
return &ProjectHandler{log: logger.Sugar(), ah: ah, readDB: readDB}
|
|
}
|
|
|
|
func (h *ProjectHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
vars := mux.Vars(r)
|
|
projectRef, err := url.PathUnescape(vars["projectref"])
|
|
if err != nil {
|
|
util.HTTPError(w, util.NewAPIError(util.ErrBadRequest, err))
|
|
return
|
|
}
|
|
|
|
project, err := h.ah.GetProject(ctx, projectRef)
|
|
if util.HTTPError(w, err) {
|
|
h.log.Errorf("err: %+v", err)
|
|
return
|
|
}
|
|
|
|
resProject, err := projectResponse(ctx, h.readDB, project)
|
|
if util.HTTPError(w, err) {
|
|
h.log.Errorf("err: %+v", err)
|
|
return
|
|
}
|
|
|
|
if err := util.HTTPResponse(w, http.StatusOK, resProject); err != nil {
|
|
h.log.Errorf("err: %+v", err)
|
|
}
|
|
}
|
|
|
|
type CreateProjectHandler struct {
|
|
log *zap.SugaredLogger
|
|
ah *action.ActionHandler
|
|
readDB *readdb.ReadDB
|
|
}
|
|
|
|
func NewCreateProjectHandler(logger *zap.Logger, ah *action.ActionHandler, readDB *readdb.ReadDB) *CreateProjectHandler {
|
|
return &CreateProjectHandler{log: logger.Sugar(), ah: ah, readDB: readDB}
|
|
}
|
|
|
|
func (h *CreateProjectHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
var req types.Project
|
|
d := json.NewDecoder(r.Body)
|
|
if err := d.Decode(&req); err != nil {
|
|
util.HTTPError(w, util.NewAPIError(util.ErrBadRequest, err))
|
|
return
|
|
}
|
|
|
|
project, err := h.ah.CreateProject(ctx, &req)
|
|
if util.HTTPError(w, err) {
|
|
h.log.Errorf("err: %+v", err)
|
|
return
|
|
}
|
|
|
|
resProject, err := projectResponse(ctx, h.readDB, project)
|
|
if util.HTTPError(w, err) {
|
|
h.log.Errorf("err: %+v", err)
|
|
return
|
|
}
|
|
|
|
if err := util.HTTPResponse(w, http.StatusCreated, resProject); err != nil {
|
|
h.log.Errorf("err: %+v", err)
|
|
}
|
|
}
|
|
|
|
type UpdateProjectHandler struct {
|
|
log *zap.SugaredLogger
|
|
ah *action.ActionHandler
|
|
readDB *readdb.ReadDB
|
|
}
|
|
|
|
func NewUpdateProjectHandler(logger *zap.Logger, ah *action.ActionHandler, readDB *readdb.ReadDB) *UpdateProjectHandler {
|
|
return &UpdateProjectHandler{log: logger.Sugar(), ah: ah, readDB: readDB}
|
|
}
|
|
|
|
func (h *UpdateProjectHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
projectRef, err := url.PathUnescape(vars["projectref"])
|
|
if err != nil {
|
|
util.HTTPError(w, util.NewAPIError(util.ErrBadRequest, err))
|
|
return
|
|
}
|
|
|
|
var project *types.Project
|
|
d := json.NewDecoder(r.Body)
|
|
if err := d.Decode(&project); err != nil {
|
|
util.HTTPError(w, util.NewAPIError(util.ErrBadRequest, err))
|
|
return
|
|
}
|
|
|
|
areq := &action.UpdateProjectRequest{
|
|
ProjectRef: projectRef,
|
|
Project: project,
|
|
}
|
|
project, err = h.ah.UpdateProject(ctx, areq)
|
|
if util.HTTPError(w, err) {
|
|
h.log.Errorf("err: %+v", err)
|
|
return
|
|
}
|
|
|
|
resProject, err := projectResponse(ctx, h.readDB, project)
|
|
if util.HTTPError(w, err) {
|
|
h.log.Errorf("err: %+v", err)
|
|
return
|
|
}
|
|
|
|
if err := util.HTTPResponse(w, http.StatusCreated, resProject); err != nil {
|
|
h.log.Errorf("err: %+v", err)
|
|
}
|
|
}
|
|
|
|
type DeleteProjectHandler struct {
|
|
log *zap.SugaredLogger
|
|
ah *action.ActionHandler
|
|
}
|
|
|
|
func NewDeleteProjectHandler(logger *zap.Logger, ah *action.ActionHandler) *DeleteProjectHandler {
|
|
return &DeleteProjectHandler{log: logger.Sugar(), ah: ah}
|
|
}
|
|
|
|
func (h *DeleteProjectHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
vars := mux.Vars(r)
|
|
projectRef, err := url.PathUnescape(vars["projectref"])
|
|
if err != nil {
|
|
util.HTTPError(w, util.NewAPIError(util.ErrBadRequest, err))
|
|
return
|
|
}
|
|
|
|
err = h.ah.DeleteProject(ctx, projectRef)
|
|
if util.HTTPError(w, err) {
|
|
h.log.Errorf("err: %+v", err)
|
|
}
|
|
if err := util.HTTPResponse(w, http.StatusNoContent, nil); err != nil {
|
|
h.log.Errorf("err: %+v", err)
|
|
}
|
|
}
|
|
|
|
const (
|
|
DefaultProjectsLimit = 10
|
|
MaxProjectsLimit = 20
|
|
)
|