2020-09-30 05:11:33 +00:00
|
|
|
// 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 config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/tls"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"net/http/cookiejar"
|
|
|
|
"net/url"
|
|
|
|
|
|
|
|
"code.gitea.io/tea/modules/utils"
|
|
|
|
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Login represents a login to a gitea server, you even could add multiple logins for one gitea server
|
|
|
|
type Login struct {
|
|
|
|
Name string `yaml:"name"`
|
|
|
|
URL string `yaml:"url"`
|
|
|
|
Token string `yaml:"token"`
|
|
|
|
Default bool `yaml:"default"`
|
|
|
|
SSHHost string `yaml:"ssh_host"`
|
|
|
|
// optional path to the private key
|
|
|
|
SSHKey string `yaml:"ssh_key"`
|
|
|
|
Insecure bool `yaml:"insecure"`
|
2020-10-02 15:57:48 +00:00
|
|
|
// User is username from gitea
|
2020-09-30 05:11:33 +00:00
|
|
|
User string `yaml:"user"`
|
2020-10-02 15:57:48 +00:00
|
|
|
// Created is auto created unix timestamp
|
|
|
|
Created int64 `yaml:"created"`
|
2020-09-30 05:11:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetDefaultLogin return the default login
|
|
|
|
func GetDefaultLogin() (*Login, error) {
|
|
|
|
if len(Config.Logins) == 0 {
|
|
|
|
return nil, errors.New("No available login")
|
|
|
|
}
|
|
|
|
for _, l := range Config.Logins {
|
|
|
|
if l.Default {
|
|
|
|
return &l, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Config.Logins[0], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetLoginByName get login by name
|
|
|
|
func GetLoginByName(name string) *Login {
|
|
|
|
for _, l := range Config.Logins {
|
|
|
|
if l.Name == name {
|
|
|
|
return &l
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-12-11 09:07:29 +00:00
|
|
|
// GenerateLoginName generates a name string based on instance URL & adds username if the result is not unique
|
|
|
|
func GenerateLoginName(url, user string) (string, error) {
|
|
|
|
parsedURL, err := utils.NormalizeURL(url)
|
2020-09-30 19:44:22 +00:00
|
|
|
if err != nil {
|
2020-12-11 09:07:29 +00:00
|
|
|
return "", err
|
2020-09-30 19:44:22 +00:00
|
|
|
}
|
2020-12-11 09:07:29 +00:00
|
|
|
name := parsedURL.Host
|
2020-09-30 05:11:33 +00:00
|
|
|
|
2020-12-11 09:07:29 +00:00
|
|
|
// append user name if login name already exists
|
|
|
|
if len(user) != 0 {
|
|
|
|
for _, l := range Config.Logins {
|
|
|
|
if l.Name == name {
|
|
|
|
name += "_" + user
|
|
|
|
break
|
|
|
|
}
|
2020-09-30 05:11:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-11 09:07:29 +00:00
|
|
|
return name, nil
|
2020-09-30 05:11:33 +00:00
|
|
|
}
|
|
|
|
|
2020-10-02 15:45:55 +00:00
|
|
|
// DeleteLogin delete a login by name
|
|
|
|
func DeleteLogin(name string) error {
|
|
|
|
var idx = -1
|
|
|
|
for i, l := range Config.Logins {
|
|
|
|
if l.Name == name {
|
|
|
|
idx = i
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if idx == -1 {
|
|
|
|
return fmt.Errorf("can not delete login '%s', does not exist", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
Config.Logins = append(Config.Logins[:idx], Config.Logins[idx+1:]...)
|
|
|
|
|
|
|
|
return SaveConfig()
|
|
|
|
}
|
|
|
|
|
2020-12-11 09:07:29 +00:00
|
|
|
// Client returns a client to operate Gitea API
|
|
|
|
func (l *Login) Client() *gitea.Client {
|
|
|
|
httpClient := &http.Client{}
|
|
|
|
if l.Insecure {
|
|
|
|
cookieJar, _ := cookiejar.New(nil)
|
2020-09-30 19:44:22 +00:00
|
|
|
|
2020-12-11 09:07:29 +00:00
|
|
|
httpClient = &http.Client{
|
|
|
|
Jar: cookieJar,
|
|
|
|
Transport: &http.Transport{
|
|
|
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
|
|
|
|
}}
|
2020-09-30 19:44:22 +00:00
|
|
|
}
|
|
|
|
|
2020-12-11 09:07:29 +00:00
|
|
|
client, err := gitea.NewClient(l.URL,
|
|
|
|
gitea.SetToken(l.Token),
|
|
|
|
gitea.SetHTTPClient(httpClient),
|
|
|
|
)
|
2020-09-30 05:11:33 +00:00
|
|
|
if err != nil {
|
2020-10-06 13:06:47 +00:00
|
|
|
log.Fatal(err)
|
2020-09-30 05:11:33 +00:00
|
|
|
}
|
2020-12-11 09:07:29 +00:00
|
|
|
return client
|
2020-09-30 05:11:33 +00:00
|
|
|
}
|
|
|
|
|
2020-12-11 09:07:29 +00:00
|
|
|
// GetSSHHost returns SSH host name
|
|
|
|
func (l *Login) GetSSHHost() string {
|
|
|
|
if l.SSHHost != "" {
|
|
|
|
return l.SSHHost
|
2020-09-30 05:11:33 +00:00
|
|
|
}
|
|
|
|
|
2020-12-11 09:07:29 +00:00
|
|
|
u, err := url.Parse(l.URL)
|
|
|
|
if err != nil {
|
|
|
|
return ""
|
2020-09-30 05:11:33 +00:00
|
|
|
}
|
|
|
|
|
2020-12-11 09:07:29 +00:00
|
|
|
return u.Hostname()
|
2020-09-30 05:11:33 +00:00
|
|
|
}
|