forked from TrueCloudLab/frostfs-node
35 lines
827 B
Go
35 lines
827 B
Go
|
package patchsvc
|
||
|
|
||
|
import (
|
||
|
"crypto/ecdsa"
|
||
|
"crypto/elliptic"
|
||
|
"errors"
|
||
|
"fmt"
|
||
|
|
||
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/refs"
|
||
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/session"
|
||
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/user"
|
||
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
||
|
)
|
||
|
|
||
|
func newOwnerID(vh *session.RequestVerificationHeader) (*refs.OwnerID, error) {
|
||
|
for vh.GetOrigin() != nil {
|
||
|
vh = vh.GetOrigin()
|
||
|
}
|
||
|
sig := vh.GetBodySignature()
|
||
|
if sig == nil {
|
||
|
return nil, errors.New("empty body signature")
|
||
|
}
|
||
|
key, err := keys.NewPublicKeyFromBytes(sig.GetKey(), elliptic.P256())
|
||
|
if err != nil {
|
||
|
return nil, fmt.Errorf("invalid signature key: %w", err)
|
||
|
}
|
||
|
|
||
|
var userID user.ID
|
||
|
user.IDFromKey(&userID, (ecdsa.PublicKey)(*key))
|
||
|
ownID := new(refs.OwnerID)
|
||
|
userID.WriteToV2(ownID)
|
||
|
|
||
|
return ownID, nil
|
||
|
}
|