mirror of
https://github.com/harness/drone.git
synced 2025-05-05 05:20:12 +08:00
99 lines
3.0 KiB
Go
99 lines
3.0 KiB
Go
// Copyright 2022 Harness Inc. All rights reserved.
|
|
// Use of this source code is governed by the Polyform Free Trial License
|
|
// that can be found in the LICENSE.md file for this repository.
|
|
|
|
package repo
|
|
|
|
import (
|
|
"context"
|
|
"encoding/base64"
|
|
"fmt"
|
|
|
|
"github.com/harness/gitness/gitrpc"
|
|
apiauth "github.com/harness/gitness/internal/api/auth"
|
|
"github.com/harness/gitness/internal/auth"
|
|
"github.com/harness/gitness/internal/bootstrap"
|
|
"github.com/harness/gitness/types/enum"
|
|
)
|
|
|
|
// CommitFileAction holds file operation data.
|
|
type CommitFileAction struct {
|
|
Action gitrpc.FileAction `json:"action"`
|
|
Path string `json:"path"`
|
|
Payload string `json:"payload"`
|
|
Encoding enum.ContentEncodingType `json:"encoding"`
|
|
SHA string `json:"sha"`
|
|
}
|
|
|
|
// CommitFilesOptions holds the data for file operations.
|
|
type CommitFilesOptions struct {
|
|
Title string `json:"title"`
|
|
Message string `json:"message"`
|
|
Branch string `json:"branch"`
|
|
NewBranch string `json:"new_branch"`
|
|
Actions []CommitFileAction `json:"actions"`
|
|
}
|
|
|
|
// CommitFilesResponse holds commit id.
|
|
type CommitFilesResponse struct {
|
|
CommitID string `json:"commit_id"`
|
|
}
|
|
|
|
func (c *Controller) CommitFiles(ctx context.Context, session *auth.Session,
|
|
repoRef string, in *CommitFilesOptions) (CommitFilesResponse, error) {
|
|
repo, err := c.repoStore.FindByRef(ctx, repoRef)
|
|
if err != nil {
|
|
return CommitFilesResponse{}, err
|
|
}
|
|
|
|
if err = apiauth.CheckRepo(ctx, c.authorizer, session, repo, enum.PermissionRepoPush, false); err != nil {
|
|
return CommitFilesResponse{}, err
|
|
}
|
|
|
|
actions := make([]gitrpc.CommitFileAction, len(in.Actions))
|
|
for i, action := range in.Actions {
|
|
var rawPayload []byte
|
|
switch action.Encoding {
|
|
case enum.ContentEncodingTypeBase64:
|
|
rawPayload, err = base64.StdEncoding.DecodeString(action.Payload)
|
|
if err != nil {
|
|
return CommitFilesResponse{}, fmt.Errorf("failed to decode base64 payload: %w", err)
|
|
}
|
|
case enum.ContentEncodingTypeUTF8:
|
|
fallthrough
|
|
default:
|
|
// by default we treat content as is
|
|
rawPayload = []byte(action.Payload)
|
|
}
|
|
|
|
actions[i] = gitrpc.CommitFileAction{
|
|
Action: action.Action,
|
|
Path: action.Path,
|
|
Payload: rawPayload,
|
|
SHA: action.SHA,
|
|
}
|
|
}
|
|
|
|
writeParams, err := CreateRPCWriteParams(ctx, c.urlProvider, session, repo)
|
|
if err != nil {
|
|
return CommitFilesResponse{}, fmt.Errorf("failed to create RPC write params: %w", err)
|
|
}
|
|
|
|
commit, err := c.gitRPCClient.CommitFiles(ctx, &gitrpc.CommitFilesParams{
|
|
WriteParams: writeParams,
|
|
Title: in.Title,
|
|
Message: in.Message,
|
|
Branch: in.Branch,
|
|
NewBranch: in.NewBranch,
|
|
Actions: actions,
|
|
Committer: rpcIdentityFromPrincipal(bootstrap.NewSystemServiceSession().Principal),
|
|
Author: rpcIdentityFromPrincipal(session.Principal),
|
|
})
|
|
if err != nil {
|
|
return CommitFilesResponse{}, err
|
|
}
|
|
return CommitFilesResponse{
|
|
CommitID: commit.CommitID,
|
|
}, nil
|
|
}
|