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.
56 lines
1.1 KiB
56 lines
1.1 KiB
package sharedmodel
|
|
|
|
import (
|
|
"crypto"
|
|
"fmt"
|
|
|
|
"gorm.io/gorm"
|
|
"src.whiteboxsystems.nl/decozo/okapi"
|
|
"src.whiteboxsystems.nl/decozo/okapidemo/cryptoutil"
|
|
)
|
|
|
|
type RegistrationStatus string
|
|
|
|
const (
|
|
RegistrationStatusPending = RegistrationStatus("pending")
|
|
RegistrationStatusCompleted = RegistrationStatus("completed")
|
|
)
|
|
|
|
type Registration struct {
|
|
gorm.Model
|
|
OrganisationIdentifier string
|
|
OrganisationIdentifierType string
|
|
OrganisationDisplayName string
|
|
AuthConfigID uint
|
|
AuthConfig *XISAuthConfig
|
|
Reference string
|
|
PSK string
|
|
Status RegistrationStatus
|
|
}
|
|
|
|
func (r *Registration) SetAuthConfig(cfg *okapi.XISAuthConfiguration) error {
|
|
authConfig := &XISAuthConfig{
|
|
Method: int32(cfg.Method),
|
|
}
|
|
|
|
switch cfg.Method {
|
|
case okapi.XISAuthMethod_mTLS:
|
|
k, err := cryptoutil.StringToJWK(cfg.GetMtlsConfiguration().GetPublicKey())
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
tp, err := k.Thumbprint(crypto.SHA256)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
authConfig.Raw = fmt.Sprintf("%X", tp)
|
|
}
|
|
|
|
r.AuthConfig = authConfig
|
|
|
|
return nil
|
|
}
|
|
|