autogits/prjgit-updater/main.go

365 lines
11 KiB
Go
Raw Normal View History

2024-07-07 21:08:41 +02:00
package main
import (
2024-08-26 17:07:52 +02:00
"flag"
2024-07-07 21:08:41 +02:00
"fmt"
2024-08-26 17:07:52 +02:00
"log"
2024-08-28 12:39:32 +02:00
"math/rand"
2024-07-07 21:08:41 +02:00
"os"
"path/filepath"
2024-08-28 00:45:47 +02:00
"slices"
2024-08-28 12:39:32 +02:00
"time"
2024-07-07 21:08:41 +02:00
"src.opensuse.org/autogits/common"
)
2024-09-04 14:04:13 +02:00
const AppName = "direct_workflow"
const GitAuthor = "AutoGits prjgit-updater"
const GitEmail = "adam+autogits-direct@zombino.com"
var configuredRepos map[string][]*common.AutogitConfig
2024-08-30 17:05:57 +02:00
var gitea *common.GiteaTransport
2024-08-28 00:45:47 +02:00
2024-08-30 16:37:51 +02:00
func isConfiguredOrg(org *common.Organization) bool {
_, found := configuredRepos[org.Username]
return found
}
2024-09-04 14:04:13 +02:00
func concatenateErrors(err1, err2 error) error {
if err1 == nil {
return err2
}
if err2 == nil {
return err1
}
return fmt.Errorf("%w\n%w", err1, err2)
}
2024-07-08 17:14:18 +02:00
func processRepositoryAction(h *common.RequestHandler) error {
2024-08-28 00:45:47 +02:00
action := h.Request.Data.(*common.RepositoryWebhookEvent)
2024-09-04 14:04:13 +02:00
configs, configFound := configuredRepos[action.Organization.Username]
2024-07-07 21:08:41 +02:00
2024-08-30 16:37:51 +02:00
if !configFound {
2024-09-04 14:04:13 +02:00
h.StdLogger.Printf("Repository event for %s. Not configured. Ignoring.\n", action.Organization.Username)
2024-07-08 17:14:18 +02:00
return nil
2024-07-07 21:08:41 +02:00
}
2024-09-04 14:04:13 +02:00
log.Println("num configs found:", len(configs))
var err error
for _, config := range configs {
err = concatenateErrors(err, processConfiguredRepositoryAction(h, action, config))
}
return err
}
func processConfiguredRepositoryAction(h *common.RequestHandler, action *common.RepositoryWebhookEvent, config *common.AutogitConfig) error {
2024-09-02 17:27:23 +02:00
prjgit := config.GitProjectName
2024-08-30 16:37:51 +02:00
if action.Repository.Name == prjgit {
2024-09-04 14:04:13 +02:00
h.StdLogger.Printf("repository event %s for PrjGit '%s'. Ignoring\n", common.DefaultGitPrj, action.Action)
2024-08-30 16:37:51 +02:00
return nil
}
2024-09-04 14:04:13 +02:00
git, err := common.CreateGitHandler(GitAuthor, GitEmail, AppName)
if err != nil {
return err
}
// defer git.Close()
prjGitRepo, err := gitea.CreateRepositoryIfNotExist(git, *action.Organization, prjgit)
2024-08-30 16:37:51 +02:00
if err != nil {
return fmt.Errorf("Error accessing/creating prjgit: %s err: %w", prjgit, err)
}
2024-09-04 14:04:13 +02:00
if err := git.GitExec("", "clone", "--depth", "1", prjGitRepo.SSHURL, common.DefaultGitPrj); err != nil {
return err
}
2024-07-07 21:08:41 +02:00
switch action.Action {
case "created":
2024-09-04 14:04:13 +02:00
if err := git.GitExec(common.DefaultGitPrj, "submodule", "--quiet", "add", "--depth", "1", action.Repository.Clone_Url); err != nil {
return err
}
if err := git.GitExec(common.DefaultGitPrj, "commit", "-m", "Automatic package inclusion via Direct Workflow"); err != nil {
return err
}
if err := git.GitExec(common.DefaultGitPrj, "push"); err != nil {
return err
}
2024-08-30 16:37:51 +02:00
2024-07-07 21:08:41 +02:00
case "deleted":
2024-09-04 14:04:13 +02:00
if stat, err := os.Stat(filepath.Join(git.GitPath, common.DefaultGitPrj, action.Repository.Name)); err != nil || !stat.IsDir() {
if git.DebugLogger {
2024-08-30 16:37:51 +02:00
h.StdLogger.Printf("delete event for %s -- not in project. Ignoring\n", action.Repository.Name)
}
2024-07-08 17:14:18 +02:00
return nil
2024-07-07 21:08:41 +02:00
}
2024-09-04 14:04:13 +02:00
if err := git.GitExec(common.DefaultGitPrj, "rm", action.Repository.Name); err != nil {
return err
}
if err := git.GitExec(common.DefaultGitPrj, "commit", "-m", "Automatic package removal via Direct Workflow"); err != nil {
return err
}
if err := git.GitExec(common.DefaultGitPrj, "push"); err != nil {
return err
}
2024-08-30 16:37:51 +02:00
2024-07-07 21:08:41 +02:00
default:
2024-07-08 17:14:18 +02:00
return fmt.Errorf("%s: %s", "Unknown action type", action.Action)
2024-07-07 21:08:41 +02:00
}
2024-07-08 17:14:18 +02:00
return nil
}
2024-07-07 21:08:41 +02:00
2024-07-08 17:14:18 +02:00
func processPushAction(h *common.RequestHandler) error {
2024-08-28 00:45:47 +02:00
action := h.Request.Data.(*common.PushWebhookEvent)
2024-09-04 14:04:13 +02:00
configs, configFound := configuredRepos[action.Repository.Owner.Username]
2024-08-30 16:37:51 +02:00
if !configFound {
2024-09-04 14:04:13 +02:00
h.StdLogger.Printf("Repository event for %s. Not configured. Ignoring.\n", action.Repository.Owner.Username)
2024-08-30 16:37:51 +02:00
return nil
}
2024-07-07 21:08:41 +02:00
2024-09-04 14:04:13 +02:00
var err error
for _, config := range configs {
err = concatenateErrors(err, processConfiguredPushAction(h, action, config))
}
return err
}
func processConfiguredPushAction(h *common.RequestHandler, action *common.PushWebhookEvent, config *common.AutogitConfig) error {
2024-09-02 17:27:23 +02:00
prjgit := config.GitProjectName
2024-08-30 16:37:51 +02:00
if action.Repository.Name == prjgit {
2024-09-04 14:04:13 +02:00
h.StdLogger.Printf("push to %s -- ignoring\n", prjgit)
2024-07-08 17:14:18 +02:00
return nil
2024-07-07 21:08:41 +02:00
}
2024-09-04 14:04:13 +02:00
git, err := common.CreateGitHandler(GitAuthor, GitEmail, AppName)
if err != nil {
return err
}
defer git.Close()
prjGitRepo, err := gitea.CreateRepositoryIfNotExist(git, *action.Repository.Owner, prjgit)
2024-08-30 16:37:51 +02:00
if err != nil {
return fmt.Errorf("Error accessing/creating prjgit: %s err: %w", prjgit, err)
}
2024-09-04 14:04:13 +02:00
if err := git.GitExec("", "clone", "--depth", "1", prjGitRepo.SSHURL, common.DefaultGitPrj); err != nil {
return err
}
if stat, err := os.Stat(filepath.Join(git.GitPath, common.DefaultGitPrj, action.Repository.Name)); err != nil || !stat.IsDir() {
if git.DebugLogger {
2024-08-30 16:37:51 +02:00
h.StdLogger.Printf("Pushed to package that is not part of the project. Ignoring: %v\n", err)
}
2024-08-28 00:45:47 +02:00
return nil
2024-07-07 21:08:41 +02:00
}
2024-09-04 14:04:13 +02:00
if err := git.GitExec(common.DefaultGitPrj, "submodule", "update", "--init", "--depth", "1", "--checkout", action.Repository.Name); err != nil {
return err
}
id, err := git.GitBranchHead(filepath.Join(common.DefaultGitPrj, action.Repository.Name), action.Repository.Default_Branch)
if err != nil {
return err
}
2024-07-07 21:08:41 +02:00
for _, commitId := range action.Commits {
if commitId.Id == id {
2024-09-04 14:04:13 +02:00
if err := git.GitExec(filepath.Join(common.DefaultGitPrj, action.Repository.Name), "fetch", "--depth", "1", "origin", id); err != nil {
return err
}
if err := git.GitExec(filepath.Join(common.DefaultGitPrj, action.Repository.Name), "checkout", id); err != nil {
return err
}
if err := git.GitExec(common.DefaultGitPrj, "commit", "-a", "-m", "Automatic update via push via Direct Workflow"); err != nil {
return err
}
if err := git.GitExec(common.DefaultGitPrj, "push"); err != nil {
return err
}
2024-07-08 17:14:18 +02:00
return nil
2024-07-07 21:08:41 +02:00
}
}
2024-08-26 17:07:52 +02:00
h.StdLogger.Println("push of refs not on the main branch. ignoring.")
2024-07-07 21:08:41 +02:00
return nil
}
2024-09-02 17:27:23 +02:00
func verifyProjectState(git *common.GitHandler, orgName string, config *common.AutogitConfig) error {
org := common.Organization{
Username: orgName,
}
repo, err := gitea.CreateRepositoryIfNotExist(git, org, config.GitProjectName)
if err != nil {
return fmt.Errorf("Error fetching or creating '%s/%s' -- aborting verifyProjectState(). Err: %w", orgName, config.GitProjectName, err)
}
if err := git.GitExec("", "clone", "--depth", "1", repo.SSHURL, config.GitProjectName); err != nil {
return fmt.Errorf("Error closing projectgit for %s, Err: %w", config.GitProjectName, err)
}
2024-09-04 14:04:13 +02:00
log.Println("getting submodule list")
2024-09-02 17:27:23 +02:00
sub, err := git.GitSubmoduleList(config.GitProjectName, "HEAD")
if err != nil {
return fmt.Errorf("Failed to fetch submodule list... Err: %w", err)
}
isGitUpdated := false
for filename, commitId := range sub {
2024-09-04 14:04:13 +02:00
log.Println(" verifying package:", filename, commitId, config.Branch)
2024-09-02 17:27:23 +02:00
commits, err := gitea.GetRecentCommits(orgName, filename, config.Branch, 10)
if err != nil {
2024-09-04 14:04:13 +02:00
// assumption that package does not exist, remove from project
if err := git.GitExec(config.GitProjectName, "rm", filename); err != nil {
return fmt.Errorf("Failed to remove deleted submodule. Err: %w", err)
}
isGitUpdated = true
continue
2024-09-02 17:27:23 +02:00
}
2024-09-04 14:04:13 +02:00
// if err != nil {
// return fmt.Errorf("Failed to fetch recent commits for package: '%s'. Err: %w", filename, err)
// }
2024-09-02 17:27:23 +02:00
idx := 1000
for i, c := range commits {
if c.SHA == commitId {
idx = i
break
}
}
if idx == 0 {
// up-to-date
continue
} else if idx < len(commits) { // update
2024-09-04 14:04:13 +02:00
if err := git.GitExec(config.GitProjectName, "submodule", "update", "--init", "--depth", "1", "--checkout", filename); err != nil {
return err
}
if err := git.GitExec(filepath.Join(config.GitProjectName, filename), "fetch", "--depth", "1", "origin", commits[0].SHA); err != nil {
return err
}
if err := git.GitExec(filepath.Join(config.GitProjectName, filename), "checkout", commits[0].SHA); err != nil {
return err
}
2024-09-02 17:27:23 +02:00
isGitUpdated = true
} else {
// probably need `merge-base` or `rev-list` here instead, or the project updated already
return fmt.Errorf("Cannot find SHA of last matching update for package: '%s'. idx: %d", filename, idx)
}
}
if isGitUpdated {
2024-09-04 14:04:13 +02:00
if err := git.GitExec(config.GitProjectName, "commit", "-a", "-m", "Automatic update via push via Direct Workflow -- SYNC"); err != nil {
return err
}
if err := git.GitExec(config.GitProjectName, "push"); err != nil {
return err
}
2024-09-02 17:27:23 +02:00
}
2024-08-28 17:53:15 +02:00
return nil
2024-08-28 12:39:32 +02:00
}
var checkOnStart bool
2024-08-28 17:53:15 +02:00
var checkInterval time.Duration
2024-08-28 12:39:32 +02:00
2024-09-04 14:04:13 +02:00
func consistencyCheckProcess() {
2024-08-28 12:39:32 +02:00
if checkOnStart {
2024-09-04 14:04:13 +02:00
log.Println("== Startup consistency check begin...")
for org, configs := range configuredRepos {
for _, config := range configs {
log.Println(" - org: ", org, " - config: ", config.GitProjectName)
git, err := common.CreateGitHandler(GitAuthor, GitEmail, AppName)
if err != nil {
log.Println("Failed to allocate GitHandler:", err)
return
}
if err := verifyProjectState(git, org, config); err != nil {
log.Println("Failed to verify state of org:", org, err)
return
}
}
2024-08-28 12:39:32 +02:00
}
2024-09-04 14:04:13 +02:00
log.Println("== Startup consistency check done...")
2024-08-28 12:39:32 +02:00
}
2024-09-04 14:04:13 +02:00
for org, configs := range configuredRepos {
for _, config := range configs {
time.Sleep(checkInterval - checkInterval/2 + time.Duration(rand.Int63n(int64(checkInterval))))
2024-08-28 12:39:32 +02:00
2024-09-04 14:04:13 +02:00
log.Printf(" ++ starting verification, org: `%s`\n", org)
git, err := common.CreateGitHandler(GitAuthor, GitEmail, AppName)
if err != nil {
log.Println("Faield to allocate GitHandler:", err)
return
}
if err := verifyProjectState(git, org, config); err != nil {
log.Printf(" *** verification failed, org: `%s`, err: %#v\n", org, err)
}
log.Printf(" ++ verification complete, org: `%s`\n", org)
2024-08-28 12:39:32 +02:00
}
}
}
2024-08-28 00:45:47 +02:00
var debugMode bool
2024-07-07 21:08:41 +02:00
func main() {
2024-09-04 14:04:13 +02:00
if err := common.RequireGiteaSecretToken(); err != nil {
log.Fatal(err)
}
if err := common.RequireRabbitSecrets(); err != nil {
log.Fatal(err)
}
2024-08-26 17:07:52 +02:00
workflowConfig := flag.String("config", "", "Repository and workflow definition file")
2024-08-30 17:05:57 +02:00
giteaHost := flag.String("gitea", "src.opensuse.org", "Gitea instance")
2024-08-28 00:45:47 +02:00
rabbitUrl := flag.String("url", "amqps://rabbit.opensuse.org", "URL for RabbitMQ instance")
flag.BoolVar(&debugMode, "debug", false, "Extra debugging information")
2024-08-28 12:39:32 +02:00
flag.BoolVar(&checkOnStart, "check-on-start", false, "Check all repositories for consistency on start, without delays")
checkIntervalHours := flag.Float64("check-interval", 5, "Check interval (+-random delay) for repositories for consitency, in hours")
2024-08-26 17:07:52 +02:00
flag.Parse()
2024-08-28 12:39:32 +02:00
checkInterval = time.Duration(*checkIntervalHours) * time.Hour
2024-08-28 00:45:47 +02:00
if len(*workflowConfig) == 0 {
log.Fatalln("No configuratio file specified. Aborting")
}
2024-08-26 17:07:52 +02:00
configs, err := common.ReadWorkflowConfigsFile(*workflowConfig)
if err != nil {
2024-09-02 17:56:00 +02:00
log.Fatal(err)
2024-08-26 17:07:52 +02:00
}
2024-09-04 14:04:13 +02:00
configuredRepos = make(map[string][]*common.AutogitConfig)
orgs := make([]string, 0, 1)
2024-08-28 00:45:47 +02:00
for _, c := range configs {
2024-09-04 14:04:13 +02:00
if slices.Contains(c.Workflows, "direct") {
2024-08-28 00:45:47 +02:00
if debugMode {
2024-08-28 17:53:15 +02:00
log.Printf(" + adding org: '%s', branch: '%s', prjgit: '%s'\n", c.Organization, c.Branch, c.GitProjectName)
2024-08-28 00:45:47 +02:00
}
2024-09-04 14:04:13 +02:00
configs := configuredRepos[c.Organization]
if configs == nil {
configs = make([]*common.AutogitConfig, 0, 1)
}
configs = append(configs, c)
configuredRepos[c.Organization] = configs
2024-08-28 00:45:47 +02:00
orgs = append(orgs, c.Organization)
}
}
2024-08-30 17:05:57 +02:00
gitea = common.AllocateGiteaTransport(*giteaHost)
2024-09-04 14:04:13 +02:00
go consistencyCheckProcess()
2024-08-30 17:05:57 +02:00
2024-07-08 17:14:18 +02:00
var defs common.ListenDefinitions
2024-09-04 14:04:13 +02:00
defs.GitAuthor = GitAuthor
2024-08-28 00:45:47 +02:00
defs.RabbitURL = *rabbitUrl
2024-07-09 15:05:49 +02:00
2024-08-28 00:45:47 +02:00
defs.Handlers = make(map[string]common.RequestProcessor)
2024-07-08 17:14:18 +02:00
defs.Handlers[common.RequestType_Push] = processPushAction
defs.Handlers[common.RequestType_Repository] = processRepositoryAction
2024-08-28 00:45:47 +02:00
log.Fatal(common.ProcessRabbitMQEvents(defs, orgs))
2024-07-07 21:08:41 +02:00
}