mirror of
https://codeberg.org/forgejo-aneksajo/forgejo-aneksajo.git
synced 2025-08-10 04:00:13 +02:00

## Summary Inspired by https://docs.github.com/en/rest/actions/workflow-runs?apiVersion=2022-11-28#list-workflow-runs-for-a-repository and https://docs.github.com/en/rest/actions/workflow-runs?apiVersion=2022-11-28#get-a-workflow-run ## Checklist The [contributor guide](https://forgejo.org/docs/next/contributor/) contains information that will be helpful to first time contributors. There also are a few [conditions for merging Pull Requests in Forgejo repositories](https://codeberg.org/forgejo/governance/src/branch/main/PullRequestsAgreement.md). You are also welcome to join the [Forgejo development chatroom](https://matrix.to/#/#forgejo-development:matrix.org). ### Tests - I added test coverage for Go changes... - [ ] in their respective `*_test.go` for unit tests. - [x] in the `tests/integration` directory if it involves interactions with a live Forgejo server. - I added test coverage for JavaScript changes... - [ ] in `web_src/js/*.test.js` if it can be unit tested. - [ ] in `tests/e2e/*.test.e2e.js` if it requires interactions with a live Forgejo server (see also the [developer guide for JavaScript testing](https://codeberg.org/forgejo/forgejo/src/branch/forgejo/tests/e2e/README.md#end-to-end-tests)). ### Documentation - [ ] I created a pull request [to the documentation](https://codeberg.org/forgejo/docs) to explain to Forgejo users how to use this change. - [x] I did not document these changes and I do not expect someone else to do it. ### Release notes - [ ] I do not want this change to show in the release notes. - [x] I want the title to show in the release notes with a link to this pull request. - [ ] I want the content of the `release-notes/<pull request number>.md` to be be used for the release notes instead of the title. <!--start release-notes-assistant--> ## Release notes <!--URL:https://codeberg.org/forgejo/forgejo--> - Features - [PR](https://codeberg.org/forgejo/forgejo/pulls/7699): <!--number 7699 --><!--line 0 --><!--description bWFrZSBhY3Rpb24gcnVucyBhdmFpbGFibGUgaW4gYXBp-->make action runs available in api<!--description--> <!--end release-notes-assistant--> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7699 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Co-authored-by: klausfyhn <klausfyhn@gmail.com> Co-committed-by: klausfyhn <klausfyhn@gmail.com>
88 lines
2.1 KiB
Go
88 lines
2.1 KiB
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package actions
|
|
|
|
import (
|
|
"context"
|
|
|
|
"forgejo.org/models/db"
|
|
"forgejo.org/modules/container"
|
|
"forgejo.org/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) LoadRuns(ctx context.Context, withRepo bool) error {
|
|
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]
|
|
}
|
|
}
|
|
if withRepo {
|
|
var runsList RunList = make([]*ActionRun, 0, len(runs))
|
|
for _, r := range runs {
|
|
runsList = append(runsList, r)
|
|
}
|
|
return runsList.LoadRepos(ctx)
|
|
}
|
|
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
|
|
Events []string // []webhook_module.HookEventType
|
|
RunNumber int64
|
|
}
|
|
|
|
func (opts FindRunJobOptions) ToConds() builder.Cond {
|
|
cond := builder.NewCond()
|
|
if opts.RunID > 0 {
|
|
cond = cond.And(builder.Eq{"run_id": opts.RunID})
|
|
}
|
|
if opts.RepoID > 0 {
|
|
cond = cond.And(builder.Eq{"repo_id": opts.RepoID})
|
|
}
|
|
if opts.OwnerID > 0 {
|
|
cond = cond.And(builder.Eq{"owner_id": opts.OwnerID})
|
|
}
|
|
if opts.CommitSHA != "" {
|
|
cond = cond.And(builder.Eq{"commit_sha": opts.CommitSHA})
|
|
}
|
|
if len(opts.Statuses) > 0 {
|
|
cond = cond.And(builder.In("status", opts.Statuses))
|
|
}
|
|
if opts.UpdatedBefore > 0 {
|
|
cond = cond.And(builder.Lt{"updated": opts.UpdatedBefore})
|
|
}
|
|
if len(opts.Events) > 0 {
|
|
cond = cond.And(builder.In("event", opts.Events))
|
|
}
|
|
if opts.RunNumber > 0 {
|
|
cond = cond.And(builder.Eq{"`index`": opts.RunNumber})
|
|
}
|
|
return cond
|
|
}
|