drone/internal/api/controller/repo/commit.go
Enver Bisevac ad619c7e3c [feat]ability to commit files using REST api (#82)
* initial work on commit files

* minor improvements, grpc server interceptors and more

* compare file old sha and current sha

* added some validation steps

* config immutable, introduce temp repos dir

* handler added to standalone

* fix CI linter, fix minor bug on update

* wire generator files
2022-11-22 19:24:40 +01:00

80 lines
2.3 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"
"github.com/harness/gitness/gitrpc"
apiauth "github.com/harness/gitness/internal/api/auth"
"github.com/harness/gitness/internal/auth"
"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 string `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:"newBranch"`
Actions []CommitFileAction `json:"actions"`
}
// CommitFilesResponse holds commit id.
type CommitFilesResponse struct {
CommitID string `json:"commitID"`
}
func (c *Controller) CommitFiles(ctx context.Context, session *auth.Session,
repoRef string, in *CommitFilesOptions) (CommitFilesResponse, error) {
repo, err := c.repoStore.FindRepoFromRef(ctx, repoRef)
if err != nil {
return CommitFilesResponse{}, err
}
if err = apiauth.CheckRepo(ctx, c.authorizer, session, repo, enum.PermissionRepoEdit, false); err != nil {
return CommitFilesResponse{}, err
}
actions := make([]gitrpc.CommitFileAction, len(in.Actions))
for i, action := range in.Actions {
actions[i] = gitrpc.CommitFileAction{
Action: action.Action,
Path: action.Path,
Payload: []byte(action.Payload),
Encoding: action.Encoding,
SHA: action.SHA,
}
}
commit, err := c.gitRPCClient.CommitFiles(ctx, &gitrpc.CommitFilesOptions{
RepoID: repo.GitUID,
Title: in.Title,
Message: in.Message,
Branch: in.Branch,
NewBranch: in.NewBranch,
Author: gitrpc.Identity{
Name: session.Principal.DisplayName,
Email: session.Principal.Email,
},
Actions: actions,
})
if err != nil {
return CommitFilesResponse{}, err
}
return CommitFilesResponse{
CommitID: commit.CommitID,
}, nil
}