validate credentials before going any further
This commit is contained in:
parent
f3f6c26557
commit
002ffc7f21
46
main.go
46
main.go
|
@ -3,6 +3,7 @@ package main
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
@ -157,6 +158,48 @@ func makeGitConfig(config *Config) (*git.GitClientParam, error) {
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func ValidateCredentials(gitlabUrl string, gitlabToken string) error {
|
||||||
|
|
||||||
|
// add api suffix
|
||||||
|
url := gitlabUrl + "/api/v4/groups"
|
||||||
|
token := gitlabToken
|
||||||
|
|
||||||
|
// init header with token, if token is empty, then use random string
|
||||||
|
req, err := http.NewRequest("GET", url, nil)
|
||||||
|
if token != "" {
|
||||||
|
req.Header.Set("PRIVATE-TOKEN", token)
|
||||||
|
} else {
|
||||||
|
req.Header.Set("PRIVATE-TOKEN", "notoken")
|
||||||
|
}
|
||||||
|
|
||||||
|
client := &http.Client{}
|
||||||
|
|
||||||
|
// Check for redirect
|
||||||
|
client.CheckRedirect = func(req *http.Request, via []*http.Request) error {
|
||||||
|
for key, val := range via[0].Header {
|
||||||
|
req.Header[key] = val
|
||||||
|
}
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get response
|
||||||
|
resp, err := client.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Printf("Error on response: %s\n", err)
|
||||||
|
os.Exit(2)
|
||||||
|
}
|
||||||
|
|
||||||
|
defer resp.Body.Close()
|
||||||
|
|
||||||
|
// Get status code from response
|
||||||
|
if resp.StatusCode != 200 {
|
||||||
|
fmt.Printf("Error: %s\n", resp.Status)
|
||||||
|
os.Exit(2)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
configPath := flag.String("config", "", "the config file")
|
configPath := flag.String("config", "", "the config file")
|
||||||
debug := flag.Bool("debug", false, "enable debug logging")
|
debug := flag.Bool("debug", false, "enable debug logging")
|
||||||
|
@ -168,6 +211,9 @@ func main() {
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Validate Credentials
|
||||||
|
ValidateCredentials(config.Gitlab.URL, config.Gitlab.Token)
|
||||||
|
|
||||||
// Configure mountpoint
|
// Configure mountpoint
|
||||||
mountpoint := config.FS.Mountpoint
|
mountpoint := config.FS.Mountpoint
|
||||||
if flag.NArg() == 1 {
|
if flag.NArg() == 1 {
|
||||||
|
|
Loading…
Reference in New Issue