tea/cmd/logout.go

51 lines
1.0 KiB
Go
Raw Normal View History

2018-09-03 12:13:00 +05:30
// 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"
"code.gitea.io/tea/modules/config"
"github.com/urfave/cli/v2"
2018-09-03 12:13:00 +05:30
)
// 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{
&cli.StringFlag{
Name: "name",
Aliases: []string{"n"},
Usage: "Login name to remove",
2018-09-03 12:13:00 +05:30
},
},
}
func runLogout(ctx *cli.Context) error {
logins, err := config.GetLogins()
2018-09-03 12:13:00 +05:30
if err != nil {
log.Fatal(err)
2018-09-03 12:13:00 +05:30
}
var name string
if ctx.IsSet("name") {
name = ctx.String("name")
} else if len(ctx.Args().First()) != 0 {
name = ctx.Args().First()
} else if len(logins) == 1 {
name = logins[0].Name
} else {
return errors.New("Please specify a login name")
2018-09-03 12:13:00 +05:30
}
return config.DeleteLogin(name)
2018-09-03 12:13:00 +05:30
}