agola/internal/services/gateway/command/project.go

187 lines
6.3 KiB
Go
Raw Normal View History

2019-02-21 16:58:25 +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 command
import (
"context"
"fmt"
"net/url"
2019-02-21 16:58:25 +00:00
"path"
csapi "github.com/sorintlab/agola/internal/services/configstore/api"
2019-02-21 16:58:25 +00:00
"github.com/sorintlab/agola/internal/services/types"
"github.com/sorintlab/agola/internal/util"
"github.com/pkg/errors"
)
type CreateProjectRequest struct {
CurrentUserID string
2019-02-21 16:58:25 +00:00
Name string
ParentID string
Visibility types.Visibility
2019-02-21 16:58:25 +00:00
RemoteSourceName string
RepoPath string
2019-02-21 16:58:25 +00:00
SkipSSHHostKeyCheck bool
}
func (c *CommandHandler) CreateProject(ctx context.Context, req *CreateProjectRequest) (*csapi.Project, error) {
2019-02-21 16:58:25 +00:00
if !util.ValidateName(req.Name) {
return nil, util.NewErrBadRequest(errors.Errorf("invalid project name %q", req.Name))
2019-02-21 16:58:25 +00:00
}
if req.RemoteSourceName == "" {
return nil, util.NewErrBadRequest(errors.Errorf("empty remote source name"))
}
if req.RepoPath == "" {
return nil, util.NewErrBadRequest(errors.Errorf("empty remote repo path"))
}
2019-02-21 16:58:25 +00:00
user, resp, err := c.configstoreClient.GetUser(ctx, req.CurrentUserID)
2019-02-21 16:58:25 +00:00
if err != nil {
return nil, ErrFromRemote(resp, errors.Wrapf(err, "failed to get user %q", req.CurrentUserID))
2019-02-21 16:58:25 +00:00
}
rs, resp, err := c.configstoreClient.GetRemoteSource(ctx, req.RemoteSourceName)
2019-02-21 16:58:25 +00:00
if err != nil {
return nil, ErrFromRemote(resp, errors.Wrapf(err, "failed to get remote source %q", req.RemoteSourceName))
2019-02-21 16:58:25 +00:00
}
c.log.Infof("rs: %s", util.Dump(rs))
var la *types.LinkedAccount
for _, v := range user.LinkedAccounts {
if v.RemoteSourceID == rs.ID {
la = v
break
}
}
c.log.Infof("la: %s", util.Dump(la))
if la == nil {
return nil, errors.Errorf("user doesn't have a linked account for remote source %q", rs.Name)
}
gitsource, err := c.GetGitSource(ctx, rs, user.Name, la)
if err != nil {
return nil, errors.Wrapf(err, "failed to create gitsource client")
}
repo, err := gitsource.GetRepoInfo(req.RepoPath)
if err != nil {
return nil, errors.Wrapf(err, "failed to get repository info from gitsource")
}
c.log.Infof("generating ssh key pairs")
privateKey, _, err := util.GenSSHKeyPair(4096)
if err != nil {
return nil, errors.Wrapf(err, "failed to generate ssh key pair")
}
parentID := req.ParentID
if parentID == "" {
// create project in current user namespace
parentID = path.Join("user", user.Name)
}
2019-02-21 16:58:25 +00:00
p := &types.Project{
Name: req.Name,
Parent: types.Parent{
Type: types.ConfigTypeProjectGroup,
ID: parentID,
},
Visibility: req.Visibility,
RemoteRepositoryConfigType: types.RemoteRepositoryConfigTypeRemoteSource,
RemoteSourceID: rs.ID,
LinkedAccountID: la.ID,
RepositoryID: repo.ID,
RepositoryPath: req.RepoPath,
SkipSSHHostKeyCheck: req.SkipSSHHostKeyCheck,
SSHPrivateKey: string(privateKey),
2019-02-21 16:58:25 +00:00
}
c.log.Infof("creating project")
rp, resp, err := c.configstoreClient.CreateProject(ctx, p)
2019-02-21 16:58:25 +00:00
if err != nil {
return nil, ErrFromRemote(resp, errors.Wrapf(err, "failed to create project"))
2019-02-21 16:58:25 +00:00
}
c.log.Infof("project %s created, ID: %s", p.Name, p.ID)
return rp, c.SetupProject(ctx, rs, user, la, rp)
2019-02-21 16:58:25 +00:00
}
func (c *CommandHandler) SetupProject(ctx context.Context, rs *types.RemoteSource, user *types.User, la *types.LinkedAccount, project *csapi.Project) error {
gitsource, err := c.GetGitSource(ctx, rs, user.Name, la)
if err != nil {
return errors.Wrapf(err, "failed to create gitsource client")
}
2019-02-21 16:58:25 +00:00
2019-04-11 15:11:17 +00:00
pubKey, err := util.ExtractPublicKey([]byte(project.SSHPrivateKey))
2019-02-21 16:58:25 +00:00
if err != nil {
return errors.Wrapf(err, "failed to extract public key")
2019-02-21 16:58:25 +00:00
}
webhookURL, err := url.Parse(fmt.Sprintf("%s/webhooks", c.apiExposedURL))
if err != nil {
return errors.Wrapf(err, "failed to generate webhook url")
}
q := url.Values{}
q.Add("projectid", project.ID)
q.Add("agolaid", c.agolaID)
webhookURL.RawQuery = q.Encode()
2019-02-21 16:58:25 +00:00
// generate deploy keys and webhooks containing the agola project id so we
// can have multiple projects referencing the same remote repository and this
// will trigger multiple different runs
2019-04-11 15:11:17 +00:00
deployKeyName := fmt.Sprintf("agola deploy key - %s", project.ID)
2019-02-21 16:58:25 +00:00
c.log.Infof("creating/updating deploy key: %s", string(pubKey))
2019-04-11 15:11:17 +00:00
if err := gitsource.UpdateDeployKey(project.RepositoryPath, deployKeyName, string(pubKey), true); err != nil {
2019-02-21 16:58:25 +00:00
return errors.Wrapf(err, "failed to create deploy key")
}
c.log.Infof("deleting existing webhooks")
if err := gitsource.DeleteRepoWebhook(project.RepositoryPath, webhookURL.String()); err != nil {
2019-02-21 16:58:25 +00:00
return errors.Wrapf(err, "failed to delete repository webhook")
}
c.log.Infof("creating webhook to url: %s", webhookURL)
if err := gitsource.CreateRepoWebhook(project.RepositoryPath, webhookURL.String(), ""); err != nil {
2019-02-21 16:58:25 +00:00
return errors.Wrapf(err, "failed to create repository webhook")
}
return nil
}
func (c *CommandHandler) ReconfigProject(ctx context.Context, projectRef string) error {
p, resp, err := c.configstoreClient.GetProject(ctx, projectRef)
2019-02-21 16:58:25 +00:00
if err != nil {
return ErrFromRemote(resp, errors.Wrapf(err, "failed to get project %q", projectRef))
2019-02-21 16:58:25 +00:00
}
user, resp, err := c.configstoreClient.GetUserByLinkedAccount(ctx, p.LinkedAccountID)
2019-02-21 16:58:25 +00:00
if err != nil {
return ErrFromRemote(resp, errors.Wrapf(err, "failed to get user with linked account id %q", p.LinkedAccountID))
2019-02-21 16:58:25 +00:00
}
la := user.LinkedAccounts[p.LinkedAccountID]
c.log.Infof("la: %s", util.Dump(la))
if la == nil {
return errors.Errorf("linked account %q in user %q doesn't exist", p.LinkedAccountID, user.Name)
2019-02-21 16:58:25 +00:00
}
rs, resp, err := c.configstoreClient.GetRemoteSource(ctx, la.RemoteSourceID)
2019-02-21 16:58:25 +00:00
if err != nil {
return ErrFromRemote(resp, errors.Wrapf(err, "failed to get remote source %q", la.RemoteSourceID))
2019-02-21 16:58:25 +00:00
}
2019-04-11 15:11:17 +00:00
// TODO(sgotti) update project repo path if the remote let us query by repository id
return c.SetupProject(ctx, rs, user, la, p)
2019-02-21 16:58:25 +00:00
}