This commit is contained in:
Frank Mayer 2025-01-05 07:35:12 +01:00
parent 0155bf8365
commit a49f79a06e
Signed by: tsukinoko-kun
GPG Key ID: 427B3E61E69C2E51
4 changed files with 134 additions and 4 deletions

View File

@ -1,5 +1,10 @@
package roast
import (
"os/exec"
"strings"
)
func (r *Roast) CurrentBranchName() (string, bool) {
head, err := r.repo.Head()
if err != nil {
@ -8,3 +13,17 @@ func (r *Roast) CurrentBranchName() (string, bool) {
return head.Name().Short(), true
}
var gitusername string
func GitUserName() string {
if len(gitusername) != 0 {
return gitusername
}
if out, err := exec.Command("git", "config", "user.name").Output(); err != nil {
return ""
} else {
gitusername = strings.TrimSpace(string(out))
return gitusername
}
}

View File

@ -4,6 +4,14 @@ import (
"errors"
"fmt"
"git-roast/internal/log"
"git-roast/internal/util"
"net/url"
"os"
"os/exec"
"path/filepath"
"time"
"github.com/go-git/go-git/v5"
)
func (r *Roast) Request(from string, into string) error {
@ -19,13 +27,58 @@ func (r *Roast) Request(from string, into string) error {
return errors.Join(fmt.Errorf("failed to get target branch %s", from), err)
}
id := fmt.Sprintf(
"from_%s_into_%s",
id := url.PathEscape(fmt.Sprintf(
"%016x_from_%s_into_%s",
time.Now().Unix(),
sourceBranch.Name,
targetBranch.Name,
)
))
fmt.Println(id)
initialMessage, err := util.Textedit(fmt.Sprintf(
"%s is requesting merge into `%s` from `%s`\n",
GitUserName(),
into,
from,
))
if err != nil {
return err
}
p := filepath.Join(r.dir, id)
if err := os.MkdirAll(p, 0700); err != nil {
return errors.Join(errors.New("failed to create directory for request"), err)
}
successful := false
defer func() {
if !successful {
clean := exec.Command("git", "clean", "-xfd")
clean.Path = r.dir
_ = clean.Run()
log.Printf("action not successful, rollback...\n")
reset := exec.Command("git", "reset", "--hard")
reset.Path = r.dir
_ = reset.Run()
}
}()
f, err := os.Create(filepath.Join(p, fmt.Sprintf(
"%016x_%s.md",
time.Now().Unix(),
GitUserName(),
)))
if err != nil {
return errors.Join(errors.New("failed to create file for request"), err)
}
if _, err := f.Write([]byte(initialMessage)); err != nil {
return errors.Join(errors.New("failed to write to file for request"), err)
}
if err := r.repo.Push(&git.PushOptions{Atomic: true}); err != nil {
return errors.Join(errors.New("failed to push request"), err)
}
successful = true
return nil
}

View File

@ -169,6 +169,12 @@ func Open() (*Roast, error) {
return nil, errors.Join(fmt.Errorf("failed to open roast repo %s", p), err)
}
pull := exec.Command("git", "pull", "--force")
pull.Dir = p
if err := pull.Run(); err != nil {
return nil, errors.Join(fmt.Errorf("failed to pull roast repo %s", p), err)
}
return &Roast{
repo: roastRepo,
dir: p,

52
internal/util/textedit.go Normal file
View File

@ -0,0 +1,52 @@
package util
import (
"context"
"errors"
"io"
"os"
"os/exec"
"strings"
"time"
)
func Textedit(text string) (string, error) {
f, err := os.CreateTemp("", "git-roast-*.md")
if err != nil {
return text, errors.Join(errors.New("failed to create initial message in request"), err)
}
fp := f.Name()
defer os.Remove(fp)
f.Close()
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Minute)
defer cancel()
if err := exec.CommandContext(ctx, editor(), fp).Run(); err != nil {
return text, errors.Join(errors.New("failed to run text editor"), err)
}
f, err = os.OpenFile(fp, os.O_RDONLY|os.O_SYNC, 0)
if err != nil {
return text, errors.Join(errors.New("failed to open temp file"), err)
}
defer f.Close()
newContent, err := io.ReadAll(f)
if err != nil {
return text, errors.Join(errors.New("failed to read from temp file"), err)
}
return string(newContent), nil
}
func editor() string {
if gitCoreEditor, err := exec.Command("git", "config", "--global", "core.editor").Output(); err == nil {
return strings.TrimSpace(string(gitCoreEditor))
}
if gitEditor, ok := os.LookupEnv("GIT_EDITOR"); ok {
return gitEditor
}
if editor, ok := os.LookupEnv("EDITOR"); ok {
return editor
}
return "vim"
}