2026-02-21 21:45:58 +00:00
|
|
|
package dev
|
|
|
|
|
|
|
|
|
|
import (
|
2026-03-12 19:04:41 +00:00
|
|
|
"path/filepath"
|
2026-02-21 21:45:58 +00:00
|
|
|
"strings"
|
|
|
|
|
"time"
|
|
|
|
|
|
2026-03-12 19:04:41 +00:00
|
|
|
"code.gitea.io/sdk/gitea"
|
|
|
|
|
|
2026-02-22 23:27:33 +00:00
|
|
|
"forge.lthn.ai/core/cli/pkg/cli"
|
2026-03-22 00:04:10 +00:00
|
|
|
"dappco.re/go/core/i18n"
|
2026-02-21 21:45:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// CI-specific styles (aliases to shared)
|
|
|
|
|
var (
|
|
|
|
|
ciSuccessStyle = cli.SuccessStyle
|
|
|
|
|
ciFailureStyle = cli.ErrorStyle
|
|
|
|
|
ciPendingStyle = cli.WarningStyle
|
|
|
|
|
ciSkippedStyle = cli.DimStyle
|
|
|
|
|
)
|
|
|
|
|
|
2026-03-12 19:04:41 +00:00
|
|
|
// WorkflowRun represents a CI workflow run.
|
2026-02-21 21:45:58 +00:00
|
|
|
type WorkflowRun struct {
|
2026-03-12 19:04:41 +00:00
|
|
|
Name string
|
|
|
|
|
Status string
|
|
|
|
|
Conclusion string
|
|
|
|
|
HeadBranch string
|
|
|
|
|
CreatedAt time.Time
|
|
|
|
|
UpdatedAt time.Time
|
|
|
|
|
URL string
|
|
|
|
|
RepoName string
|
2026-02-21 21:45:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// CI command flags
|
|
|
|
|
var (
|
|
|
|
|
ciRegistryPath string
|
|
|
|
|
ciBranch string
|
|
|
|
|
ciFailedOnly bool
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// addCICommand adds the 'ci' command to the given parent command.
|
|
|
|
|
func addCICommand(parent *cli.Command) {
|
|
|
|
|
ciCmd := &cli.Command{
|
|
|
|
|
Use: "ci",
|
|
|
|
|
Short: i18n.T("cmd.dev.ci.short"),
|
|
|
|
|
Long: i18n.T("cmd.dev.ci.long"),
|
|
|
|
|
RunE: func(cmd *cli.Command, args []string) error {
|
|
|
|
|
branch := ciBranch
|
|
|
|
|
if branch == "" {
|
|
|
|
|
branch = "main"
|
|
|
|
|
}
|
|
|
|
|
return runCI(ciRegistryPath, branch, ciFailedOnly)
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ciCmd.Flags().StringVar(&ciRegistryPath, "registry", "", i18n.T("common.flag.registry"))
|
|
|
|
|
ciCmd.Flags().StringVarP(&ciBranch, "branch", "b", "main", i18n.T("cmd.dev.ci.flag.branch"))
|
|
|
|
|
ciCmd.Flags().BoolVar(&ciFailedOnly, "failed", false, i18n.T("cmd.dev.ci.flag.failed"))
|
|
|
|
|
|
|
|
|
|
parent.AddCommand(ciCmd)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func runCI(registryPath string, branch string, failedOnly bool) error {
|
2026-03-12 19:04:41 +00:00
|
|
|
client, err := forgeAPIClient()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
2026-02-21 21:45:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Find or use provided registry
|
2026-03-12 19:04:41 +00:00
|
|
|
reg, _, err := loadRegistryWithConfig(registryPath)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
2026-02-21 21:45:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Fetch CI status sequentially
|
|
|
|
|
var allRuns []WorkflowRun
|
|
|
|
|
var fetchErrors []error
|
|
|
|
|
var noCI []string
|
|
|
|
|
|
|
|
|
|
repoList := reg.List()
|
|
|
|
|
for i, repo := range repoList {
|
|
|
|
|
cli.Print("\033[2K\r%s %d/%d %s", dimStyle.Render(i18n.T("i18n.progress.check")), i+1, len(repoList), repo.Name)
|
|
|
|
|
|
2026-03-12 19:04:41 +00:00
|
|
|
owner, apiRepo := forgeRepoIdentity(repo.Path, reg.Org, repo.Name)
|
|
|
|
|
runs, err := fetchWorkflowRuns(client, owner, apiRepo, repo.Name, branch)
|
2026-02-21 21:45:58 +00:00
|
|
|
if err != nil {
|
2026-03-12 19:04:41 +00:00
|
|
|
if strings.Contains(err.Error(), "404") || strings.Contains(err.Error(), "no workflows") {
|
2026-02-21 21:45:58 +00:00
|
|
|
noCI = append(noCI, repo.Name)
|
|
|
|
|
} else {
|
|
|
|
|
fetchErrors = append(fetchErrors, cli.Wrap(err, repo.Name))
|
|
|
|
|
}
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if len(runs) > 0 {
|
|
|
|
|
// Just get the latest run
|
|
|
|
|
allRuns = append(allRuns, runs[0])
|
|
|
|
|
} else {
|
|
|
|
|
noCI = append(noCI, repo.Name)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
cli.Print("\033[2K\r") // Clear progress line
|
|
|
|
|
|
|
|
|
|
// Count by status
|
|
|
|
|
var success, failed, pending, other int
|
|
|
|
|
for _, run := range allRuns {
|
|
|
|
|
switch run.Conclusion {
|
|
|
|
|
case "success":
|
|
|
|
|
success++
|
|
|
|
|
case "failure":
|
|
|
|
|
failed++
|
|
|
|
|
case "":
|
2026-03-12 19:04:41 +00:00
|
|
|
if run.Status == "running" || run.Status == "waiting" ||
|
|
|
|
|
run.Status == "in_progress" || run.Status == "queued" {
|
2026-02-21 21:45:58 +00:00
|
|
|
pending++
|
|
|
|
|
} else {
|
|
|
|
|
other++
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
other++
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Print summary
|
|
|
|
|
cli.Blank()
|
2026-02-24 15:37:42 +00:00
|
|
|
cli.Print("%s", i18n.T("cmd.dev.ci.repos_checked", map[string]any{"Count": len(repoList)}))
|
2026-02-21 21:45:58 +00:00
|
|
|
if success > 0 {
|
2026-02-24 15:37:42 +00:00
|
|
|
cli.Print(" * %s", ciSuccessStyle.Render(i18n.T("cmd.dev.ci.passing", map[string]any{"Count": success})))
|
2026-02-21 21:45:58 +00:00
|
|
|
}
|
|
|
|
|
if failed > 0 {
|
2026-02-24 15:37:42 +00:00
|
|
|
cli.Print(" * %s", ciFailureStyle.Render(i18n.T("cmd.dev.ci.failing", map[string]any{"Count": failed})))
|
2026-02-21 21:45:58 +00:00
|
|
|
}
|
|
|
|
|
if pending > 0 {
|
2026-02-24 15:37:42 +00:00
|
|
|
cli.Print(" * %s", ciPendingStyle.Render(i18n.T("common.count.pending", map[string]any{"Count": pending})))
|
2026-02-21 21:45:58 +00:00
|
|
|
}
|
|
|
|
|
if len(noCI) > 0 {
|
2026-02-24 15:37:42 +00:00
|
|
|
cli.Print(" * %s", ciSkippedStyle.Render(i18n.T("cmd.dev.ci.no_ci", map[string]any{"Count": len(noCI)})))
|
2026-02-21 21:45:58 +00:00
|
|
|
}
|
|
|
|
|
cli.Blank()
|
|
|
|
|
cli.Blank()
|
|
|
|
|
|
|
|
|
|
// Filter if needed
|
|
|
|
|
displayRuns := allRuns
|
|
|
|
|
if failedOnly {
|
|
|
|
|
displayRuns = nil
|
|
|
|
|
for _, run := range allRuns {
|
|
|
|
|
if run.Conclusion == "failure" {
|
|
|
|
|
displayRuns = append(displayRuns, run)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Print details
|
|
|
|
|
for _, run := range displayRuns {
|
|
|
|
|
printWorkflowRun(run)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Print errors
|
|
|
|
|
if len(fetchErrors) > 0 {
|
|
|
|
|
cli.Blank()
|
|
|
|
|
for _, err := range fetchErrors {
|
|
|
|
|
cli.Print("%s %s\n", errorStyle.Render(i18n.Label("error")), err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 19:04:41 +00:00
|
|
|
func fetchWorkflowRuns(client *gitea.Client, owner, apiRepo, displayName string, branch string) ([]WorkflowRun, error) {
|
|
|
|
|
// Try ListRepoActionRuns first (Gitea 1.25+ / modern Forgejo)
|
|
|
|
|
resp, _, err := client.ListRepoActionRuns(owner, apiRepo, gitea.ListRepoActionRunsOptions{
|
|
|
|
|
ListOptions: gitea.ListOptions{Page: 1, PageSize: 5},
|
|
|
|
|
Branch: branch,
|
|
|
|
|
})
|
|
|
|
|
if err == nil && resp != nil && len(resp.WorkflowRuns) > 0 {
|
|
|
|
|
var runs []WorkflowRun
|
|
|
|
|
for _, r := range resp.WorkflowRuns {
|
|
|
|
|
name := r.DisplayTitle
|
|
|
|
|
if r.Path != "" {
|
|
|
|
|
// Use workflow filename as name: ".forgejo/workflows/ci.yml" → "ci"
|
|
|
|
|
name = strings.TrimSuffix(filepath.Base(r.Path), filepath.Ext(r.Path))
|
|
|
|
|
}
|
|
|
|
|
updated := r.CompletedAt
|
|
|
|
|
if updated.IsZero() {
|
|
|
|
|
updated = r.StartedAt
|
|
|
|
|
}
|
|
|
|
|
runs = append(runs, WorkflowRun{
|
|
|
|
|
Name: name,
|
|
|
|
|
Status: r.Status,
|
|
|
|
|
Conclusion: r.Conclusion,
|
|
|
|
|
HeadBranch: r.HeadBranch,
|
|
|
|
|
CreatedAt: r.StartedAt,
|
|
|
|
|
UpdatedAt: updated,
|
|
|
|
|
URL: r.HTMLURL,
|
|
|
|
|
RepoName: displayName,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
return runs, nil
|
2026-02-21 21:45:58 +00:00
|
|
|
}
|
|
|
|
|
|
2026-03-12 19:04:41 +00:00
|
|
|
// Fallback: ListRepoActionTasks (older API, no version check)
|
|
|
|
|
taskResp, _, taskErr := client.ListRepoActionTasks(owner, apiRepo, gitea.ListOptions{Page: 1, PageSize: 10})
|
|
|
|
|
if taskErr != nil {
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
2026-02-21 21:45:58 +00:00
|
|
|
}
|
2026-03-12 19:04:41 +00:00
|
|
|
return nil, taskErr
|
2026-02-21 21:45:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var runs []WorkflowRun
|
2026-03-12 19:04:41 +00:00
|
|
|
for _, t := range taskResp.WorkflowRuns {
|
|
|
|
|
if branch != "" && t.HeadBranch != branch {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
// ActionTask has single Status field — map to conclusion for completed runs
|
|
|
|
|
conclusion := ""
|
|
|
|
|
switch t.Status {
|
|
|
|
|
case "success", "failure", "skipped", "cancelled":
|
|
|
|
|
conclusion = t.Status
|
|
|
|
|
}
|
|
|
|
|
runs = append(runs, WorkflowRun{
|
|
|
|
|
Name: t.Name,
|
|
|
|
|
Status: t.Status,
|
|
|
|
|
Conclusion: conclusion,
|
|
|
|
|
HeadBranch: t.HeadBranch,
|
|
|
|
|
CreatedAt: t.CreatedAt,
|
|
|
|
|
UpdatedAt: t.UpdatedAt,
|
|
|
|
|
URL: t.URL,
|
|
|
|
|
RepoName: displayName,
|
|
|
|
|
})
|
2026-02-21 21:45:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return runs, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func printWorkflowRun(run WorkflowRun) {
|
|
|
|
|
// Status icon
|
|
|
|
|
var status string
|
|
|
|
|
switch run.Conclusion {
|
|
|
|
|
case "success":
|
|
|
|
|
status = ciSuccessStyle.Render("v")
|
|
|
|
|
case "failure":
|
|
|
|
|
status = ciFailureStyle.Render("x")
|
|
|
|
|
case "":
|
|
|
|
|
switch run.Status {
|
2026-03-12 19:04:41 +00:00
|
|
|
case "running", "in_progress":
|
2026-02-21 21:45:58 +00:00
|
|
|
status = ciPendingStyle.Render("*")
|
2026-03-12 19:04:41 +00:00
|
|
|
case "waiting", "queued":
|
2026-02-21 21:45:58 +00:00
|
|
|
status = ciPendingStyle.Render("o")
|
|
|
|
|
default:
|
|
|
|
|
status = ciSkippedStyle.Render("-")
|
|
|
|
|
}
|
|
|
|
|
case "skipped":
|
|
|
|
|
status = ciSkippedStyle.Render("-")
|
|
|
|
|
case "cancelled":
|
|
|
|
|
status = ciSkippedStyle.Render("o")
|
|
|
|
|
default:
|
|
|
|
|
status = ciSkippedStyle.Render("?")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Workflow name (truncated)
|
|
|
|
|
workflowName := cli.Truncate(run.Name, 20)
|
|
|
|
|
|
|
|
|
|
// Age
|
|
|
|
|
age := cli.FormatAge(run.UpdatedAt)
|
|
|
|
|
|
|
|
|
|
cli.Print(" %s %-18s %-22s %s\n",
|
|
|
|
|
status,
|
|
|
|
|
repoNameStyle.Render(run.RepoName),
|
|
|
|
|
dimStyle.Render(workflowName),
|
|
|
|
|
issueAgeStyle.Render(age),
|
|
|
|
|
)
|
|
|
|
|
}
|