mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 01:05:26 +01:00 
			
		
		
		
	Add tea login delete (#296)
				
					
				
			add `tea login delete` alias to tea logout Co-authored-by: Norwin Roosen <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/296 Reviewed-by: khmarbaise <khmarbaise@noreply.gitea.io> Reviewed-by: 6543 <6543@obermui.de> Co-Authored-By: Norwin <noerw@noreply.gitea.io> Co-Committed-By: Norwin <noerw@noreply.gitea.io>
This commit is contained in:
		| @@ -1,4 +1,4 @@ | |||||||
| // Copyright 2018 The Gitea Authors. All rights reserved. | // Copyright 2020 The Gitea Authors. All rights reserved. | ||||||
| // Use of this source code is governed by a MIT-style | // Use of this source code is governed by a MIT-style | ||||||
| // license that can be found in the LICENSE file. | // license that can be found in the LICENSE file. | ||||||
|  |  | ||||||
| @@ -27,6 +27,7 @@ var CmdLogin = cli.Command{ | |||||||
| 		&login.CmdLoginList, | 		&login.CmdLoginList, | ||||||
| 		&login.CmdLoginAdd, | 		&login.CmdLoginAdd, | ||||||
| 		&login.CmdLoginEdit, | 		&login.CmdLoginEdit, | ||||||
|  | 		&login.CmdLoginDelete, | ||||||
| 		&login.CmdLoginSetDefault, | 		&login.CmdLoginSetDefault, | ||||||
| 	}, | 	}, | ||||||
| } | } | ||||||
|   | |||||||
							
								
								
									
										44
									
								
								cmd/login/delete.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										44
									
								
								cmd/login/delete.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,44 @@ | |||||||
|  | // Copyright 2020 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 login | ||||||
|  |  | ||||||
|  | import ( | ||||||
|  | 	"errors" | ||||||
|  | 	"log" | ||||||
|  |  | ||||||
|  | 	"code.gitea.io/tea/modules/config" | ||||||
|  |  | ||||||
|  | 	"github.com/urfave/cli/v2" | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | // CmdLoginDelete is a command to delete a login | ||||||
|  | var CmdLoginDelete = cli.Command{ | ||||||
|  | 	Name:        "delete", | ||||||
|  | 	Aliases:     []string{"rm"}, | ||||||
|  | 	Usage:       "Remove a Gitea login", | ||||||
|  | 	Description: `Remove a Gitea login`, | ||||||
|  | 	ArgsUsage:   "<login name>", | ||||||
|  | 	Action:      RunLoginDelete, | ||||||
|  | } | ||||||
|  |  | ||||||
|  | // RunLoginDelete runs the action of a login delete command | ||||||
|  | func RunLoginDelete(ctx *cli.Context) error { | ||||||
|  | 	logins, err := config.GetLogins() | ||||||
|  | 	if err != nil { | ||||||
|  | 		log.Fatal(err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	var name string | ||||||
|  |  | ||||||
|  | 	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") | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	return config.DeleteLogin(name) | ||||||
|  | } | ||||||
| @@ -1,14 +1,11 @@ | |||||||
| // Copyright 2018 The Gitea Authors. All rights reserved. | // Copyright 2020 The Gitea Authors. All rights reserved. | ||||||
| // Use of this source code is governed by a MIT-style | // Use of this source code is governed by a MIT-style | ||||||
| // license that can be found in the LICENSE file. | // license that can be found in the LICENSE file. | ||||||
|  |  | ||||||
| package cmd | package cmd | ||||||
|  |  | ||||||
| import ( | import ( | ||||||
| 	"errors" | 	"code.gitea.io/tea/cmd/login" | ||||||
| 	"log" |  | ||||||
|  |  | ||||||
| 	"code.gitea.io/tea/modules/config" |  | ||||||
|  |  | ||||||
| 	"github.com/urfave/cli/v2" | 	"github.com/urfave/cli/v2" | ||||||
| ) | ) | ||||||
| @@ -18,33 +15,6 @@ var CmdLogout = cli.Command{ | |||||||
| 	Name:        "logout", | 	Name:        "logout", | ||||||
| 	Usage:       "Log out from a Gitea server", | 	Usage:       "Log out from a Gitea server", | ||||||
| 	Description: `Log out from a Gitea server`, | 	Description: `Log out from a Gitea server`, | ||||||
| 	Action:      runLogout, | 	ArgsUsage:   "<login name>", | ||||||
| 	Flags: []cli.Flag{ | 	Action:      login.RunLoginDelete, | ||||||
| 		&cli.StringFlag{ |  | ||||||
| 			Name:    "name", |  | ||||||
| 			Aliases: []string{"n"}, |  | ||||||
| 			Usage:   "Login name to remove", |  | ||||||
| 		}, |  | ||||||
| 	}, |  | ||||||
| } |  | ||||||
|  |  | ||||||
| func runLogout(ctx *cli.Context) error { |  | ||||||
| 	logins, err := config.GetLogins() |  | ||||||
| 	if err != nil { |  | ||||||
| 		log.Fatal(err) |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	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") |  | ||||||
| 	} |  | ||||||
|  |  | ||||||
| 	return config.DeleteLogin(name) |  | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Norwin
					Norwin