mirror of https://github.com/harness/drone.git
108 lines
2.9 KiB
Go
108 lines
2.9 KiB
Go
// Copyright 2023 Harness, Inc.
|
|
//
|
|
// 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 controller
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/harness/gitness/app/auth"
|
|
"github.com/harness/gitness/app/githook"
|
|
"github.com/harness/gitness/app/url"
|
|
"github.com/harness/gitness/gitrpc"
|
|
"github.com/harness/gitness/types"
|
|
)
|
|
|
|
// TODO: this file should be in gitrpc package and should accept
|
|
// params as interface (contract)
|
|
|
|
// CreateRPCWriteParams creates base write parameters for gitrpc write operations.
|
|
// IMPORTANT: session & repo are assumed to be not nil!
|
|
// TODO: this is duplicate function from repo controller, we need to see where this
|
|
// function will be best fit.
|
|
func CreateRPCWriteParams(ctx context.Context, urlProvider url.Provider,
|
|
session *auth.Session, repo *types.Repository) (gitrpc.WriteParams, error) {
|
|
// generate envars (add everything githook CLI needs for execution)
|
|
envVars, err := githook.GenerateEnvironmentVariables(
|
|
ctx,
|
|
urlProvider.GetAPIBaseURLInternal(),
|
|
repo.ID,
|
|
session.Principal.ID,
|
|
false,
|
|
)
|
|
if err != nil {
|
|
return gitrpc.WriteParams{}, fmt.Errorf("failed to generate git hook environment variables: %w", err)
|
|
}
|
|
|
|
return gitrpc.WriteParams{
|
|
Actor: gitrpc.Identity{
|
|
Name: session.Principal.DisplayName,
|
|
Email: session.Principal.Email,
|
|
},
|
|
RepoUID: repo.GitUID,
|
|
EnvVars: envVars,
|
|
}, nil
|
|
}
|
|
|
|
func MapCommit(c *gitrpc.Commit) (*types.Commit, error) {
|
|
if c == nil {
|
|
return nil, fmt.Errorf("commit is nil")
|
|
}
|
|
|
|
author, err := MapSignature(&c.Author)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to map author: %w", err)
|
|
}
|
|
|
|
committer, err := MapSignature(&c.Committer)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to map committer: %w", err)
|
|
}
|
|
|
|
return &types.Commit{
|
|
SHA: c.SHA,
|
|
Title: c.Title,
|
|
Message: c.Message,
|
|
Author: *author,
|
|
Committer: *committer,
|
|
}, nil
|
|
}
|
|
|
|
func MapRenameDetails(c *gitrpc.RenameDetails) *types.RenameDetails {
|
|
if c == nil {
|
|
return nil
|
|
}
|
|
return &types.RenameDetails{
|
|
OldPath: c.OldPath,
|
|
NewPath: c.NewPath,
|
|
CommitShaBefore: c.CommitShaBefore,
|
|
CommitShaAfter: c.CommitShaAfter,
|
|
}
|
|
}
|
|
|
|
func MapSignature(s *gitrpc.Signature) (*types.Signature, error) {
|
|
if s == nil {
|
|
return nil, fmt.Errorf("signature is nil")
|
|
}
|
|
|
|
return &types.Signature{
|
|
Identity: types.Identity{
|
|
Name: s.Identity.Name,
|
|
Email: s.Identity.Email,
|
|
},
|
|
When: s.When,
|
|
}, nil
|
|
}
|