mirror of
https://github.com/goharbor/harbor
synced 2025-04-08 20:00:56 +00:00

Remove the attribute "uaa_ca_root" from harbor.cfg and introduce "uaa_verify_cert". Similar to LDAP settings, this allow user to explicitly turn of the cert verification against UAA server, such that the code will work with self-signed certificate.
94 lines
2.6 KiB
Go
94 lines
2.6 KiB
Go
// Copyright (c) 2017 VMware, Inc. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package uaa
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/vmware/harbor/src/common/dao"
|
|
"github.com/vmware/harbor/src/common/models"
|
|
"github.com/vmware/harbor/src/common/utils/uaa"
|
|
"github.com/vmware/harbor/src/ui/config"
|
|
)
|
|
|
|
var lock = &sync.Mutex{}
|
|
var client uaa.Client
|
|
|
|
//GetClient returns the client instance, if the client is not created it creates one.
|
|
func GetClient() (uaa.Client, error) {
|
|
lock.Lock()
|
|
defer lock.Unlock()
|
|
if client != nil {
|
|
return client, nil
|
|
}
|
|
UAASettings, err := config.UAASettings()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
cfg := &uaa.ClientConfig{
|
|
ClientID: UAASettings.ClientID,
|
|
ClientSecret: UAASettings.ClientSecret,
|
|
Endpoint: UAASettings.Endpoint,
|
|
SkipTLSVerify: !UAASettings.VerifyCert,
|
|
}
|
|
client, err = uaa.NewDefaultClient(cfg)
|
|
return client, err
|
|
}
|
|
|
|
func doAuth(username, password string, client uaa.Client) (*models.User, error) {
|
|
t, err := client.PasswordAuth(username, password)
|
|
if t != nil && err == nil {
|
|
//TODO: See if it's possible to get more information from token.
|
|
u := &models.User{
|
|
Username: username,
|
|
Password: "1234567ab",
|
|
Email: username + "@placeholder.com",
|
|
Realname: username,
|
|
}
|
|
err = dao.OnBoardUser(u)
|
|
if err == nil {
|
|
return u, nil
|
|
}
|
|
}
|
|
return nil, err
|
|
}
|
|
|
|
// Auth is the implementation of AuthenticateHelper to access uaa for authentication.
|
|
type Auth struct{}
|
|
|
|
//Authenticate ...
|
|
func (u *Auth) Authenticate(m models.AuthModel) (*models.User, error) {
|
|
client, err := GetClient()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return doAuth(m.Principal, m.Password, client)
|
|
}
|
|
|
|
// OnBoardUser will check if a user exists in user table, if not insert the user and
|
|
// put the id in the pointer of user model, if it does exist, return the user's profile.
|
|
// func (u *Auth) OnBoardUser(user *models.User) error {
|
|
// panic("not implemented")
|
|
// }
|
|
|
|
// // SearchUser - search user on uaa server
|
|
// func (u *Auth) SearchUser(username string) (*models.User, error) {
|
|
// panic("not implemented")
|
|
// }
|
|
|
|
// func init() {
|
|
// auth.Register(auth.UAAAuth, &Auth{})
|
|
// }
|