FIX: (Again) too many indents.

This commit is contained in:
Walkablenormal 2023-04-26 16:33:30 +02:00 committed by GitHub
parent 8526911c17
commit 835ad78466
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,29 +32,29 @@ func getAuthMethod(r GitRepository) (transport.AuthMethod, error) {
var sshKeyBuff = r.Repository.SSHKey.SshKey.PrivateKey
if r.Repository.SSHKey.SshKey.Login == "" {
r.Repository.SSHKey.SshKey.Login = "git"
r.Repository.SSHKey.SshKey.Login = "git"
}
publicKey, sshErr := ssh.NewPublicKeys(r.Repository.SSHKey.SshKey.Login, []byte(sshKeyBuff), r.Repository.SSHKey.SshKey.Passphrase)
if sshErr != nil {
r.Logger.Log("Unable to creating ssh auth method")
return nil, sshErr
r.Logger.Log("Unable to creating ssh auth method")
return nil, sshErr
}
publicKey.HostKeyCallback = ssh2.InsecureIgnoreHostKey()
return publicKey, sshErr
} else if r.Repository.SSHKey.Type == db.AccessKeyLoginPassword {
password := &http.BasicAuth{
Username: r.Repository.SSHKey.LoginPassword.Login,
Password: r.Repository.SSHKey.LoginPassword.Password,
Username: r.Repository.SSHKey.LoginPassword.Login,
Password: r.Repository.SSHKey.LoginPassword.Password,
}
return password, nil
} else if r.Repository.SSHKey.Type == db.AccessKeyNone {
return nil, nil
return nil, nil
} else {
return nil, errors.New("Unsupported auth method")
return nil, errors.New("Unsupported auth method")
}
}