2019-04-08 09:35:45 +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.
|
|
|
|
|
2019-05-03 21:48:49 +00:00
|
|
|
package action
|
2019-04-08 09:35:45 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/sorintlab/agola/internal/services/types"
|
|
|
|
"github.com/sorintlab/agola/internal/util"
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
2019-05-05 12:36:14 +00:00
|
|
|
func (h *ActionHandler) GetOrg(ctx context.Context, orgRef string) (*types.Organization, error) {
|
|
|
|
org, resp, err := h.configstoreClient.GetOrg(ctx, orgRef)
|
|
|
|
if err != nil {
|
|
|
|
return nil, ErrFromRemote(resp, err)
|
|
|
|
}
|
|
|
|
return org, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetOrgsRequest struct {
|
|
|
|
Start string
|
|
|
|
Limit int
|
|
|
|
Asc bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *ActionHandler) GetOrgs(ctx context.Context, req *GetOrgsRequest) ([]*types.Organization, error) {
|
|
|
|
orgs, resp, err := h.configstoreClient.GetOrgs(ctx, req.Start, req.Limit, req.Asc)
|
|
|
|
if err != nil {
|
|
|
|
return nil, ErrFromRemote(resp, err)
|
|
|
|
}
|
|
|
|
return orgs, nil
|
|
|
|
}
|
|
|
|
|
2019-04-08 09:35:45 +00:00
|
|
|
type CreateOrgRequest struct {
|
|
|
|
Name string
|
2019-05-03 12:24:18 +00:00
|
|
|
|
|
|
|
CreatorUserID string
|
2019-04-08 09:35:45 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 21:48:49 +00:00
|
|
|
func (h *ActionHandler) CreateOrg(ctx context.Context, req *CreateOrgRequest) (*types.Organization, error) {
|
2019-05-03 21:19:23 +00:00
|
|
|
if !h.IsUserLoggedOrAdmin(ctx) {
|
|
|
|
return nil, errors.Errorf("user not logged in")
|
|
|
|
}
|
|
|
|
|
2019-04-08 09:35:45 +00:00
|
|
|
if req.Name == "" {
|
|
|
|
return nil, util.NewErrBadRequest(errors.Errorf("organization name required"))
|
|
|
|
}
|
|
|
|
if !util.ValidateName(req.Name) {
|
2019-04-08 10:08:31 +00:00
|
|
|
return nil, util.NewErrBadRequest(errors.Errorf("invalid organization name %q", req.Name))
|
2019-04-08 09:35:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
org := &types.Organization{
|
|
|
|
Name: req.Name,
|
|
|
|
}
|
2019-05-03 12:24:18 +00:00
|
|
|
if req.CreatorUserID != "" {
|
|
|
|
org.CreatorUserID = req.CreatorUserID
|
|
|
|
}
|
2019-04-08 09:35:45 +00:00
|
|
|
|
2019-05-03 21:48:49 +00:00
|
|
|
h.log.Infof("creating organization")
|
|
|
|
org, resp, err := h.configstoreClient.CreateOrg(ctx, org)
|
2019-04-08 09:35:45 +00:00
|
|
|
if err != nil {
|
2019-04-09 12:53:00 +00:00
|
|
|
return nil, ErrFromRemote(resp, errors.Wrapf(err, "failed to create organization"))
|
2019-04-08 09:35:45 +00:00
|
|
|
}
|
2019-05-03 21:48:49 +00:00
|
|
|
h.log.Infof("organization %s created, ID: %s", org.Name, org.ID)
|
2019-04-08 09:35:45 +00:00
|
|
|
|
|
|
|
return org, nil
|
|
|
|
}
|
2019-05-05 12:36:14 +00:00
|
|
|
|
|
|
|
func (h *ActionHandler) DeleteOrg(ctx context.Context, orgRef string) error {
|
2019-05-03 21:19:23 +00:00
|
|
|
org, resp, err := h.configstoreClient.GetOrg(ctx, orgRef)
|
|
|
|
if err != nil {
|
|
|
|
return ErrFromRemote(resp, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
isOrgOwner, err := h.IsOrgOwner(ctx, org.ID)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrapf(err, "failed to determine ownership")
|
|
|
|
}
|
|
|
|
if !isOrgOwner {
|
|
|
|
return util.NewErrForbidden(errors.Errorf("user not authorized"))
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err = h.configstoreClient.DeleteOrg(ctx, orgRef)
|
2019-05-05 12:36:14 +00:00
|
|
|
if err != nil {
|
|
|
|
return ErrFromRemote(resp, errors.Wrapf(err, "failed to delete org"))
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|