diff --git a/cmd/admin.go b/cmd/admin.go index fcf331751c3c4..2cc6596966495 100644 --- a/cmd/admin.go +++ b/cmd/admin.go @@ -32,7 +32,7 @@ import ( repo_service "code.gitea.io/gitea/services/repository" user_service "code.gitea.io/gitea/services/user" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) var ( @@ -40,24 +40,24 @@ var ( CmdAdmin = cli.Command{ Name: "admin", Usage: "Command line interface to perform common administrative operations", - Subcommands: []cli.Command{ - subcmdUser, - subcmdRepoSyncReleases, - subcmdRegenerate, - subcmdAuth, - subcmdSendMail, + Subcommands: []*cli.Command{ + &subcmdUser, + &subcmdRepoSyncReleases, + &subcmdRegenerate, + &subcmdAuth, + &subcmdSendMail, }, } subcmdUser = cli.Command{ Name: "user", Usage: "Modify users", - Subcommands: []cli.Command{ - microcmdUserCreate, - microcmdUserList, - microcmdUserChangePassword, - microcmdUserDelete, - microcmdUserGenerateAccessToken, + Subcommands: []*cli.Command{ + µcmdUserCreate, + µcmdUserList, + µcmdUserChangePassword, + µcmdUserDelete, + µcmdUserGenerateAccessToken, }, } @@ -66,7 +66,7 @@ var ( Usage: "List users", Action: runListUsers, Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "admin", Usage: "List only admin users", }, @@ -78,44 +78,44 @@ var ( Usage: "Create a new user in database", Action: runCreateUser, Flags: []cli.Flag{ - cli.StringFlag{ + &cli.StringFlag{ Name: "name", Usage: "Username. DEPRECATED: use username instead", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "username", Usage: "Username", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "password", Usage: "User password", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "email", Usage: "User email address", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "admin", Usage: "User is an admin", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "random-password", Usage: "Generate a random password for the user", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "must-change-password", Usage: "Set this option to false to prevent forcing the user to change their password after initial login, (Default: true)", }, - cli.IntFlag{ + &cli.IntFlag{ Name: "random-password-length", Usage: "Length of the random password to be generated", Value: 12, }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "access-token", Usage: "Generate access token for the user", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "restricted", Usage: "Make a restricted user account", }, @@ -127,15 +127,17 @@ var ( Usage: "Change a user's password", Action: runChangePassword, Flags: []cli.Flag{ - cli.StringFlag{ - Name: "username,u", - Value: "", - Usage: "The user to change password for", + &cli.StringFlag{ + Name: "username", + Aliases: []string{"u"}, + Value: "", + Usage: "The user to change password for", }, - cli.StringFlag{ - Name: "password,p", - Value: "", - Usage: "New password to set for user", + &cli.StringFlag{ + Name: "password", + Aliases: []string{"p"}, + Value: "", + Usage: "New password to set for user", }, }, } @@ -144,17 +146,19 @@ var ( Name: "delete", Usage: "Delete specific user by id, name or email", Flags: []cli.Flag{ - cli.Int64Flag{ + &cli.Int64Flag{ Name: "id", Usage: "ID of user of the user to delete", }, - cli.StringFlag{ - Name: "username,u", - Usage: "Username of the user to delete", + &cli.StringFlag{ + Name: "username", + Aliases: []string{"u"}, + Usage: "Username of the user to delete", }, - cli.StringFlag{ - Name: "email,e", - Usage: "Email of the user to delete", + &cli.StringFlag{ + Name: "email", + Aliases: []string{"e"}, + Usage: "Email of the user to delete", }, }, Action: runDeleteUser, @@ -164,16 +168,16 @@ var ( Name: "generate-access-token", Usage: "Generate a access token for a specific user", Flags: []cli.Flag{ - cli.StringFlag{ + &cli.StringFlag{ Name: "username,u", Usage: "Username", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "token-name,t", Usage: "Token name", Value: "gitea-admin", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "raw", Usage: "Display only the token value", }, @@ -190,9 +194,9 @@ var ( subcmdRegenerate = cli.Command{ Name: "regenerate", Usage: "Regenerate specific files", - Subcommands: []cli.Command{ - microcmdRegenHooks, - microcmdRegenKeys, + Subcommands: []*cli.Command{ + µcmdRegenHooks, + µcmdRegenKeys, }, } @@ -211,17 +215,17 @@ var ( subcmdAuth = cli.Command{ Name: "auth", Usage: "Modify external auth providers", - Subcommands: []cli.Command{ - microcmdAuthAddOauth, - microcmdAuthUpdateOauth, - cmdAuthAddLdapBindDn, - cmdAuthUpdateLdapBindDn, - cmdAuthAddLdapSimpleAuth, - cmdAuthUpdateLdapSimpleAuth, - microcmdAuthAddSMTP, - microcmdAuthUpdateSMTP, - microcmdAuthList, - microcmdAuthDelete, + Subcommands: []*cli.Command{ + µcmdAuthAddOauth, + µcmdAuthUpdateOauth, + &cmdAuthAddLdapBindDn, + &cmdAuthUpdateLdapBindDn, + &cmdAuthAddLdapSimpleAuth, + &cmdAuthUpdateLdapSimpleAuth, + µcmdAuthAddSMTP, + µcmdAuthUpdateSMTP, + µcmdAuthList, + µcmdAuthDelete, }, } @@ -230,34 +234,34 @@ var ( Usage: "List auth sources", Action: runListAuth, Flags: []cli.Flag{ - cli.IntFlag{ + &cli.IntFlag{ Name: "min-width", Usage: "Minimal cell width including any padding for the formatted table", Value: 0, }, - cli.IntFlag{ + &cli.IntFlag{ Name: "tab-width", Usage: "width of tab characters in formatted table (equivalent number of spaces)", Value: 8, }, - cli.IntFlag{ + &cli.IntFlag{ Name: "padding", Usage: "padding added to a cell before computing its width", Value: 1, }, - cli.StringFlag{ + &cli.StringFlag{ Name: "pad-char", Usage: `ASCII char used for padding if padchar == '\\t', the Writer will assume that the width of a '\\t' in the formatted output is tabwidth, and cells are left-aligned independent of align_left (for correct-looking results, tabwidth must correspond to the tab width in the viewer displaying the result)`, Value: "\t", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "vertical-bars", Usage: "Set to true to print vertical bars between columns", }, }, } - idFlag = cli.Int64Flag{ + idFlag = &cli.Int64Flag{ Name: "id", Usage: "ID of authentication source", } @@ -270,91 +274,91 @@ var ( } oauthCLIFlags = []cli.Flag{ - cli.StringFlag{ + &cli.StringFlag{ Name: "name", Value: "", Usage: "Application Name", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "provider", Value: "", Usage: "OAuth2 Provider", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "key", Value: "", Usage: "Client ID (Key)", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "secret", Value: "", Usage: "Client Secret", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "auto-discover-url", Value: "", Usage: "OpenID Connect Auto Discovery URL (only required when using OpenID Connect as provider)", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "use-custom-urls", Value: "false", Usage: "Use custom URLs for GitLab/GitHub OAuth endpoints", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "custom-auth-url", Value: "", Usage: "Use a custom Authorization URL (option for GitLab/GitHub)", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "custom-token-url", Value: "", Usage: "Use a custom Token URL (option for GitLab/GitHub)", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "custom-profile-url", Value: "", Usage: "Use a custom Profile URL (option for GitLab/GitHub)", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "custom-email-url", Value: "", Usage: "Use a custom Email URL (option for GitHub)", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "icon-url", Value: "", Usage: "Custom icon URL for OAuth2 login source", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "skip-local-2fa", Usage: "Set to true to skip local 2fa for users authenticated by this source", }, - cli.StringSliceFlag{ + &cli.StringSliceFlag{ Name: "scopes", Value: nil, Usage: "Scopes to request when to authenticate against this OAuth2 source", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "required-claim-name", Value: "", Usage: "Claim name that has to be set to allow users to login with this source", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "required-claim-value", Value: "", Usage: "Claim value that has to be set to allow users to login with this source", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "group-claim-name", Value: "", Usage: "Claim name providing group names for this source", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "admin-group", Value: "", Usage: "Group Claim value for administrator users", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "restricted-group", Value: "", Usage: "Group Claim value for restricted users", @@ -380,72 +384,78 @@ var ( Usage: "Send a message to all users", Action: runSendMail, Flags: []cli.Flag{ - cli.StringFlag{ + &cli.StringFlag{ Name: "title", Usage: `a title of a message`, Value: "", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "content", Usage: "a content of a message", Value: "", }, - cli.BoolFlag{ - Name: "force,f", - Usage: "A flag to bypass a confirmation step", + &cli.BoolFlag{ + Name: "force", + Aliases: []string{"f"}, + Usage: "A flag to bypass a confirmation step", }, }, } smtpCLIFlags = []cli.Flag{ - cli.StringFlag{ + &cli.StringFlag{ Name: "name", Value: "", Usage: "Application Name", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "auth-type", Value: "PLAIN", Usage: "SMTP Authentication Type (PLAIN/LOGIN/CRAM-MD5) default PLAIN", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "host", Value: "", Usage: "SMTP Host", }, - cli.IntFlag{ + &cli.IntFlag{ Name: "port", Usage: "SMTP Port", }, - cli.BoolTFlag{ + &cli.BoolFlag{ Name: "force-smtps", Usage: "SMTPS is always used on port 465. Set this to force SMTPS on other ports.", + Value: true, }, - cli.BoolTFlag{ + &cli.BoolFlag{ Name: "skip-verify", Usage: "Skip TLS verify.", + Value: true, }, - cli.StringFlag{ + &cli.StringFlag{ Name: "helo-hostname", Value: "", Usage: "Hostname sent with HELO. Leave blank to send current hostname", }, - cli.BoolTFlag{ + &cli.BoolFlag{ Name: "disable-helo", Usage: "Disable SMTP helo.", + Value: true, }, - cli.StringFlag{ + &cli.StringFlag{ Name: "allowed-domains", Value: "", Usage: "Leave empty to allow all domains. Separate multiple domains with a comma (',')", }, - cli.BoolTFlag{ + &cli.BoolFlag{ Name: "skip-local-2fa", Usage: "Skip 2FA to log on.", + Value: true, }, - cli.BoolTFlag{ + &cli.BoolFlag{ Name: "active", Usage: "This Authentication Source is Activated.", + Value: true, }, } @@ -960,19 +970,19 @@ func parseSMTPConfig(c *cli.Context, conf *smtp.Source) error { conf.AllowedDomains = c.String("allowed-domains") } if c.IsSet("force-smtps") { - conf.ForceSMTPS = c.BoolT("force-smtps") + conf.ForceSMTPS = c.Bool("force-smtps") } if c.IsSet("skip-verify") { - conf.SkipVerify = c.BoolT("skip-verify") + conf.SkipVerify = c.Bool("skip-verify") } if c.IsSet("helo-hostname") { conf.HeloHostname = c.String("helo-hostname") } if c.IsSet("disable-helo") { - conf.DisableHelo = c.BoolT("disable-helo") + conf.DisableHelo = c.Bool("disable-helo") } if c.IsSet("skip-local-2fa") { - conf.SkipLocalTwoFA = c.BoolT("skip-local-2fa") + conf.SkipLocalTwoFA = c.Bool("skip-local-2fa") } return nil } @@ -996,7 +1006,7 @@ func runAddSMTP(c *cli.Context) error { } active := true if c.IsSet("active") { - active = c.BoolT("active") + active = c.Bool("active") } var smtpConfig smtp.Source @@ -1045,7 +1055,7 @@ func runUpdateSMTP(c *cli.Context) error { } if c.IsSet("active") { - source.IsActive = c.BoolT("active") + source.IsActive = c.Bool("active") } source.Cfg = smtpConfig diff --git a/cmd/admin_auth_ldap.go b/cmd/admin_auth_ldap.go index ec86b2c671d47..56301335893d5 100644 --- a/cmd/admin_auth_ldap.go +++ b/cmd/admin_auth_ldap.go @@ -12,7 +12,7 @@ import ( "code.gitea.io/gitea/models/auth" "code.gitea.io/gitea/services/auth/source/ldap" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) type ( @@ -26,104 +26,104 @@ type ( var ( commonLdapCLIFlags = []cli.Flag{ - cli.StringFlag{ + &cli.StringFlag{ Name: "name", Usage: "Authentication name.", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "not-active", Usage: "Deactivate the authentication source.", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "security-protocol", Usage: "Security protocol name.", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "skip-tls-verify", Usage: "Disable TLS verification.", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "host", Usage: "The address where the LDAP server can be reached.", }, - cli.IntFlag{ + &cli.IntFlag{ Name: "port", Usage: "The port to use when connecting to the LDAP server.", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "user-search-base", Usage: "The LDAP base at which user accounts will be searched for.", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "user-filter", Usage: "An LDAP filter declaring how to find the user record that is attempting to authenticate.", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "admin-filter", Usage: "An LDAP filter specifying if a user should be given administrator privileges.", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "restricted-filter", Usage: "An LDAP filter specifying if a user should be given restricted status.", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "allow-deactivate-all", Usage: "Allow empty search results to deactivate all users.", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "username-attribute", Usage: "The attribute of the user’s LDAP record containing the user name.", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "firstname-attribute", Usage: "The attribute of the user’s LDAP record containing the user’s first name.", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "surname-attribute", Usage: "The attribute of the user’s LDAP record containing the user’s surname.", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "email-attribute", Usage: "The attribute of the user’s LDAP record containing the user’s email address.", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "public-ssh-key-attribute", Usage: "The attribute of the user’s LDAP record containing the user’s public ssh key.", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "skip-local-2fa", Usage: "Set to true to skip local 2fa for users authenticated by this source", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "avatar-attribute", Usage: "The attribute of the user’s LDAP record containing the user’s avatar.", }, } ldapBindDnCLIFlags = append(commonLdapCLIFlags, - cli.StringFlag{ + &cli.StringFlag{ Name: "bind-dn", Usage: "The DN to bind to the LDAP server with when searching for the user.", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "bind-password", Usage: "The password for the Bind DN, if any.", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "attributes-in-bind", Usage: "Fetch attributes in bind DN context.", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "synchronize-users", Usage: "Enable user synchronization.", }, - cli.UintFlag{ + &cli.UintFlag{ Name: "page-size", Usage: "Search page size.", }) ldapSimpleAuthCLIFlags = append(commonLdapCLIFlags, - cli.StringFlag{ + &cli.StringFlag{ Name: "user-dn", Usage: "The user’s DN.", }) diff --git a/cmd/admin_auth_ldap_test.go b/cmd/admin_auth_ldap_test.go index f050b536fdf50..0ae45b7a0aeba 100644 --- a/cmd/admin_auth_ldap_test.go +++ b/cmd/admin_auth_ldap_test.go @@ -12,7 +12,7 @@ import ( "code.gitea.io/gitea/services/auth/source/ldap" "github.com/stretchr/testify/assert" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) func TestAddLdapBindDn(t *testing.T) { diff --git a/cmd/cert.go b/cmd/cert.go index 162c4171bfb29..4d9466546cdb3 100644 --- a/cmd/cert.go +++ b/cmd/cert.go @@ -21,7 +21,7 @@ import ( "strings" "time" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) // CmdCert represents the available cert sub-command. @@ -32,32 +32,32 @@ var CmdCert = cli.Command{ Outputs to 'cert.pem' and 'key.pem' and will overwrite existing files.`, Action: runCert, Flags: []cli.Flag{ - cli.StringFlag{ + &cli.StringFlag{ Name: "host", Value: "", Usage: "Comma-separated hostnames and IPs to generate a certificate for", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "ecdsa-curve", Value: "", Usage: "ECDSA curve to use to generate a key. Valid values are P224, P256, P384, P521", }, - cli.IntFlag{ + &cli.IntFlag{ Name: "rsa-bits", Value: 2048, Usage: "Size of RSA key to generate. Ignored if --ecdsa-curve is set", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "start-date", Value: "", Usage: "Creation date formatted as Jan 1 15:04:05 2011", }, - cli.DurationFlag{ + &cli.DurationFlag{ Name: "duration", Value: 365 * 24 * time.Hour, Usage: "Duration that certificate is valid for", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "ca", Usage: "whether this cert should be its own Certificate Authority", }, diff --git a/cmd/cmd.go b/cmd/cmd.go index 3846a8690020f..784c7e844ae23 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -20,7 +20,7 @@ import ( "code.gitea.io/gitea/modules/setting" "code.gitea.io/gitea/modules/util" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) // argsSet checks that all the required arguments are set. args is a list of diff --git a/cmd/convert.go b/cmd/convert.go index 6d4d99a255040..08d7080a65f2b 100644 --- a/cmd/convert.go +++ b/cmd/convert.go @@ -11,7 +11,7 @@ import ( "code.gitea.io/gitea/modules/log" "code.gitea.io/gitea/modules/setting" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) // CmdConvert represents the available convert sub-command. diff --git a/cmd/docs.go b/cmd/docs.go index 073c57497305f..94e3e98249ed5 100644 --- a/cmd/docs.go +++ b/cmd/docs.go @@ -7,9 +7,8 @@ package cmd import ( "fmt" "os" - "strings" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) // CmdDocs represents the available docs sub-command. @@ -24,8 +23,9 @@ var CmdDocs = cli.Command{ Usage: "Output man pages instead", }, &cli.StringFlag{ - Name: "output, o", - Usage: "Path to output to instead of stdout (will overwrite if exists)", + Name: "output", + Aliases: []string{"o"}, + Usage: "Path to output to instead of stdout (will overwrite if exists)", }, }, } @@ -39,17 +39,6 @@ func runDocs(ctx *cli.Context) error { return err } - if !ctx.Bool("man") { - // Clean up markdown. The following bug was fixed in v2, but is present in v1. - // It affects markdown output (even though the issue is referring to man pages) - // https://github.com/urfave/cli/issues/1040 - firstHashtagIndex := strings.Index(docs, "#") - - if firstHashtagIndex > 0 { - docs = docs[firstHashtagIndex:] - } - } - out := os.Stdout if ctx.String("output") != "" { fi, err := os.Create(ctx.String("output")) diff --git a/cmd/doctor.go b/cmd/doctor.go index 10f62f32c16b2..2e4e7fd031fce 100644 --- a/cmd/doctor.go +++ b/cmd/doctor.go @@ -17,7 +17,7 @@ import ( "code.gitea.io/gitea/modules/log" "code.gitea.io/gitea/modules/setting" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" "xorm.io/xorm" ) @@ -28,37 +28,38 @@ var CmdDoctor = cli.Command{ Description: "A command to diagnose problems with the current Gitea instance according to the given configuration.", Action: runDoctor, Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "list", Usage: "List the available checks", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "default", Usage: "Run the default checks (if neither --run or --all is set, this is the default behaviour)", }, - cli.StringSliceFlag{ + &cli.StringSliceFlag{ Name: "run", Usage: "Run the provided checks - (if --default is set, the default checks will also run)", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "all", Usage: "Run all the available checks", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "fix", Usage: "Automatically fix what we can", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "log-file", Usage: `Name of the log file (default: "doctor.log"). Set to "-" to output to stdout, set to "" to disable`, }, - cli.BoolFlag{ - Name: "color, H", - Usage: "Use color for outputted information", + &cli.BoolFlag{ + Name: "color", + Aliases: []string{"H"}, + Usage: "Use color for outputted information", }, }, - Subcommands: []cli.Command{ - cmdRecreateTable, + Subcommands: []*cli.Command{ + &cmdRecreateTable, }, } @@ -67,7 +68,7 @@ var cmdRecreateTable = cli.Command{ Usage: "Recreate tables from XORM definitions and copy the data.", ArgsUsage: "[TABLE]... : (TABLEs to recreate - leave blank for all)", Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "debug", Usage: "Print SQL commands sent", }, diff --git a/cmd/dump.go b/cmd/dump.go index ea41c0c029d9b..6cb2ae9753247 100644 --- a/cmd/dump.go +++ b/cmd/dump.go @@ -23,7 +23,7 @@ import ( "gitea.com/go-chi/session" archiver "github.com/mholt/archiver/v3" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) func addReader(w archiver.Writer, r io.ReadCloser, info os.FileInfo, customName string, verbose bool) error { @@ -104,49 +104,55 @@ var CmdDump = cli.Command{ It can be used for backup and capture Gitea server image to send to maintainer`, Action: runDump, Flags: []cli.Flag{ - cli.StringFlag{ - Name: "file, f", - Value: fmt.Sprintf("gitea-dump-%d.zip", time.Now().Unix()), - Usage: "Name of the dump file which will be created. Supply '-' for stdout. See type for available types.", + &cli.StringFlag{ + Name: "file", + Aliases: []string{"f"}, + Value: fmt.Sprintf("gitea-dump-%d.zip", time.Now().Unix()), + Usage: "Name of the dump file which will be created. Supply '-' for stdout. See type for available types.", }, - cli.BoolFlag{ - Name: "verbose, V", - Usage: "Show process details", + &cli.BoolFlag{ + Name: "verbose", + Aliases: []string{"V"}, + Usage: "Show process details", }, - cli.StringFlag{ - Name: "tempdir, t", - Value: os.TempDir(), - Usage: "Temporary dir path", + &cli.StringFlag{ + Name: "tempdir", + Aliases: []string{"t"}, + Value: os.TempDir(), + Usage: "Temporary dir path", }, - cli.StringFlag{ - Name: "database, d", - Usage: "Specify the database SQL syntax", + &cli.StringFlag{ + Name: "database", + Aliases: []string{"d"}, + Usage: "Specify the database SQL syntax", }, - cli.BoolFlag{ - Name: "skip-repository, R", - Usage: "Skip the repository dumping", + &cli.BoolFlag{ + Name: "skip-repository", + Aliases: []string{"R"}, + Usage: "Skip the repository dumping", }, - cli.BoolFlag{ - Name: "skip-log, L", - Usage: "Skip the log dumping", + &cli.BoolFlag{ + Name: "skip-log", + Aliases: []string{"L"}, + Usage: "Skip the log dumping", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "skip-custom-dir", Usage: "Skip custom directory", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "skip-lfs-data", Usage: "Skip LFS data", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "skip-attachment-data", Usage: "Skip attachment data", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "skip-package-data", Usage: "Skip package data", }, - cli.GenericFlag{ + &cli.GenericFlag{ Name: "type", Value: outputTypeEnum, Usage: fmt.Sprintf("Dump output format: %s", outputTypeEnum.Join()), diff --git a/cmd/dump_repo.go b/cmd/dump_repo.go index e980af30110aa..3f9ad5293f44e 100644 --- a/cmd/dump_repo.go +++ b/cmd/dump_repo.go @@ -16,7 +16,7 @@ import ( "code.gitea.io/gitea/modules/structs" "code.gitea.io/gitea/services/migrations" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) // CmdDumpRepository represents the available dump repository sub-command. @@ -26,47 +26,48 @@ var CmdDumpRepository = cli.Command{ Description: "This is a command for dumping the repository data.", Action: runDumpRepository, Flags: []cli.Flag{ - cli.StringFlag{ + &cli.StringFlag{ Name: "git_service", Value: "", Usage: "Git service, git, github, gitea, gitlab. If clone_addr could be recognized, this could be ignored.", }, - cli.StringFlag{ - Name: "repo_dir, r", - Value: "./data", - Usage: "Repository dir path to store the data", + &cli.StringFlag{ + Name: "repo_dir", + Aliases: []string{"r"}, + Value: "./data", + Usage: "Repository dir path to store the data", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "clone_addr", Value: "", Usage: "The URL will be clone, currently could be a git/github/gitea/gitlab http/https URL", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "auth_username", Value: "", Usage: "The username to visit the clone_addr", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "auth_password", Value: "", Usage: "The password to visit the clone_addr", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "auth_token", Value: "", Usage: "The personal token to visit the clone_addr", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "owner_name", Value: "", Usage: "The data will be stored on a directory with owner name if not empty", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "repo_name", Value: "", Usage: "The data will be stored on a directory with repository name if not empty", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "units", Value: "", Usage: `Which items will be migrated, one or more units should be separated as comma. diff --git a/cmd/embedded.go b/cmd/embedded.go index 30fc7103d838b..38abfda4bf7c6 100644 --- a/cmd/embedded.go +++ b/cmd/embedded.go @@ -22,7 +22,7 @@ import ( "code.gitea.io/gitea/modules/util" "github.com/gobwas/glob" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) // Cmdembedded represents the available extract sub-command. @@ -31,10 +31,10 @@ var ( Name: "embedded", Usage: "Extract embedded resources", Description: "A command for extracting embedded resources, like templates and images", - Subcommands: []cli.Command{ - subcmdList, - subcmdView, - subcmdExtract, + Subcommands: []*cli.Command{ + &subcmdList, + &subcmdView, + &subcmdExtract, }, } @@ -43,9 +43,10 @@ var ( Usage: "List files matching the given pattern", Action: runList, Flags: []cli.Flag{ - cli.BoolFlag{ - Name: "include-vendored,vendor", - Usage: "Include files under public/vendor as well", + &cli.BoolFlag{ + Name: "include-vendored", + Aliases: []string{"vendor"}, + Usage: "Include files under public/vendor as well", }, }, } @@ -55,9 +56,10 @@ var ( Usage: "View a file matching the given pattern", Action: runView, Flags: []cli.Flag{ - cli.BoolFlag{ - Name: "include-vendored,vendor", - Usage: "Include files under public/vendor as well", + &cli.BoolFlag{ + Name: "include-vendored", + Aliases: []string{"vendor"}, + Usage: "Include files under public/vendor as well", }, }, } @@ -67,25 +69,27 @@ var ( Usage: "Extract resources", Action: runExtract, Flags: []cli.Flag{ - cli.BoolFlag{ - Name: "include-vendored,vendor", - Usage: "Include files under public/vendor as well", + &cli.BoolFlag{ + Name: "include-vendored", + Aliases: []string{"vendor"}, + Usage: "Include files under public/vendor as well", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "overwrite", Usage: "Overwrite files if they already exist", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "rename", Usage: "Rename files as {name}.bak if they already exist (overwrites previous .bak)", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "custom", Usage: "Extract to the 'custom' directory as per app.ini", }, - cli.StringFlag{ - Name: "destination,dest-dir", - Usage: "Extract to the specified directory", + &cli.StringFlag{ + Name: "destination", + Aliases: []string{"dest-dir"}, + Usage: "Extract to the specified directory", }, }, } @@ -115,7 +119,7 @@ func initEmbeddedExtractor(c *cli.Context) error { // Read configuration file setting.LoadAllowEmpty() - pats, err := getPatterns(c.Args()) + pats, err := getPatterns(c.Args().Slice()) if err != nil { return err } @@ -201,7 +205,7 @@ func runExtractDo(c *cli.Context) error { return err } - if len(c.Args()) == 0 { + if c.Args().Len() == 0 { return fmt.Errorf("A list of pattern of files to extract is mandatory (e.g. '**' for all)") } diff --git a/cmd/embedded_stub.go b/cmd/embedded_stub.go index 26228256f2a05..459e4fb6dabf3 100644 --- a/cmd/embedded_stub.go +++ b/cmd/embedded_stub.go @@ -10,7 +10,7 @@ import ( "fmt" "os" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) // Cmdembedded represents the available extract sub-command. diff --git a/cmd/generate.go b/cmd/generate.go index 35c77a815b1d9..cdc19008635f2 100644 --- a/cmd/generate.go +++ b/cmd/generate.go @@ -12,7 +12,7 @@ import ( "code.gitea.io/gitea/modules/generate" "github.com/mattn/go-isatty" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) var ( @@ -20,18 +20,18 @@ var ( CmdGenerate = cli.Command{ Name: "generate", Usage: "Command line interface for running generators", - Subcommands: []cli.Command{ - subcmdSecret, + Subcommands: []*cli.Command{ + &subcmdSecret, }, } subcmdSecret = cli.Command{ Name: "secret", Usage: "Generate a secret token", - Subcommands: []cli.Command{ - microcmdGenerateInternalToken, - microcmdGenerateLfsJwtSecret, - microcmdGenerateSecretKey, + Subcommands: []*cli.Command{ + µcmdGenerateInternalToken, + µcmdGenerateLfsJwtSecret, + µcmdGenerateSecretKey, }, } diff --git a/cmd/hook.go b/cmd/hook.go index 8078763b183fd..36912ebed07ac 100644 --- a/cmd/hook.go +++ b/cmd/hook.go @@ -21,7 +21,7 @@ import ( "code.gitea.io/gitea/modules/setting" "code.gitea.io/gitea/modules/util" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) const ( @@ -34,11 +34,11 @@ var ( Name: "hook", Usage: "Delegate commands to corresponding Git hooks", Description: "This should only be called by Git", - Subcommands: []cli.Command{ - subcmdHookPreReceive, - subcmdHookUpdate, - subcmdHookPostReceive, - subcmdHookProcReceive, + Subcommands: []*cli.Command{ + &subcmdHookPreReceive, + &subcmdHookUpdate, + &subcmdHookPostReceive, + &subcmdHookProcReceive, }, } @@ -48,7 +48,7 @@ var ( Description: "This command should only be called by Git", Action: runHookPreReceive, Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "debug", }, }, @@ -59,7 +59,7 @@ var ( Description: "This command should only be called by Git", Action: runHookUpdate, Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "debug", }, }, @@ -70,7 +70,7 @@ var ( Description: "This command should only be called by Git", Action: runHookPostReceive, Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "debug", }, }, @@ -82,7 +82,7 @@ var ( Description: "This command should only be called by Git", Action: runHookProcReceive, Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "debug", }, }, diff --git a/cmd/keys.go b/cmd/keys.go index 684aca64e22ab..cfbf7346a30aa 100644 --- a/cmd/keys.go +++ b/cmd/keys.go @@ -11,7 +11,7 @@ import ( "code.gitea.io/gitea/modules/private" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) // CmdKeys represents the available keys sub-command @@ -20,25 +20,29 @@ var CmdKeys = cli.Command{ Usage: "This command queries the Gitea database to get the authorized command for a given ssh key fingerprint", Action: runKeys, Flags: []cli.Flag{ - cli.StringFlag{ - Name: "expected, e", - Value: "git", - Usage: "Expected user for whom provide key commands", + &cli.StringFlag{ + Name: "expected", + Aliases: []string{"e"}, + Value: "git", + Usage: "Expected user for whom provide key commands", }, - cli.StringFlag{ - Name: "username, u", - Value: "", - Usage: "Username trying to log in by SSH", + &cli.StringFlag{ + Name: "username", + Aliases: []string{"u"}, + Value: "", + Usage: "Username trying to log in by SSH", }, - cli.StringFlag{ - Name: "type, t", - Value: "", - Usage: "Type of the SSH key provided to the SSH Server (requires content to be provided too)", + &cli.StringFlag{ + Name: "type", + Aliases: []string{"t"}, + Value: "", + Usage: "Type of the SSH key provided to the SSH Server (requires content to be provided too)", }, - cli.StringFlag{ - Name: "content, k", - Value: "", - Usage: "Base64 encoded content of the SSH key provided to the SSH Server (requires type to be provided too)", + &cli.StringFlag{ + Name: "content", + Aliases: []string{"k"}, + Value: "", + Usage: "Base64 encoded content of the SSH key provided to the SSH Server (requires type to be provided too)", }, }, } diff --git a/cmd/mailer.go b/cmd/mailer.go index 35fcb302f8970..b6d01cac1317b 100644 --- a/cmd/mailer.go +++ b/cmd/mailer.go @@ -11,7 +11,7 @@ import ( "code.gitea.io/gitea/modules/private" "code.gitea.io/gitea/modules/setting" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) func runSendMail(c *cli.Context) error { diff --git a/cmd/manager.go b/cmd/manager.go index 03fe23aa9e3f0..2c36637ee06c5 100644 --- a/cmd/manager.go +++ b/cmd/manager.go @@ -12,7 +12,7 @@ import ( "code.gitea.io/gitea/modules/private" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) var ( @@ -21,19 +21,19 @@ var ( Name: "manager", Usage: "Manage the running gitea process", Description: "This is a command for managing the running gitea process", - Subcommands: []cli.Command{ - subcmdShutdown, - subcmdRestart, - subcmdFlushQueues, - subcmdLogging, - subCmdProcesses, + Subcommands: []*cli.Command{ + &subcmdShutdown, + &subcmdRestart, + &subcmdFlushQueues, + &subcmdLogging, + &subCmdProcesses, }, } subcmdShutdown = cli.Command{ Name: "shutdown", Usage: "Gracefully shutdown the running process", Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "debug", }, }, @@ -43,7 +43,7 @@ var ( Name: "restart", Usage: "Gracefully restart the running process - (not implemented for windows servers)", Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "debug", }, }, @@ -54,16 +54,16 @@ var ( Usage: "Flush queues in the running process", Action: runFlushQueues, Flags: []cli.Flag{ - cli.DurationFlag{ + &cli.DurationFlag{ Name: "timeout", Value: 60 * time.Second, Usage: "Timeout for the flushing process", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "non-blocking", Usage: "Set to true to not wait for flush to complete before returning", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "debug", }, }, @@ -73,26 +73,26 @@ var ( Usage: "Display running processes within the current process", Action: runProcesses, Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "debug", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "flat", Usage: "Show processes as flat table rather than as tree", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "no-system", Usage: "Do not show system proceses", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "stacktraces", Usage: "Show stacktraces", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "json", Usage: "Output as json", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "cancel", Usage: "Process PID to cancel. (Only available for non-system processes.)", }, diff --git a/cmd/manager_logging.go b/cmd/manager_logging.go index 0043ea1e52ad4..b3ecc10ea9ba3 100644 --- a/cmd/manager_logging.go +++ b/cmd/manager_logging.go @@ -12,36 +12,44 @@ import ( "code.gitea.io/gitea/modules/log" "code.gitea.io/gitea/modules/private" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) var ( defaultLoggingFlags = []cli.Flag{ - cli.StringFlag{ + &cli.StringFlag{ Name: "group, g", Usage: "Group to add logger to - will default to \"default\"", - }, cli.StringFlag{ + }, + &cli.StringFlag{ Name: "name, n", Usage: "Name of the new logger - will default to mode", - }, cli.StringFlag{ + }, + &cli.StringFlag{ Name: "level, l", Usage: "Logging level for the new logger", - }, cli.StringFlag{ + }, + &cli.StringFlag{ Name: "stacktrace-level, L", Usage: "Stacktrace logging level", - }, cli.StringFlag{ + }, + &cli.StringFlag{ Name: "flags, F", Usage: "Flags for the logger", - }, cli.StringFlag{ + }, + &cli.StringFlag{ Name: "expression, e", Usage: "Matching expression for the logger", - }, cli.StringFlag{ + }, + &cli.StringFlag{ Name: "prefix, p", Usage: "Prefix for the logger", - }, cli.BoolFlag{ + }, + &cli.BoolFlag{ Name: "color", Usage: "Use color in the logs", - }, cli.BoolFlag{ + }, + &cli.BoolFlag{ Name: "debug", }, } @@ -49,12 +57,12 @@ var ( subcmdLogging = cli.Command{ Name: "logging", Usage: "Adjust logging commands", - Subcommands: []cli.Command{ + Subcommands: []*cli.Command{ { Name: "pause", Usage: "Pause logging (Gitea will buffer logs up to a certain point and will drop them after that point)", Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "debug", }, }, @@ -63,7 +71,7 @@ var ( Name: "resume", Usage: "Resume logging", Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "debug", }, }, @@ -72,7 +80,7 @@ var ( Name: "release-and-reopen", Usage: "Cause Gitea to release and re-open files used for logging", Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "debug", }, }, @@ -82,9 +90,10 @@ var ( Usage: "Remove a logger", ArgsUsage: "[name] Name of logger to remove", Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "debug", - }, cli.StringFlag{ + }, + &cli.StringFlag{ Name: "group, g", Usage: "Group to add logger to - will default to \"default\"", }, @@ -93,12 +102,12 @@ var ( }, { Name: "add", Usage: "Add a logger", - Subcommands: []cli.Command{ + Subcommands: []*cli.Command{ { Name: "console", Usage: "Add a console logger", Flags: append(defaultLoggingFlags, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "stderr", Usage: "Output console logs to stderr - only relevant for console", }), @@ -107,25 +116,34 @@ var ( Name: "file", Usage: "Add a file logger", Flags: append(defaultLoggingFlags, []cli.Flag{ - cli.StringFlag{ + &cli.StringFlag{ Name: "filename, f", Usage: "Filename for the logger - this must be set.", - }, cli.BoolTFlag{ + }, + &cli.BoolFlag{ Name: "rotate, r", Usage: "Rotate logs", - }, cli.Int64Flag{ + Value: true, + }, + &cli.Int64Flag{ Name: "max-size, s", Usage: "Maximum size in bytes before rotation", - }, cli.BoolTFlag{ + }, + &cli.BoolFlag{ Name: "daily, d", Usage: "Rotate logs daily", - }, cli.IntFlag{ + Value: true, + }, + &cli.IntFlag{ Name: "max-days, D", Usage: "Maximum number of daily logs to keep", - }, cli.BoolTFlag{ + }, + &cli.BoolFlag{ Name: "compress, z", Usage: "Compress rotated logs", - }, cli.IntFlag{ + Value: true, + }, + &cli.IntFlag{ Name: "compression-level, Z", Usage: "Compression level to use", }, @@ -135,16 +153,19 @@ var ( Name: "conn", Usage: "Add a net conn logger", Flags: append(defaultLoggingFlags, []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "reconnect-on-message, R", Usage: "Reconnect to host for every message", - }, cli.BoolFlag{ + }, + &cli.BoolFlag{ Name: "reconnect, r", Usage: "Reconnect to host when connection is dropped", - }, cli.StringFlag{ + }, + &cli.StringFlag{ Name: "protocol, P", Usage: "Set protocol to use: tcp, unix, or udp (defaults to tcp)", - }, cli.StringFlag{ + }, + &cli.StringFlag{ Name: "address, a", Usage: "Host address and port to connect to (defaults to :7020)", }, @@ -154,19 +175,23 @@ var ( Name: "smtp", Usage: "Add an SMTP logger", Flags: append(defaultLoggingFlags, []cli.Flag{ - cli.StringFlag{ + &cli.StringFlag{ Name: "username, u", Usage: "Mail server username", - }, cli.StringFlag{ + }, + &cli.StringFlag{ Name: "password, P", Usage: "Mail server password", - }, cli.StringFlag{ + }, + &cli.StringFlag{ Name: "host, H", Usage: "Mail server host (defaults to: 127.0.0.1:25)", - }, cli.StringSliceFlag{ + }, + &cli.StringSliceFlag{ Name: "send-to, s", Usage: "Email address(es) to send to", - }, cli.StringFlag{ + }, + &cli.StringFlag{ Name: "subject, S", Usage: "Subject header of sent emails", }, diff --git a/cmd/migrate.go b/cmd/migrate.go index 49a13adeb5672..f15306dccd41d 100644 --- a/cmd/migrate.go +++ b/cmd/migrate.go @@ -12,7 +12,7 @@ import ( "code.gitea.io/gitea/modules/log" "code.gitea.io/gitea/modules/setting" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) // CmdMigrate represents the available migrate sub-command. diff --git a/cmd/migrate_storage.go b/cmd/migrate_storage.go index f9770d50e74c8..5389fc3730328 100644 --- a/cmd/migrate_storage.go +++ b/cmd/migrate_storage.go @@ -18,7 +18,7 @@ import ( "code.gitea.io/gitea/modules/setting" "code.gitea.io/gitea/modules/storage" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) // CmdMigrateStorage represents the available migrate storage sub-command. @@ -28,52 +28,55 @@ var CmdMigrateStorage = cli.Command{ Description: "This is a command for migrating storage.", Action: runMigrateStorage, Flags: []cli.Flag{ - cli.StringFlag{ - Name: "type, t", - Value: "", - Usage: "Kinds of files to migrate, currently only 'attachments' is supported", + &cli.StringFlag{ + Name: "type", + Aliases: []string{"t"}, + Value: "", + Usage: "Kinds of files to migrate, currently only 'attachments' is supported", }, - cli.StringFlag{ - Name: "storage, s", - Value: "", - Usage: "New storage type: local (default) or minio", + &cli.StringFlag{ + Name: "storage", + Aliases: []string{"s"}, + Value: "", + Usage: "New storage type: local (default) or minio", }, - cli.StringFlag{ - Name: "path, p", - Value: "", - Usage: "New storage placement if store is local (leave blank for default)", + &cli.StringFlag{ + Name: "path", + Aliases: []string{"p"}, + Value: "", + Usage: "New storage placement if store is local (leave blank for default)", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "minio-endpoint", Value: "", Usage: "Minio storage endpoint", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "minio-access-key-id", Value: "", Usage: "Minio storage accessKeyID", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "minio-secret-access-key", Value: "", Usage: "Minio storage secretAccessKey", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "minio-bucket", Value: "", Usage: "Minio storage bucket", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "minio-location", Value: "", Usage: "Minio storage location to create bucket", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "minio-base-path", Value: "", Usage: "Minio storage basepath on the bucket", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "minio-use-ssl", Usage: "Enable SSL for minio", }, diff --git a/cmd/restore_repo.go b/cmd/restore_repo.go index f0b01e7984c7f..48cbd571c6caf 100644 --- a/cmd/restore_repo.go +++ b/cmd/restore_repo.go @@ -12,7 +12,7 @@ import ( "code.gitea.io/gitea/modules/private" "code.gitea.io/gitea/modules/setting" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) // CmdRestoreRepository represents the available restore a repository sub-command. @@ -22,28 +22,29 @@ var CmdRestoreRepository = cli.Command{ Description: "This is a command for restoring the repository data.", Action: runRestoreRepository, Flags: []cli.Flag{ - cli.StringFlag{ - Name: "repo_dir, r", - Value: "./data", - Usage: "Repository dir path to restore from", + &cli.StringFlag{ + Name: "repo_dir", + Aliases: []string{"r"}, + Value: "./data", + Usage: "Repository dir path to restore from", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "owner_name", Value: "", Usage: "Restore destination owner name", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "repo_name", Value: "", Usage: "Restore destination repository name", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "units", Value: "", Usage: `Which items will be restored, one or more units should be separated as comma. wiki, issues, labels, releases, release_assets, milestones, pull_requests, comments are allowed. Empty means all units.`, }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "validation", Usage: "Sanity check the content of the files before trying to load them", }, diff --git a/cmd/serv.go b/cmd/serv.go index 340f591dce0b3..e88bbdf7813de 100644 --- a/cmd/serv.go +++ b/cmd/serv.go @@ -30,7 +30,7 @@ import ( "github.com/golang-jwt/jwt/v4" "github.com/kballard/go-shellquote" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) const ( @@ -44,10 +44,10 @@ var CmdServ = cli.Command{ Description: `Serv provide access auth for repositories`, Action: runServ, Flags: []cli.Flag{ - cli.BoolFlag{ + &cli.BoolFlag{ Name: "enable-pprof", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "debug", }, }, @@ -93,7 +93,7 @@ func fail(userMessage, logMessage string, args ...interface{}) error { if len(logMessage) > 0 { _ = private.SSHLog(ctx, true, fmt.Sprintf(logMessage+": ", args...)) } - return cli.NewExitError("", 1) + return cli.Exit("", 1) } func runServ(c *cli.Context) error { @@ -108,20 +108,20 @@ func runServ(c *cli.Context) error { return nil } - if len(c.Args()) < 1 { + if c.Args().Len() < 1 { if err := cli.ShowSubcommandHelp(c); err != nil { fmt.Printf("error showing subcommand help: %v\n", err) } return nil } - keys := strings.Split(c.Args()[0], "-") + keys := strings.Split(c.Args().First(), "-") if len(keys) != 2 || keys[0] != "key" { - return fail("Key ID format error", "Invalid key argument: %s", c.Args()[0]) + return fail("Key ID format error", "Invalid key argument: %s", c.Args().First()) } keyID, err := strconv.ParseInt(keys[1], 10, 64) if err != nil { - return fail("Key ID format error", "Invalid key argument: %s", c.Args()[1]) + return fail("Key ID format error", "Invalid key argument: %s", c.Args().Get(1)) } cmd := os.Getenv("SSH_ORIGINAL_COMMAND") diff --git a/cmd/web.go b/cmd/web.go index 8c7c026172745..6ee0bdd30fcfc 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -21,7 +21,7 @@ import ( "code.gitea.io/gitea/routers" "code.gitea.io/gitea/routers/install" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ini "gopkg.in/ini.v1" ) @@ -33,26 +33,28 @@ var CmdWeb = cli.Command{ and it takes care of all the other things for you`, Action: runWeb, Flags: []cli.Flag{ - cli.StringFlag{ - Name: "port, p", - Value: "3000", - Usage: "Temporary port number to prevent conflict", + &cli.StringFlag{ + Name: "port", + Aliases: []string{"p"}, + Value: "3000", + Usage: "Temporary port number to prevent conflict", }, - cli.StringFlag{ + &cli.StringFlag{ Name: "install-port", Value: "3000", Usage: "Temporary port number to run the install page on to prevent conflict", }, - cli.StringFlag{ - Name: "pid, P", - Value: setting.PIDFile, - Usage: "Custom pid file path", + &cli.StringFlag{ + Name: "pid", + Aliases: []string{"P"}, + Value: setting.PIDFile, + Usage: "Custom pid file path", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "quiet, q", Usage: "Only display Fatal logging errors until logging is set-up", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "verbose", Usage: "Set initial logging to TRACE level until logging is properly set-up", }, diff --git a/contrib/environment-to-ini/environment-to-ini.go b/contrib/environment-to-ini/environment-to-ini.go index ccda03fa92555..c71cacc26aebf 100644 --- a/contrib/environment-to-ini/environment-to-ini.go +++ b/contrib/environment-to-ini/environment-to-ini.go @@ -14,7 +14,7 @@ import ( "code.gitea.io/gitea/modules/setting" "code.gitea.io/gitea/modules/util" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ini "gopkg.in/ini.v1" ) @@ -51,34 +51,39 @@ func main() { and "GITEA__LOG_0x2E_CONSOLE__STDERR=false". Other examples can be found on the configuration cheat sheet.` app.Flags = []cli.Flag{ - cli.StringFlag{ - Name: "custom-path, C", - Value: setting.CustomPath, - Usage: "Custom path file path", + &cli.StringFlag{ + Name: "custom-path", + Aliases: []string{"C"}, + Value: setting.CustomPath, + Usage: "Custom path file path", }, - cli.StringFlag{ - Name: "config, c", - Value: setting.CustomConf, - Usage: "Custom configuration file path", + &cli.StringFlag{ + Name: "config", + Aliases: []string{"c"}, + Value: setting.CustomConf, + Usage: "Custom configuration file path", }, - cli.StringFlag{ - Name: "work-path, w", - Value: setting.AppWorkPath, - Usage: "Set the gitea working path", + &cli.StringFlag{ + Name: "work-path", + Aliases: []string{"w"}, + Value: setting.AppWorkPath, + Usage: "Set the gitea working path", }, - cli.StringFlag{ - Name: "out, o", - Value: "", - Usage: "Destination file to write to", + &cli.StringFlag{ + Name: "out", + Aliases: []string{"o"}, + Value: "", + Usage: "Destination file to write to", }, - cli.BoolFlag{ + &cli.BoolFlag{ Name: "clear", Usage: "Clears the matched variables from the environment", }, - cli.StringFlag{ - Name: "prefix, p", - Value: EnvironmentPrefix, - Usage: "Environment prefix to look for - will be suffixed by __ (2 underscores)", + &cli.StringFlag{ + Name: "prefix", + Aliases: []string{"p"}, + Value: EnvironmentPrefix, + Usage: "Environment prefix to look for - will be suffixed by __ (2 underscores)", }, } app.Action = runEnvironmentToIni diff --git a/go.mod b/go.mod index 5ef996769d57b..7edaffc8a01f8 100644 --- a/go.mod +++ b/go.mod @@ -79,7 +79,7 @@ require ( github.com/syndtr/goleveldb v1.0.0 github.com/tstranex/u2f v1.0.0 github.com/unrolled/render v1.4.1 - github.com/urfave/cli v1.22.9 + github.com/urfave/cli/v2 v2.6.0 github.com/xanzy/go-gitlab v0.64.0 github.com/yohcop/openid-go v1.0.0 github.com/yuin/goldmark v1.4.12 @@ -249,6 +249,7 @@ require ( github.com/toqueteos/webbrowser v1.2.0 // indirect github.com/ulikunitz/xz v0.5.10 // indirect github.com/unknwon/com v1.0.1 // indirect + github.com/urfave/cli v1.22.5 // indirect github.com/x448/float16 v0.8.4 // indirect github.com/xanzy/ssh-agent v0.3.1 // indirect github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect diff --git a/go.sum b/go.sum index ae6b0ad83a272..2bccc6183d984 100644 --- a/go.sum +++ b/go.sum @@ -99,6 +99,7 @@ github.com/Azure/go-autorest v12.0.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSW github.com/Azure/go-ntlmssp v0.0.0-20211209120228-48547f28849e h1:ZU22z/2YRFLyf/P4ZwUYSdNCWsMEI0VeyrFoI2rAhJQ= github.com/Azure/go-ntlmssp v0.0.0-20211209120228-48547f28849e/go.mod h1:chxPXzSsl7ZWRAuOIE23GDNzjWuZquvFlgA8xmpunjU= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/BurntSushi/toml v1.1.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/GeertJohan/go.incremental v1.0.0/go.mod h1:6fAjUhbVuX1KcMD3c8TEgVUqmo4seqhv0i0kdATSkM0= @@ -1527,9 +1528,10 @@ github.com/unrolled/render v1.4.1/go.mod h1:cK4RSTTVdND5j9EYEc0LAMOvdG11JeiKjyjf github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/urfave/cli v1.22.4/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= +github.com/urfave/cli v1.22.5 h1:lNq9sAHXK2qfdI8W+GRItjCEkI+2oR4d+MEHy1CKXoU= github.com/urfave/cli v1.22.5/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= -github.com/urfave/cli v1.22.9 h1:cv3/KhXGBGjEXLC4bH0sLuJ9BewaAbpk5oyMOveu4pw= -github.com/urfave/cli v1.22.9/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= +github.com/urfave/cli/v2 v2.6.0 h1:yj2Drkflh8X/zUrkWlWlUjZYHyWN7WMmpVxyxXIUyv8= +github.com/urfave/cli/v2 v2.6.0/go.mod h1:oDzoM7pVwz6wHn5ogWgFUU1s4VJayeQS+aEZDqXIEJs= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8= github.com/vektah/gqlparser v1.1.2/go.mod h1:1ycwN7Ij5njmMkPPAOaRFY4rET2Enx7IkVv3vaXspKw= diff --git a/integrations/cmd_keys_test.go b/integrations/cmd_keys_test.go index 3d4194c33142e..227909cc1c343 100644 --- a/integrations/cmd_keys_test.go +++ b/integrations/cmd_keys_test.go @@ -16,7 +16,7 @@ import ( "code.gitea.io/gitea/modules/setting" "code.gitea.io/gitea/modules/util" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) func Test_CmdKeys(t *testing.T) { diff --git a/main.go b/main.go index 19b9dd63275fc..5a4ce07ac0ee1 100644 --- a/main.go +++ b/main.go @@ -22,7 +22,7 @@ import ( _ "code.gitea.io/gitea/modules/markup/markdown" _ "code.gitea.io/gitea/modules/markup/orgmode" - "github.com/urfave/cli" + "github.com/urfave/cli/v2" ) var ( @@ -56,24 +56,24 @@ func main() { app.Description = `By default, gitea will start serving using the webserver with no arguments - which can alternatively be run by running the subcommand web.` app.Version = Version + formatBuiltWith() - app.Commands = []cli.Command{ - cmd.CmdWeb, - cmd.CmdServ, - cmd.CmdHook, - cmd.CmdDump, - cmd.CmdCert, - cmd.CmdAdmin, - cmd.CmdGenerate, - cmd.CmdMigrate, - cmd.CmdKeys, - cmd.CmdConvert, - cmd.CmdDoctor, - cmd.CmdManager, - cmd.Cmdembedded, - cmd.CmdMigrateStorage, - cmd.CmdDocs, - cmd.CmdDumpRepository, - cmd.CmdRestoreRepository, + app.Commands = []*cli.Command{ + &cmd.CmdWeb, + &cmd.CmdServ, + &cmd.CmdHook, + &cmd.CmdDump, + &cmd.CmdCert, + &cmd.CmdAdmin, + &cmd.CmdGenerate, + &cmd.CmdMigrate, + &cmd.CmdKeys, + &cmd.CmdConvert, + &cmd.CmdDoctor, + &cmd.CmdManager, + &cmd.Cmdembedded, + &cmd.CmdMigrateStorage, + &cmd.CmdDocs, + &cmd.CmdDumpRepository, + &cmd.CmdRestoreRepository, } // Now adjust these commands to add our global configuration options @@ -83,21 +83,24 @@ arguments - which can alternatively be run by running the subcommand web.` // default configuration flags defaultFlags := []cli.Flag{ - cli.StringFlag{ - Name: "custom-path, C", - Value: setting.CustomPath, - Usage: "Custom path file path", + &cli.StringFlag{ + Name: "custom-path", + Aliases: []string{"C"}, + Value: setting.CustomPath, + Usage: "Custom path file path", }, - cli.StringFlag{ - Name: "config, c", - Value: setting.CustomConf, - Usage: "Custom configuration file path", + &cli.StringFlag{ + Name: "config", + Aliases: []string{"c"}, + Value: setting.CustomConf, + Usage: "Custom configuration file path", }, cli.VersionFlag, - cli.StringFlag{ - Name: "work-path, w", - Value: setting.AppWorkPath, - Usage: "Set the gitea working path", + &cli.StringFlag{ + Name: "work-path", + Aliases: []string{"w"}, + Value: setting.AppWorkPath, + Usage: "Set the gitea working path", }, } @@ -109,7 +112,7 @@ arguments - which can alternatively be run by running the subcommand web.` // Add functions to set these paths and these flags to the commands app.Before = establishCustomPath for i := range app.Commands { - setFlagsAndBeforeOnSubcommands(&app.Commands[i], defaultFlags, establishCustomPath) + setFlagsAndBeforeOnSubcommands(app.Commands[i], defaultFlags, establishCustomPath) } err := app.Run(os.Args) @@ -122,7 +125,7 @@ func setFlagsAndBeforeOnSubcommands(command *cli.Command, defaultFlags []cli.Fla command.Flags = append(command.Flags, defaultFlags...) command.Before = establishCustomPath for i := range command.Subcommands { - setFlagsAndBeforeOnSubcommands(&command.Subcommands[i], defaultFlags, before) + setFlagsAndBeforeOnSubcommands(command.Subcommands[i], defaultFlags, before) } } @@ -148,7 +151,10 @@ func establishCustomPath(ctx *cli.Context) error { if currentCtx.IsSet("work-path") && len(providedWorkPath) == 0 { providedWorkPath = currentCtx.String("work-path") } - currentCtx = currentCtx.Parent() + if len(currentCtx.Lineage()) < 2 { + break + } + currentCtx = currentCtx.Lineage()[1] } setting.SetCustomPathAndConf(providedCustom, providedConf, providedWorkPath)