mirror of
https://gitea.com/gitea/tea.git
synced 2026-03-13 17:33:31 +01:00
## Summary - Add `tea repo edit` subcommand to update repository properties via the Gitea API - Support flags: `--name`, `--description`/`--desc`, `--website`, `--private`, `--template`, `--archived`, `--default-branch` - Boolean-like flags use string type to distinguish "not set" from "false", following the pattern in `releases/edit.go` ## Test plan - [x] `go build ./...` passes - [x] `go vet ./...` passes - [x] `tea repo edit --help` shows all flags correctly - [x] Manual test: `tea repo edit --private true` on a test repo - [x] Manual test: `tea repo edit --name new-name --description "new desc"` on a test repo Reviewed-on: https://gitea.com/gitea/tea/pulls/928 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Bo-Yi Wu <appleboy.tw@gmail.com> Co-committed-by: Bo-Yi Wu <appleboy.tw@gmail.com>
63 lines
1.5 KiB
Go
63 lines
1.5 KiB
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package cmd
|
|
|
|
import (
|
|
stdctx "context"
|
|
|
|
"code.gitea.io/tea/cmd/repos"
|
|
"code.gitea.io/tea/modules/context"
|
|
"code.gitea.io/tea/modules/print"
|
|
"code.gitea.io/tea/modules/utils"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
// CmdRepos represents to login a gitea server.
|
|
var CmdRepos = cli.Command{
|
|
Name: "repos",
|
|
Aliases: []string{"repo"},
|
|
Category: catEntities,
|
|
Usage: "Show repository details",
|
|
Description: "Show repository details",
|
|
ArgsUsage: "[<repo owner>/<repo name>]",
|
|
Action: runRepos,
|
|
Commands: []*cli.Command{
|
|
&repos.CmdReposList,
|
|
&repos.CmdReposSearch,
|
|
&repos.CmdRepoCreate,
|
|
&repos.CmdRepoCreateFromTemplate,
|
|
&repos.CmdRepoFork,
|
|
&repos.CmdRepoMigrate,
|
|
&repos.CmdRepoRm,
|
|
&repos.CmdRepoEdit,
|
|
},
|
|
Flags: repos.CmdReposListFlags,
|
|
}
|
|
|
|
func runRepos(ctx stdctx.Context, cmd *cli.Command) error {
|
|
if cmd.Args().Len() == 1 {
|
|
return runRepoDetail(ctx, cmd, cmd.Args().First())
|
|
}
|
|
return repos.RunReposList(ctx, cmd)
|
|
}
|
|
|
|
func runRepoDetail(_ stdctx.Context, cmd *cli.Command, path string) error {
|
|
ctx := context.InitCommand(cmd)
|
|
client := ctx.Login.Client()
|
|
repoOwner, repoName := utils.GetOwnerAndRepo(path, ctx.Owner)
|
|
repo, _, err := client.GetRepo(repoOwner, repoName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
topics, _, err := client.ListRepoTopics(repoOwner, repoName, gitea.ListRepoTopicsOptions{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
print.RepoDetails(repo, topics)
|
|
return nil
|
|
}
|