2018-09-03 06:43:00 +00:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
|
2020-01-04 17:44:25 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
2018-09-03 06:43:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// CmdLogout represents to logout a gitea server.
|
|
|
|
var CmdLogout = cli.Command{
|
|
|
|
Name: "logout",
|
|
|
|
Usage: "Log out from a Gitea server",
|
|
|
|
Description: `Log out from a Gitea server`,
|
|
|
|
Action: runLogout,
|
|
|
|
Flags: []cli.Flag{
|
2020-01-04 17:44:25 +00:00
|
|
|
&cli.StringFlag{
|
2020-03-06 03:43:28 +00:00
|
|
|
Name: "name",
|
|
|
|
Aliases: []string{"n"},
|
|
|
|
Usage: "Login name to remove",
|
2018-09-03 06:43:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func runLogout(ctx *cli.Context) error {
|
|
|
|
var name string
|
|
|
|
if len(os.Args) == 3 {
|
|
|
|
name = os.Args[2]
|
|
|
|
} else if ctx.IsSet("name") {
|
|
|
|
name = ctx.String("name")
|
|
|
|
} else {
|
2019-11-03 20:34:41 +00:00
|
|
|
return errors.New("Please specify a login name")
|
2018-09-03 06:43:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err := loadConfig(yamlConfigPath)
|
|
|
|
if err != nil {
|
2019-11-03 20:34:41 +00:00
|
|
|
log.Fatal("Unable to load config file " + yamlConfigPath)
|
2018-09-03 06:43:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var idx = -1
|
|
|
|
for i, l := range config.Logins {
|
|
|
|
if l.Name == name {
|
|
|
|
idx = i
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if idx > -1 {
|
|
|
|
config.Logins = append(config.Logins[:idx], config.Logins[idx+1:]...)
|
|
|
|
err = saveConfig(yamlConfigPath)
|
|
|
|
if err != nil {
|
2019-11-03 20:34:41 +00:00
|
|
|
log.Fatal("Unable to save config file " + yamlConfigPath)
|
2018-09-03 06:43:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|