mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
732 B
30 lines
732 B
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
//go:build !windows
|
|
|
|
package auth
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
)
|
|
|
|
type SSPIUserInfo struct {
|
|
Username string // Name of user, usually in the form DOMAIN\User
|
|
Groups []string // The global groups the user is a member of
|
|
}
|
|
|
|
type sspiAuthMock struct{}
|
|
|
|
func (s sspiAuthMock) AppendAuthenticateHeader(w http.ResponseWriter, data string) {
|
|
}
|
|
|
|
func (s sspiAuthMock) Authenticate(r *http.Request, w http.ResponseWriter) (userInfo *SSPIUserInfo, outToken string, err error) {
|
|
return nil, "", errors.New("not implemented")
|
|
}
|
|
|
|
func sspiAuthInit() error {
|
|
sspiAuth = &sspiAuthMock{} // TODO: we can mock the SSPI auth in tests
|
|
return nil
|
|
}
|
|
|