srpmproc/internal/directives/directives.go

54 lines
987 B
Go
Raw Normal View History

2020-12-20 10:40:27 +00:00
package directives
import (
"encoding/json"
srpmprocpb "git.rockylinux.org/release-engineering/public/srpmproc/pb"
2020-12-20 10:40:27 +00:00
"github.com/go-git/go-git/v5"
"log"
"os"
2020-12-20 10:40:27 +00:00
"path/filepath"
"strings"
)
func checkAddPrefix(file string) string {
if strings.HasPrefix(file, "SOURCES/") ||
strings.HasPrefix(file, "SPECS/") {
return file
}
return filepath.Join("SOURCES", file)
}
func Apply(cfg *srpmprocpb.Cfg, patchTree *git.Worktree, pushTree *git.Worktree) {
var errs []string
err := replace(cfg, patchTree, pushTree)
if err != nil {
errs = append(errs, err.Error())
}
err = del(cfg, patchTree, pushTree)
if err != nil {
errs = append(errs, err.Error())
}
err = add(cfg, patchTree, pushTree)
if err != nil {
errs = append(errs, err.Error())
}
err = patch(cfg, patchTree, pushTree)
if err != nil {
errs = append(errs, err.Error())
}
if len(errs) > 0 {
err := json.NewEncoder(os.Stdout).Encode(errs)
if err != nil {
log.Fatal(errs)
}
os.Exit(1)
}
2020-12-20 10:40:27 +00:00
}