2019-03-14 13:36:18 +00:00
|
|
|
// 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 readdb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/sorintlab/agola/internal/db"
|
|
|
|
"github.com/sorintlab/agola/internal/services/types"
|
|
|
|
"github.com/sorintlab/agola/internal/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (r *ReadDB) ResolveConfigID(tx *db.Tx, configType types.ConfigType, ref string) (string, error) {
|
|
|
|
switch configType {
|
|
|
|
case types.ConfigTypeProjectGroup:
|
|
|
|
group, err := r.GetProjectGroup(tx, ref)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if group == nil {
|
|
|
|
return "", util.NewErrBadRequest(errors.Errorf("group with ref %q doesn't exists", ref))
|
|
|
|
}
|
|
|
|
return group.ID, nil
|
|
|
|
|
|
|
|
case types.ConfigTypeProject:
|
|
|
|
project, err := r.GetProject(tx, ref)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if project == nil {
|
|
|
|
return "", util.NewErrBadRequest(errors.Errorf("project with ref %q doesn't exists", ref))
|
|
|
|
}
|
|
|
|
return project.ID, nil
|
|
|
|
|
|
|
|
default:
|
|
|
|
return "", util.NewErrBadRequest(errors.Errorf("unknown config type %q", configType))
|
|
|
|
}
|
|
|
|
}
|
2019-03-14 13:36:18 +00:00
|
|
|
|
|
|
|
func (r *ReadDB) GetParentPath(tx *db.Tx, parentType types.ConfigType, parentID string) (string, error) {
|
|
|
|
var p string
|
|
|
|
switch parentType {
|
|
|
|
case types.ConfigTypeProjectGroup:
|
|
|
|
projectGroup, err := r.GetProjectGroup(tx, parentID)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if projectGroup == nil {
|
|
|
|
return "", errors.Errorf("projectgroup with id %q doesn't exist", parentID)
|
|
|
|
}
|
|
|
|
p, err = r.GetProjectGroupPath(tx, projectGroup)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
case types.ConfigTypeProject:
|
|
|
|
project, err := r.GetProject(tx, parentID)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
if project == nil {
|
|
|
|
return "", errors.Errorf("project with id %q doesn't exist", parentID)
|
|
|
|
}
|
|
|
|
p, err = r.GetProjectPath(tx, project)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return p, nil
|
|
|
|
}
|