mirror of
https://gitea.com/gitea/tea.git
synced 2025-06-16 03:00:22 +02:00

I tested this somewhat, but I haven't been using the cli before so I'm not sure if there are changes - there shouldn't be though. Reviewed-on: https://gitea.com/gitea/tea/pulls/760 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: TheFox0x7 <thefox0x7@gmail.com> Co-committed-by: TheFox0x7 <thefox0x7@gmail.com>
36 lines
755 B
Go
36 lines
755 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repos
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
var typeFilterFlag = cli.StringFlag{
|
|
Name: "type",
|
|
Aliases: []string{"T"},
|
|
Required: false,
|
|
Usage: "Filter by type: fork, mirror, source",
|
|
}
|
|
|
|
func getTypeFilter(cmd *cli.Command) (filter gitea.RepoType, err error) {
|
|
t := cmd.String("type")
|
|
filter = gitea.RepoTypeNone
|
|
switch t {
|
|
case "":
|
|
filter = gitea.RepoTypeNone
|
|
case "fork":
|
|
filter = gitea.RepoTypeFork
|
|
case "mirror":
|
|
filter = gitea.RepoTypeMirror
|
|
case "source":
|
|
filter = gitea.RepoTypeSource
|
|
default:
|
|
err = fmt.Errorf("invalid repo type '%s'. valid: fork, mirror, source", t)
|
|
}
|
|
return
|
|
}
|