Some checks failed
Build and Release / Create Release (push) Successful in 0s
Trigger Vault Plugin Rebuild / Trigger Vault Rebuild (push) Successful in 0s
Build and Release / Integration Tests (PostgreSQL) (push) Successful in 2m48s
Build and Release / Lint (push) Failing after 5m2s
Build and Release / Build Binaries (amd64, windows, windows-latest) (push) Has been skipped
Build and Release / Build Binaries (amd64, darwin, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (amd64, linux, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (arm64, darwin, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (arm64, linux, linux-latest) (push) Has been skipped
Build and Release / Unit Tests (push) Successful in 5m37s
Go's semantic import versioning requires v2+ modules to include the major version in the module path. This enables using proper version tags (v3.x.x) instead of pseudo-versions. Updated module path: code.gitcaddy.com/server/v3
118 lines
2.9 KiB
Go
118 lines
2.9 KiB
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package actions
|
|
|
|
import (
|
|
"context"
|
|
|
|
"code.gitcaddy.com/server/v3/models/db"
|
|
repo_model "code.gitcaddy.com/server/v3/models/repo"
|
|
"code.gitcaddy.com/server/v3/modules/container"
|
|
"code.gitcaddy.com/server/v3/modules/timeutil"
|
|
|
|
"xorm.io/builder"
|
|
)
|
|
|
|
type ActionJobList []*ActionRunJob
|
|
|
|
func (jobs ActionJobList) GetRunIDs() []int64 {
|
|
return container.FilterSlice(jobs, func(j *ActionRunJob) (int64, bool) {
|
|
return j.RunID, j.RunID != 0
|
|
})
|
|
}
|
|
|
|
func (jobs ActionJobList) LoadRepos(ctx context.Context) error {
|
|
repoIDs := container.FilterSlice(jobs, func(j *ActionRunJob) (int64, bool) {
|
|
return j.RepoID, j.RepoID != 0 && j.Repo == nil
|
|
})
|
|
if len(repoIDs) == 0 {
|
|
return nil
|
|
}
|
|
|
|
repos := make(map[int64]*repo_model.Repository, len(repoIDs))
|
|
if err := db.GetEngine(ctx).In("id", repoIDs).Find(&repos); err != nil {
|
|
return err
|
|
}
|
|
for _, j := range jobs {
|
|
if j.RepoID > 0 && j.Repo == nil {
|
|
j.Repo = repos[j.RepoID]
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (jobs ActionJobList) LoadRuns(ctx context.Context, withRepo bool) error {
|
|
if withRepo {
|
|
if err := jobs.LoadRepos(ctx); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
runIDs := jobs.GetRunIDs()
|
|
runs := make(map[int64]*ActionRun, len(runIDs))
|
|
if err := db.GetEngine(ctx).In("id", runIDs).Find(&runs); err != nil {
|
|
return err
|
|
}
|
|
for _, j := range jobs {
|
|
if j.RunID > 0 && j.Run == nil {
|
|
j.Run = runs[j.RunID]
|
|
j.Run.Repo = j.Repo
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (jobs ActionJobList) LoadAttributes(ctx context.Context, withRepo bool) error {
|
|
return jobs.LoadRuns(ctx, withRepo)
|
|
}
|
|
|
|
type FindRunJobOptions struct {
|
|
db.ListOptions
|
|
RunID int64
|
|
RepoID int64
|
|
OwnerID int64
|
|
CommitSHA string
|
|
Statuses []Status
|
|
UpdatedBefore timeutil.TimeStamp
|
|
ConcurrencyGroup string
|
|
}
|
|
|
|
func (opts FindRunJobOptions) ToConds() builder.Cond {
|
|
cond := builder.NewCond()
|
|
if opts.RunID > 0 {
|
|
cond = cond.And(builder.Eq{"`action_run_job`.run_id": opts.RunID})
|
|
}
|
|
if opts.RepoID > 0 {
|
|
cond = cond.And(builder.Eq{"`action_run_job`.repo_id": opts.RepoID})
|
|
}
|
|
if opts.CommitSHA != "" {
|
|
cond = cond.And(builder.Eq{"`action_run_job`.commit_sha": opts.CommitSHA})
|
|
}
|
|
if len(opts.Statuses) > 0 {
|
|
cond = cond.And(builder.In("`action_run_job`.status", opts.Statuses))
|
|
}
|
|
if opts.UpdatedBefore > 0 {
|
|
cond = cond.And(builder.Lt{"`action_run_job`.updated": opts.UpdatedBefore})
|
|
}
|
|
if opts.ConcurrencyGroup != "" {
|
|
if opts.RepoID == 0 {
|
|
panic("Invalid FindRunJobOptions: repo_id is required")
|
|
}
|
|
cond = cond.And(builder.Eq{"`action_run_job`.concurrency_group": opts.ConcurrencyGroup})
|
|
}
|
|
return cond
|
|
}
|
|
|
|
func (opts FindRunJobOptions) ToJoins() []db.JoinFunc {
|
|
if opts.OwnerID > 0 {
|
|
return []db.JoinFunc{
|
|
func(sess db.Engine) error {
|
|
sess.Join("INNER", "repository", "repository.id = repo_id AND repository.owner_id = ?", opts.OwnerID)
|
|
return nil
|
|
},
|
|
}
|
|
}
|
|
return nil
|
|
}
|