2018-09-03 02:43:00 -04: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 (
|
|
|
|
"crypto/tls"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"net/http/cookiejar"
|
|
|
|
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
|
|
|
2020-01-04 12:44:25 -05:00
|
|
|
"github.com/urfave/cli/v2"
|
2018-09-03 02:43:00 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// CmdLogin represents to login a gitea server.
|
|
|
|
var CmdLogin = cli.Command{
|
|
|
|
Name: "login",
|
2019-11-03 15:34:41 -05:00
|
|
|
Usage: "Log in to a Gitea server",
|
|
|
|
Description: `Log in to a Gitea server`,
|
2020-01-04 12:44:25 -05:00
|
|
|
Subcommands: []*cli.Command{
|
|
|
|
&cmdLoginList,
|
|
|
|
&cmdLoginAdd,
|
2018-09-03 02:43:00 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// CmdLogin represents to login a gitea server.
|
|
|
|
var cmdLoginAdd = cli.Command{
|
|
|
|
Name: "add",
|
2019-11-03 15:34:41 -05:00
|
|
|
Usage: "Add a Gitea login",
|
|
|
|
Description: `Add a Gitea login`,
|
2018-09-03 02:43:00 -04:00
|
|
|
Flags: []cli.Flag{
|
2020-01-04 12:44:25 -05:00
|
|
|
&cli.StringFlag{
|
2020-04-18 23:09:03 -04:00
|
|
|
Name: "name",
|
|
|
|
Aliases: []string{"n"},
|
|
|
|
Usage: "Login name",
|
|
|
|
Required: true,
|
2018-09-03 02:43:00 -04:00
|
|
|
},
|
2020-01-04 12:44:25 -05:00
|
|
|
&cli.StringFlag{
|
2020-04-18 23:09:03 -04:00
|
|
|
Name: "url",
|
|
|
|
Aliases: []string{"u"},
|
|
|
|
Value: "https://try.gitea.io",
|
|
|
|
EnvVars: []string{"GITEA_SERVER_URL"},
|
|
|
|
Usage: "Server URL",
|
|
|
|
Required: true,
|
2018-09-03 02:43:00 -04:00
|
|
|
},
|
2020-01-04 12:44:25 -05:00
|
|
|
&cli.StringFlag{
|
2020-04-18 23:09:03 -04:00
|
|
|
Name: "token",
|
|
|
|
Aliases: []string{"t"},
|
|
|
|
Value: "",
|
|
|
|
EnvVars: []string{"GITEA_SERVER_TOKEN"},
|
|
|
|
Usage: "Access token. Can be obtained from Settings > Applications",
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
&cli.BoolFlag{
|
|
|
|
Name: "ssh-key",
|
|
|
|
Aliases: []string{"s"},
|
|
|
|
Usage: "Path to a SSH key to use for pull/push operations",
|
2018-09-03 02:43:00 -04:00
|
|
|
},
|
2020-01-04 12:44:25 -05:00
|
|
|
&cli.BoolFlag{
|
2020-03-05 22:43:28 -05:00
|
|
|
Name: "insecure",
|
|
|
|
Aliases: []string{"i"},
|
|
|
|
Usage: "Disable TLS verification",
|
2018-09-03 02:43:00 -04:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Action: runLoginAdd,
|
|
|
|
}
|
|
|
|
|
|
|
|
func runLoginAdd(ctx *cli.Context) error {
|
|
|
|
if !ctx.IsSet("url") {
|
|
|
|
log.Fatal("You have to input Gitea server URL")
|
|
|
|
}
|
|
|
|
if !ctx.IsSet("token") {
|
|
|
|
log.Fatal("No token found")
|
|
|
|
}
|
|
|
|
if !ctx.IsSet("name") {
|
|
|
|
log.Fatal("You have to set a name for the login")
|
|
|
|
}
|
|
|
|
|
|
|
|
err := loadConfig(yamlConfigPath)
|
|
|
|
if err != nil {
|
2019-11-03 15:34:41 -05:00
|
|
|
log.Fatal("Unable to load config file " + yamlConfigPath)
|
2018-09-03 02:43:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
client := gitea.NewClient(ctx.String("url"), ctx.String("token"))
|
|
|
|
if ctx.Bool("insecure") {
|
|
|
|
cookieJar, _ := cookiejar.New(nil)
|
|
|
|
|
|
|
|
client.SetHTTPClient(&http.Client{
|
|
|
|
Jar: cookieJar,
|
|
|
|
Transport: &http.Transport{
|
|
|
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
u, err := client.GetMyUserInfo()
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2019-11-03 15:34:41 -05:00
|
|
|
fmt.Println("Login successful! Login name " + u.UserName)
|
2018-09-03 02:43:00 -04:00
|
|
|
|
|
|
|
err = addLogin(Login{
|
|
|
|
Name: ctx.String("name"),
|
|
|
|
URL: ctx.String("url"),
|
|
|
|
Token: ctx.String("token"),
|
|
|
|
Insecure: ctx.Bool("insecure"),
|
2020-04-18 23:09:03 -04:00
|
|
|
SSHKey: ctx.String("ssh-key"),
|
|
|
|
User: u.UserName,
|
2018-09-03 02:43:00 -04:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = saveConfig(yamlConfigPath)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CmdLogin represents to login a gitea server.
|
|
|
|
var cmdLoginList = cli.Command{
|
|
|
|
Name: "ls",
|
2019-11-03 15:34:41 -05:00
|
|
|
Usage: "List Gitea logins",
|
|
|
|
Description: `List Gitea logins`,
|
2018-09-03 02:43:00 -04:00
|
|
|
Action: runLoginList,
|
|
|
|
}
|
|
|
|
|
|
|
|
func runLoginList(ctx *cli.Context) error {
|
|
|
|
err := loadConfig(yamlConfigPath)
|
|
|
|
if err != nil {
|
2019-11-03 15:34:41 -05:00
|
|
|
log.Fatal("Unable to load config file " + yamlConfigPath)
|
2018-09-03 02:43:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("Name\tURL\tSSHHost\n")
|
|
|
|
for _, l := range config.Logins {
|
|
|
|
fmt.Printf("%s\t%s\t%s\n", l.Name, l.URL, l.GetSSHHost())
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|