* feat(gitea): add Gitea Go SDK integration and CLI commands Add `code.gitea.io/sdk/gitea` and create `pkg/gitea/` package for connecting to self-hosted Gitea instances. Wire into CLI as `core gitea` command group with repo, issue, PR, mirror, and sync subcommands. pkg/gitea/: - client.go: thin wrapper around SDK with config-based auth - config.go: env → config file → flags resolution - repos.go: list/get/create/delete repos, create mirrors - issues.go: list/get/create issues and pull requests - meta.go: pipeline MetaReader for structural + content signals internal/cmd/gitea/: - config: set URL/token, test connection - repos: list repos with table output - issues: list/create issues - prs: list pull requests - mirror: create GitHub→Gitea mirrors with auth - sync: upstream/main branch strategy (--setup + ongoing sync) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * style(gitea): fix gofmt formatting Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix(gitea): address Copilot review feedback - Use os.UserHomeDir() instead of sh -c "echo $HOME" for home dir expansion - Distinguish "already exists" from real errors in createMainFromUpstream - Fix package docs to match actual config resolution order - Guard token masking against short tokens (< 8 chars) - Paginate ListIssueComments in GetPRMeta and GetCommentBodies - Rename loop variable to avoid shadowing receiver in GetCommentBodies - Move gitea SDK to direct require block in go.mod Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
// Package gitea provides CLI commands for managing a Gitea instance.
|
|
//
|
|
// Commands:
|
|
// - config: Configure Gitea connection (URL, token)
|
|
// - repos: List repositories
|
|
// - issues: List and create issues
|
|
// - prs: List pull requests
|
|
// - mirror: Create GitHub-to-Gitea mirrors
|
|
// - sync: Sync GitHub repos to Gitea upstream branches
|
|
package gitea
|
|
|
|
import (
|
|
"github.com/host-uk/core/pkg/cli"
|
|
)
|
|
|
|
func init() {
|
|
cli.RegisterCommands(AddGiteaCommands)
|
|
}
|
|
|
|
// Style aliases from shared package.
|
|
var (
|
|
successStyle = cli.SuccessStyle
|
|
errorStyle = cli.ErrorStyle
|
|
warningStyle = cli.WarningStyle
|
|
dimStyle = cli.DimStyle
|
|
valueStyle = cli.ValueStyle
|
|
repoStyle = cli.RepoStyle
|
|
numberStyle = cli.NumberStyle
|
|
infoStyle = cli.InfoStyle
|
|
)
|
|
|
|
// AddGiteaCommands registers the 'gitea' command and all subcommands.
|
|
func AddGiteaCommands(root *cli.Command) {
|
|
giteaCmd := &cli.Command{
|
|
Use: "gitea",
|
|
Short: "Gitea instance management",
|
|
Long: "Manage repositories, issues, and pull requests on your Gitea instance.",
|
|
}
|
|
root.AddCommand(giteaCmd)
|
|
|
|
addConfigCommand(giteaCmd)
|
|
addReposCommand(giteaCmd)
|
|
addIssuesCommand(giteaCmd)
|
|
addPRsCommand(giteaCmd)
|
|
addMirrorCommand(giteaCmd)
|
|
addSyncCommand(giteaCmd)
|
|
}
|