During conflict resolution for PR #313 (streaming API), the agent incorrectly assumed that modify/delete conflicts meant the PR intended to remove these packages. This was wrong - PR #313 was only about adding streaming API to pkg/io. Restored packages: - pkg/workspace - workspace management service - pkg/unifi - UniFi controller client - pkg/gitea - Gitea API client - pkg/crypt/openpgp - OpenPGP encryption service - internal/cmd/gitea - Gitea CLI commands - internal/cmd/unifi - UniFi CLI commands Also restored: - Various test files (bench_test.go, integration_test.go, etc.) - pkg/framework/core/interfaces.go (Workspace/Crypt interfaces) - pkg/log/errors.go (error helpers) - Documentation (faq.md, user-guide.md) This allows PR #297 (MCP daemon mode) to proceed as it depends on pkg/workspace. Co-authored-by: Claude <developers@lethean.io> Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
133 lines
3.1 KiB
Go
133 lines
3.1 KiB
Go
package gitea
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
|
|
"github.com/host-uk/core/pkg/cli"
|
|
gt "github.com/host-uk/core/pkg/gitea"
|
|
)
|
|
|
|
// Issues command flags.
|
|
var (
|
|
issuesState string
|
|
issuesTitle string
|
|
issuesBody string
|
|
)
|
|
|
|
// addIssuesCommand adds the 'issues' subcommand for listing and creating issues.
|
|
func addIssuesCommand(parent *cli.Command) {
|
|
cmd := &cli.Command{
|
|
Use: "issues <owner/repo>",
|
|
Short: "List and manage issues",
|
|
Long: "List issues for a repository, or create a new issue.",
|
|
Args: cli.ExactArgs(1),
|
|
RunE: func(cmd *cli.Command, args []string) error {
|
|
owner, repo, err := splitOwnerRepo(args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// If title is set, create an issue instead
|
|
if issuesTitle != "" {
|
|
return runCreateIssue(owner, repo)
|
|
}
|
|
|
|
return runListIssues(owner, repo)
|
|
},
|
|
}
|
|
|
|
cmd.Flags().StringVar(&issuesState, "state", "open", "Filter by state (open, closed, all)")
|
|
cmd.Flags().StringVar(&issuesTitle, "title", "", "Create issue with this title")
|
|
cmd.Flags().StringVar(&issuesBody, "body", "", "Issue body (used with --title)")
|
|
|
|
parent.AddCommand(cmd)
|
|
}
|
|
|
|
func runListIssues(owner, repo string) error {
|
|
client, err := gt.NewFromConfig("", "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
issues, err := client.ListIssues(owner, repo, gt.ListIssuesOpts{
|
|
State: issuesState,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(issues) == 0 {
|
|
cli.Text(fmt.Sprintf("No %s issues in %s/%s.", issuesState, owner, repo))
|
|
return nil
|
|
}
|
|
|
|
cli.Blank()
|
|
cli.Print(" %s\n\n", fmt.Sprintf("%d %s issues in %s/%s", len(issues), issuesState, owner, repo))
|
|
|
|
for _, issue := range issues {
|
|
printGiteaIssue(issue, owner, repo)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func runCreateIssue(owner, repo string) error {
|
|
client, err := gt.NewFromConfig("", "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
issue, err := client.CreateIssue(owner, repo, gitea.CreateIssueOption{
|
|
Title: issuesTitle,
|
|
Body: issuesBody,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
cli.Blank()
|
|
cli.Success(fmt.Sprintf("Created issue #%d: %s", issue.Index, issue.Title))
|
|
cli.Print(" %s %s\n", dimStyle.Render("URL:"), valueStyle.Render(issue.HTMLURL))
|
|
cli.Blank()
|
|
|
|
return nil
|
|
}
|
|
|
|
func printGiteaIssue(issue *gitea.Issue, owner, repo string) {
|
|
num := numberStyle.Render(fmt.Sprintf("#%d", issue.Index))
|
|
title := valueStyle.Render(cli.Truncate(issue.Title, 60))
|
|
|
|
line := fmt.Sprintf(" %s %s", num, title)
|
|
|
|
// Add labels
|
|
if len(issue.Labels) > 0 {
|
|
var labels []string
|
|
for _, l := range issue.Labels {
|
|
labels = append(labels, l.Name)
|
|
}
|
|
line += " " + warningStyle.Render("["+strings.Join(labels, ", ")+"]")
|
|
}
|
|
|
|
// Add assignees
|
|
if len(issue.Assignees) > 0 {
|
|
var assignees []string
|
|
for _, a := range issue.Assignees {
|
|
assignees = append(assignees, "@"+a.UserName)
|
|
}
|
|
line += " " + infoStyle.Render(strings.Join(assignees, ", "))
|
|
}
|
|
|
|
cli.Text(line)
|
|
}
|
|
|
|
// splitOwnerRepo splits "owner/repo" into its parts.
|
|
func splitOwnerRepo(s string) (string, string, error) {
|
|
parts := strings.SplitN(s, "/", 2)
|
|
if len(parts) != 2 || parts[0] == "" || parts[1] == "" {
|
|
return "", "", cli.Err("expected format: owner/repo (got %q)", s)
|
|
}
|
|
return parts[0], parts[1], nil
|
|
}
|