mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-20 00:41:02 +00:00
ff01a9ff1d
closes #1295 closes #648 # TODO - [x] add new routes with `:repoID` - [x] load repo in middleware using `:repoID` if present - [x] update UI routes `:owner/:name` to `:repoID` - [x] load repos using id in UI - [x] add lookup endpoint `:owner/:name` to `:repoID` - [x] redirect `:owner/:name` to `:repoID` in UI - [x] use badge with `:repoID` route in UI - [x] update `woodpecker-go` - [x] check cli - [x] add migrations / deprecation notes - [x] check if #648 got solved directly - [x] Test - [x] create repo - [x] repo pages - [x] ui redirects - [x] forge status links
38 lines
775 B
Go
38 lines
775 B
Go
package repo
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/cli/common"
|
|
"github.com/woodpecker-ci/woodpecker/cli/internal"
|
|
)
|
|
|
|
var repoChownCmd = &cli.Command{
|
|
Name: "chown",
|
|
Usage: "assume ownership of a repository",
|
|
ArgsUsage: "<repo-id|repo-full-name>",
|
|
Action: repoChown,
|
|
Flags: common.GlobalFlags,
|
|
}
|
|
|
|
func repoChown(c *cli.Context) error {
|
|
repoIDOrFullName := c.Args().First()
|
|
client, err := internal.NewClient(c)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
repoID, err := internal.ParseRepo(client, repoIDOrFullName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
repo, err := client.RepoChown(repoID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Printf("Successfully assumed ownership of repository %s\n", repo.FullName)
|
|
return nil
|
|
}
|