Remove decoders and fix sync tree
This commit is contained in:
parent
efd7cafd59
commit
9b196a6521
@ -4,6 +4,7 @@ import (
|
|||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/config"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/config"
|
||||||
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/encryptionkey"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/encryptionkey"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/peer"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/peer"
|
||||||
@ -100,15 +101,12 @@ func genConfig(addresses []string, apiPort string) (config.Config, error) {
|
|||||||
return config.Config{}, err
|
return config.Config{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
encKeyDecoder := encryptionkey.NewRSAPrivKeyDecoder()
|
encEncKey, err := keys.EncodeKeyToString(encKey)
|
||||||
signKeyDecoder := signingkey.NewEDPrivKeyDecoder()
|
|
||||||
|
|
||||||
encEncKey, err := encKeyDecoder.EncodeToString(encKey)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return config.Config{}, err
|
return config.Config{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
encSignKey, err := signKeyDecoder.EncodeToString(signKey)
|
encSignKey, err := keys.EncodeKeyToString(signKey)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return config.Config{}, err
|
return config.Config{}, err
|
||||||
}
|
}
|
||||||
|
|||||||
@ -5,9 +5,3 @@ nodes:
|
|||||||
- grpcAddresses:
|
- grpcAddresses:
|
||||||
- "127.0.0.1:4431"
|
- "127.0.0.1:4431"
|
||||||
apiPort: "8081"
|
apiPort: "8081"
|
||||||
- grpcAddresses:
|
|
||||||
- "127.0.0.1:4432"
|
|
||||||
apiPort: "8082"
|
|
||||||
- grpcAddresses:
|
|
||||||
- "127.0.0.1:4433"
|
|
||||||
apiPort: "8083"
|
|
||||||
|
|||||||
@ -4,6 +4,7 @@ import (
|
|||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/app"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/app"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/config"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/config"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/account"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/account"
|
||||||
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/encryptionkey"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/encryptionkey"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
||||||
)
|
)
|
||||||
@ -34,33 +35,34 @@ func New() app.Component {
|
|||||||
|
|
||||||
func (s *service) Init(a *app.App) (err error) {
|
func (s *service) Init(a *app.App) (err error) {
|
||||||
cfg := a.MustComponent(config.CName).(*config.Config)
|
cfg := a.MustComponent(config.CName).(*config.Config)
|
||||||
|
// TODO: add deviceKey
|
||||||
// decoding our keys
|
|
||||||
privateEncryptionDecoder := encryptionkey.NewRSAPrivKeyDecoder()
|
|
||||||
privateSigningDecoder := signingkey.NewEDPrivKeyDecoder()
|
|
||||||
publicSigningDecoder := signingkey.NewEDPubKeyDecoder()
|
|
||||||
acc := cfg.Account
|
acc := cfg.Account
|
||||||
|
|
||||||
decodedEncryptionKey, err := privateEncryptionDecoder.DecodeFromString(acc.EncryptionKey)
|
decodedEncryptionKey, err := keys.DecodeKeyFromString(
|
||||||
if err != nil {
|
acc.EncryptionKey,
|
||||||
return err
|
encryptionkey.NewEncryptionRsaPrivKeyFromBytes,
|
||||||
}
|
nil)
|
||||||
decodedSigningKey, err := privateSigningDecoder.DecodeFromString(acc.SigningKey)
|
if err != nil {
|
||||||
if err != nil {
|
return err
|
||||||
return err
|
}
|
||||||
}
|
|
||||||
signKey := decodedSigningKey.(signingkey.PrivKey)
|
decodedSigningKey, err := keys.DecodeKeyFromString(
|
||||||
identity, err := publicSigningDecoder.EncodeToString(signKey.GetPublic())
|
acc.SigningKey,
|
||||||
|
signingkey.NewSigningEd25519PrivKeyFromBytes,
|
||||||
|
nil)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
identity, err := decodedSigningKey.GetPublic().Raw()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: using acl lib format basically, but we should simplify this
|
|
||||||
s.accountData = &account.AccountData{
|
s.accountData = &account.AccountData{
|
||||||
Identity: identity,
|
Identity: identity,
|
||||||
SignKey: signKey,
|
SignKey: decodedSigningKey,
|
||||||
EncKey: decodedEncryptionKey.(encryptionkey.PrivKey),
|
EncKey: decodedEncryptionKey,
|
||||||
Decoder: signingkey.NewEDPubKeyDecoder(),
|
|
||||||
}
|
}
|
||||||
s.peerId = acc.PeerId
|
s.peerId = acc.PeerId
|
||||||
|
|
||||||
|
|||||||
@ -49,7 +49,7 @@ message HeadSyncResponse {
|
|||||||
message ObjectSyncMessage {
|
message ObjectSyncMessage {
|
||||||
string spaceId = 1;
|
string spaceId = 1;
|
||||||
ObjectSyncContentValue content = 2;
|
ObjectSyncContentValue content = 2;
|
||||||
treechange.RootChange treeHeader = 3;
|
treechange.RawTreeChangeWithId rootChange = 3;
|
||||||
string treeId = 4;
|
string treeId = 4;
|
||||||
string trackingId = 5;
|
string trackingId = 5;
|
||||||
//
|
//
|
||||||
|
|||||||
@ -320,11 +320,11 @@ func (m *HeadSyncResponse) GetResults() []*HeadSyncResult {
|
|||||||
|
|
||||||
// ObjectSyncMessage is a message sent on object sync
|
// ObjectSyncMessage is a message sent on object sync
|
||||||
type ObjectSyncMessage struct {
|
type ObjectSyncMessage struct {
|
||||||
SpaceId string `protobuf:"bytes,1,opt,name=spaceId,proto3" json:"spaceId,omitempty"`
|
SpaceId string `protobuf:"bytes,1,opt,name=spaceId,proto3" json:"spaceId,omitempty"`
|
||||||
Content *ObjectSyncContentValue `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
|
Content *ObjectSyncContentValue `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
|
||||||
TreeHeader *treechangeproto.RootChange `protobuf:"bytes,3,opt,name=treeHeader,proto3" json:"treeHeader,omitempty"`
|
RootChange *treechangeproto.RawTreeChangeWithId `protobuf:"bytes,3,opt,name=rootChange,proto3" json:"rootChange,omitempty"`
|
||||||
TreeId string `protobuf:"bytes,4,opt,name=treeId,proto3" json:"treeId,omitempty"`
|
TreeId string `protobuf:"bytes,4,opt,name=treeId,proto3" json:"treeId,omitempty"`
|
||||||
TrackingId string `protobuf:"bytes,5,opt,name=trackingId,proto3" json:"trackingId,omitempty"`
|
TrackingId string `protobuf:"bytes,5,opt,name=trackingId,proto3" json:"trackingId,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *ObjectSyncMessage) Reset() { *m = ObjectSyncMessage{} }
|
func (m *ObjectSyncMessage) Reset() { *m = ObjectSyncMessage{} }
|
||||||
@ -374,9 +374,9 @@ func (m *ObjectSyncMessage) GetContent() *ObjectSyncContentValue {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *ObjectSyncMessage) GetTreeHeader() *treechangeproto.RootChange {
|
func (m *ObjectSyncMessage) GetRootChange() *treechangeproto.RawTreeChangeWithId {
|
||||||
if m != nil {
|
if m != nil {
|
||||||
return m.TreeHeader
|
return m.RootChange
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -831,57 +831,57 @@ func init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var fileDescriptor_5855f4ef9cf24cdb = []byte{
|
var fileDescriptor_5855f4ef9cf24cdb = []byte{
|
||||||
// 797 bytes of a gzipped FileDescriptorProto
|
// 793 bytes of a gzipped FileDescriptorProto
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x55, 0xcd, 0x8e, 0xe3, 0x44,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x55, 0xcd, 0x8e, 0x1b, 0x45,
|
||||||
0x10, 0xb6, 0x33, 0x99, 0x49, 0x52, 0x99, 0x99, 0x0d, 0x0d, 0x3b, 0x98, 0x00, 0xd9, 0xe0, 0x03,
|
0x10, 0x9e, 0xf1, 0x7a, 0xd7, 0x76, 0xed, 0xae, 0x63, 0x1a, 0x12, 0x06, 0x03, 0x8e, 0x99, 0x03,
|
||||||
0x8a, 0x40, 0x4a, 0x50, 0x90, 0x10, 0x30, 0x5c, 0xd8, 0x51, 0x46, 0x89, 0x56, 0xfc, 0xa8, 0x67,
|
0xb2, 0x40, 0x5a, 0x23, 0x73, 0x01, 0x16, 0x09, 0x91, 0x95, 0x57, 0xb6, 0x22, 0x7e, 0xd4, 0x9b,
|
||||||
0x17, 0x24, 0xc4, 0xa5, 0xd7, 0xae, 0x4d, 0xcc, 0xda, 0x6e, 0xe3, 0xee, 0xb0, 0xe4, 0x09, 0xb8,
|
0x80, 0x84, 0xb8, 0x74, 0x66, 0x2a, 0xf6, 0x90, 0x99, 0xe9, 0xa1, 0xbb, 0x4d, 0xf0, 0x13, 0x70,
|
||||||
0x80, 0x84, 0x78, 0x03, 0x9e, 0x85, 0x0b, 0xc7, 0x3d, 0xc2, 0x0d, 0xcd, 0xbc, 0x08, 0xea, 0xb2,
|
0x01, 0x09, 0xf1, 0x06, 0x3c, 0x0b, 0x17, 0x8e, 0x39, 0x72, 0x44, 0xde, 0x17, 0x41, 0x5d, 0xe3,
|
||||||
0x1d, 0x3b, 0xc1, 0xbb, 0x1c, 0xf7, 0x12, 0x77, 0x7d, 0x5d, 0xf5, 0xf5, 0xd7, 0x55, 0xd5, 0x15,
|
0xf1, 0xd8, 0x66, 0x92, 0x1c, 0xf7, 0xe2, 0xe9, 0xaa, 0xfe, 0xbe, 0xea, 0xaf, 0xab, 0xaa, 0xcb,
|
||||||
0xf8, 0xd0, 0x93, 0x51, 0x24, 0xe3, 0x49, 0xf6, 0x51, 0x89, 0xf0, 0x70, 0x42, 0xbf, 0x6a, 0x13,
|
0xf0, 0x51, 0x20, 0x93, 0x44, 0xa6, 0xc3, 0xfc, 0xa3, 0x33, 0x11, 0xe0, 0x90, 0x7e, 0xf5, 0x32,
|
||||||
0x7b, 0x49, 0x2a, 0xb5, 0x9c, 0xd0, 0xaf, 0x2a, 0xd1, 0x31, 0x01, 0xac, 0x2d, 0xe2, 0xcd, 0x95,
|
0x0d, 0x32, 0x25, 0x8d, 0x1c, 0xd2, 0xaf, 0x2e, 0xbd, 0x67, 0xe4, 0x60, 0x4d, 0x91, 0x2e, 0xaf,
|
||||||
0xc1, 0xfa, 0x93, 0xe4, 0xf1, 0x72, 0x22, 0xbc, 0x70, 0xa2, 0x53, 0x44, 0x6f, 0x25, 0xe2, 0x25,
|
0xac, 0xaf, 0x3b, 0xcc, 0x9e, 0xcc, 0x86, 0x22, 0x88, 0x87, 0x46, 0x21, 0x06, 0x73, 0x91, 0xce,
|
||||||
0xee, 0x44, 0x96, 0x70, 0x16, 0xea, 0x2e, 0xe0, 0x64, 0x8e, 0xc2, 0xbf, 0xda, 0xc4, 0x1e, 0x37,
|
0x70, 0x87, 0x59, 0xba, 0x73, 0xaa, 0x3f, 0x85, 0xd3, 0x09, 0x8a, 0xf0, 0x6a, 0x99, 0x06, 0xdc,
|
||||||
0x30, 0x63, 0xd0, 0x7c, 0x94, 0xca, 0xc8, 0xb1, 0x87, 0xf6, 0xa8, 0xc9, 0x69, 0xcd, 0x4e, 0xa1,
|
0xba, 0x19, 0x83, 0xfa, 0x63, 0x25, 0x13, 0xcf, 0xed, 0xbb, 0x83, 0x3a, 0xa7, 0x35, 0x6b, 0x43,
|
||||||
0xa1, 0xa5, 0xd3, 0x20, 0xa4, 0xa1, 0x25, 0x7b, 0x05, 0x0e, 0xc3, 0x20, 0x0a, 0xb4, 0x73, 0x30,
|
0xcd, 0x48, 0xaf, 0x46, 0x9e, 0x9a, 0x91, 0xec, 0x35, 0x38, 0x8c, 0xa3, 0x24, 0x32, 0xde, 0x41,
|
||||||
0xb4, 0x47, 0x27, 0x3c, 0x33, 0xdc, 0x27, 0x70, 0xba, 0xa5, 0x42, 0xb5, 0x0e, 0xb5, 0xe1, 0x5a,
|
0xdf, 0x1d, 0x9c, 0xf2, 0xdc, 0xf0, 0x9f, 0x42, 0x7b, 0x13, 0x0a, 0xf5, 0x22, 0x36, 0x36, 0xd6,
|
||||||
0x09, 0xb5, 0x22, 0xae, 0x63, 0x4e, 0x6b, 0x76, 0x0e, 0x6d, 0x0c, 0x31, 0xc2, 0x58, 0x2b, 0xa7,
|
0x5c, 0xe8, 0x39, 0xc5, 0x3a, 0xe1, 0xb4, 0x66, 0xe7, 0xd0, 0xc4, 0x18, 0x13, 0x4c, 0x8d, 0xf6,
|
||||||
0x31, 0x3c, 0x18, 0x75, 0xa7, 0x77, 0xc6, 0x85, 0xfc, 0xf1, 0x6e, 0xfc, 0x2c, 0xf3, 0xe3, 0xdb,
|
0x6a, 0xfd, 0x83, 0xc1, 0xf1, 0xe8, 0xee, 0x59, 0x21, 0xff, 0x6c, 0x97, 0x3f, 0xce, 0x71, 0x7c,
|
||||||
0x00, 0x73, 0xb0, 0x27, 0xd7, 0xf1, 0xf6, 0x60, 0x32, 0xdc, 0x73, 0xb8, 0x5d, 0x1b, 0x68, 0x74,
|
0x43, 0xb0, 0x07, 0x07, 0x72, 0x91, 0x6e, 0x0e, 0x26, 0xc3, 0x3f, 0x87, 0xdb, 0x95, 0x44, 0xab,
|
||||||
0x07, 0x3e, 0x9d, 0xde, 0xe1, 0x8d, 0xc0, 0x27, 0x3d, 0x28, 0x7c, 0xba, 0x49, 0x87, 0xd3, 0xda,
|
0x3b, 0x0a, 0xe9, 0xf4, 0x16, 0xaf, 0x45, 0x21, 0xe9, 0x41, 0x11, 0xd2, 0x4d, 0x5a, 0x9c, 0xd6,
|
||||||
0xfd, 0x16, 0x6e, 0x95, 0xc1, 0xdf, 0xaf, 0x51, 0x69, 0xe6, 0x40, 0x8b, 0x32, 0xbc, 0x28, 0x62,
|
0xfe, 0xf7, 0x70, 0xab, 0x24, 0xff, 0xb8, 0x40, 0x6d, 0x98, 0x07, 0x0d, 0xca, 0xf0, 0xb4, 0xe0,
|
||||||
0x0b, 0x93, 0x4d, 0xe0, 0x28, 0x35, 0x59, 0x2a, 0xa4, 0xbf, 0x5a, 0x23, 0xdd, 0xec, 0xf3, 0xdc,
|
0x16, 0x26, 0x1b, 0xc2, 0x91, 0xb2, 0x59, 0x2a, 0xa4, 0xbf, 0x5e, 0x21, 0xdd, 0xee, 0xf3, 0x35,
|
||||||
0xcd, 0xbd, 0x84, 0x5e, 0x45, 0x5a, 0x22, 0x63, 0x85, 0x6c, 0x0a, 0xad, 0x94, 0x64, 0x2a, 0xc7,
|
0xcc, 0xbf, 0x84, 0xce, 0x96, 0xb4, 0x4c, 0xa6, 0x1a, 0xd9, 0x08, 0x1a, 0x8a, 0x64, 0x6a, 0xcf,
|
||||||
0x26, 0x16, 0xe7, 0x59, 0x09, 0xe0, 0x85, 0xa3, 0xfb, 0xb7, 0x0d, 0x2f, 0x7d, 0xf1, 0xf0, 0x3b,
|
0xa5, 0x28, 0xde, 0xf3, 0x12, 0xc0, 0x0b, 0xa0, 0xbf, 0x72, 0xe1, 0x95, 0xaf, 0x1e, 0xfd, 0x80,
|
||||||
0xf4, 0xb4, 0xd9, 0xfd, 0x0c, 0x95, 0x12, 0x4b, 0x7c, 0x8e, 0xd0, 0x8f, 0xa1, 0xe5, 0xc9, 0x58,
|
0x81, 0xb1, 0xbb, 0x5f, 0xa0, 0xd6, 0x62, 0x86, 0x2f, 0x10, 0xfa, 0x09, 0x34, 0x02, 0x99, 0x1a,
|
||||||
0x63, 0xac, 0xe9, 0xb2, 0xdd, 0xe9, 0xb0, 0x3c, 0xa3, 0xe4, 0xb9, 0xc8, 0x5c, 0xbe, 0x12, 0xe1,
|
0x4c, 0x0d, 0x5d, 0xf6, 0x78, 0xd4, 0x2f, 0xcf, 0x28, 0xe3, 0x5c, 0xe4, 0x90, 0x6f, 0x44, 0xbc,
|
||||||
0x1a, 0x79, 0x11, 0xc0, 0x3e, 0x00, 0x30, 0x6d, 0x62, 0xa4, 0x60, 0x4a, 0x99, 0xee, 0x4e, 0xcf,
|
0x40, 0x5e, 0x10, 0xd8, 0x67, 0x00, 0x4a, 0x4a, 0x73, 0x41, 0x6d, 0x42, 0x99, 0xb6, 0x35, 0xda,
|
||||||
0xc6, 0x95, 0xce, 0xe1, 0x52, 0xea, 0x0b, 0x5a, 0xf2, 0x8a, 0x27, 0x3b, 0x83, 0x23, 0x63, 0x2d,
|
0xea, 0x1c, 0x2e, 0x9e, 0x3e, 0x50, 0x88, 0x39, 0xe0, 0xdb, 0xc8, 0xcc, 0xa7, 0x21, 0xdf, 0xa2,
|
||||||
0x7c, 0xa7, 0x49, 0x62, 0x72, 0x8b, 0x0d, 0x0c, 0x9f, 0xf0, 0x1e, 0x07, 0xf1, 0x72, 0xe1, 0x3b,
|
0xb0, 0x3b, 0x70, 0x64, 0xd1, 0xd3, 0xd0, 0xab, 0x93, 0xaa, 0xb5, 0xc5, 0x7a, 0x00, 0x46, 0x89,
|
||||||
0x87, 0xb4, 0x57, 0x41, 0xdc, 0x3f, 0x1a, 0x70, 0x56, 0xaf, 0x89, 0x7d, 0x02, 0x60, 0x8a, 0xf4,
|
0xe0, 0x49, 0x94, 0xce, 0xa6, 0xa1, 0x77, 0x48, 0x7b, 0x5b, 0x1e, 0xff, 0xaf, 0x1a, 0xdc, 0xa9,
|
||||||
0x20, 0xf1, 0x85, 0x46, 0xba, 0x63, 0x77, 0xda, 0xdf, 0xbf, 0xc9, 0x7c, 0xeb, 0x31, 0xb7, 0x78,
|
0x16, 0xc7, 0x3e, 0x05, 0xb0, 0xd5, 0x7a, 0x98, 0x85, 0xc2, 0x20, 0x5d, 0xf6, 0x78, 0xd4, 0xdd,
|
||||||
0xc5, 0x9f, 0xdd, 0x83, 0x5b, 0x8f, 0xd6, 0x61, 0x58, 0x29, 0x6d, 0x9e, 0x8c, 0x3b, 0xfb, 0x14,
|
0xbf, 0xd2, 0x64, 0x83, 0x98, 0x38, 0x7c, 0x0b, 0xcf, 0xee, 0xc3, 0xad, 0xc7, 0x8b, 0x38, 0xde,
|
||||||
0x97, 0xbb, 0x6e, 0x73, 0x8b, 0xef, 0x47, 0xb2, 0xcf, 0xa1, 0x57, 0x42, 0x59, 0x25, 0xf3, 0xdc,
|
0xaa, 0xf1, 0x3a, 0x2b, 0x77, 0xf7, 0x43, 0x5c, 0xee, 0xc2, 0x26, 0x0e, 0xdf, 0x67, 0xb2, 0x2f,
|
||||||
0x0c, 0x9f, 0xcd, 0x96, 0xf9, 0xcd, 0x2d, 0xfe, 0x9f, 0x58, 0x36, 0x83, 0x13, 0x4c, 0x53, 0x99,
|
0xa1, 0x53, 0xba, 0xf2, 0x92, 0xae, 0x93, 0xd4, 0x7f, 0x7e, 0xb4, 0x1c, 0x37, 0x71, 0xf8, 0xff,
|
||||||
0x6e, 0xc9, 0x9a, 0x44, 0xf6, 0xe6, 0x3e, 0xd9, 0xac, 0xea, 0x34, 0xb7, 0xf8, 0x6e, 0xd4, 0xdd,
|
0xb8, 0x6c, 0x0c, 0xa7, 0xa8, 0x94, 0x54, 0x9b, 0x60, 0x75, 0x0a, 0xf6, 0xf6, 0x7e, 0xb0, 0xf1,
|
||||||
0x16, 0x1c, 0xfe, 0x60, 0x52, 0xe5, 0xfe, 0x64, 0x43, 0x6f, 0x3f, 0x1f, 0xe6, 0xbd, 0x98, 0x7c,
|
0x36, 0x68, 0xe2, 0xf0, 0x5d, 0xd6, 0xbd, 0x06, 0x1c, 0xfe, 0x64, 0x53, 0xe5, 0xff, 0xe2, 0x42,
|
||||||
0x64, 0x8d, 0xd6, 0xe1, 0x99, 0xc1, 0x3e, 0x82, 0x56, 0x56, 0xc9, 0xf2, 0x05, 0x56, 0xab, 0x2b,
|
0x67, 0x3f, 0x1f, 0xf6, 0xe1, 0xd8, 0x7c, 0xe4, 0x1d, 0xd7, 0xe2, 0xb9, 0xc1, 0x3e, 0x86, 0x46,
|
||||||
0x9e, 0xdc, 0x4f, 0x11, 0xb3, 0x02, 0x7f, 0x1d, 0xe8, 0xd5, 0xc2, 0xe7, 0x85, 0x3f, 0x73, 0xe1,
|
0x5e, 0xd2, 0xf2, 0x29, 0xbe, 0xa4, 0xcc, 0x05, 0x9e, 0xf9, 0x70, 0xa2, 0x53, 0x91, 0xe9, 0xb9,
|
||||||
0x58, 0xc5, 0x22, 0x51, 0x2b, 0xa9, 0xbf, 0x14, 0x7a, 0xe5, 0x1c, 0x10, 0xef, 0x0e, 0xe6, 0xfe,
|
0x34, 0x5f, 0x0b, 0x33, 0xf7, 0x0e, 0x28, 0xee, 0x8e, 0xcf, 0xff, 0xd5, 0x85, 0xdb, 0x95, 0x69,
|
||||||
0x6c, 0xc3, 0xed, 0xda, 0xb4, 0xbe, 0x18, 0x39, 0xbf, 0xd8, 0x45, 0x7b, 0xed, 0xd7, 0xe5, 0xc5,
|
0xbd, 0x19, 0x39, 0xbf, 0xb9, 0x45, 0x7b, 0xed, 0xd7, 0xe5, 0x66, 0xf4, 0xbc, 0x0f, 0xaf, 0x56,
|
||||||
0xe8, 0x79, 0x17, 0x5e, 0xae, 0xa9, 0xac, 0xd1, 0x42, 0x95, 0xcd, 0x5f, 0x72, 0x66, 0xb8, 0xbf,
|
0x54, 0xd6, 0x6a, 0xa1, 0xca, 0xae, 0x9f, 0x74, 0x6e, 0xf8, 0x7f, 0xba, 0x70, 0x4c, 0xdd, 0x60,
|
||||||
0xdb, 0xd0, 0xa5, 0x6e, 0xc8, 0xdf, 0x58, 0x1f, 0xda, 0x81, 0x8f, 0xb1, 0x0e, 0xf4, 0x26, 0x9f,
|
0x8b, 0x8a, 0x8a, 0x75, 0xa1, 0x19, 0x85, 0x98, 0x9a, 0xc8, 0x2c, 0xd7, 0xe3, 0x75, 0x63, 0xb3,
|
||||||
0xaa, 0x5b, 0x9b, 0xbd, 0x01, 0x1d, 0x1d, 0x44, 0xa8, 0xb4, 0x88, 0x12, 0x6a, 0xf4, 0x03, 0x5e,
|
0xb7, 0xa0, 0x65, 0xa2, 0x04, 0xb5, 0x11, 0x49, 0x46, 0x8d, 0x7e, 0xc0, 0x4b, 0x87, 0xdd, 0xa5,
|
||||||
0x02, 0x66, 0x97, 0x86, 0xc3, 0xfd, 0x4d, 0x92, 0x35, 0x6e, 0x87, 0x97, 0x00, 0x7b, 0x1b, 0x4e,
|
0x29, 0xf1, 0x60, 0x99, 0xe5, 0x8d, 0xdb, 0xe2, 0xa5, 0x83, 0xbd, 0x0b, 0x6d, 0x85, 0x59, 0x1c,
|
||||||
0x53, 0x4c, 0xc2, 0xc0, 0x13, 0x3a, 0x90, 0xf1, 0x3d, 0xdc, 0x50, 0x3b, 0x36, 0xf9, 0x1e, 0x6a,
|
0x05, 0xc2, 0x44, 0x32, 0xbd, 0x8f, 0x4b, 0x6a, 0xc7, 0x3a, 0xdf, 0xf3, 0xda, 0x51, 0xaa, 0x11,
|
||||||
0x26, 0xa8, 0x42, 0xcc, 0x5e, 0xf1, 0x31, 0xa7, 0xf5, 0x3b, 0x7d, 0x68, 0xcf, 0xd2, 0xf4, 0x42,
|
0xf3, 0x57, 0x7c, 0xc2, 0x69, 0xfd, 0x5e, 0x17, 0x9a, 0x63, 0xa5, 0x2e, 0x64, 0x88, 0x9a, 0xb5,
|
||||||
0xfa, 0xa8, 0xd8, 0x29, 0xc0, 0x83, 0x18, 0x7f, 0x4c, 0xd0, 0xd3, 0xe8, 0xf7, 0xac, 0xe9, 0x6f,
|
0x01, 0x1e, 0xa6, 0xf8, 0x73, 0x86, 0x81, 0xc1, 0xb0, 0xe3, 0x8c, 0xfe, 0x70, 0xe1, 0x90, 0xf4,
|
||||||
0x36, 0x1c, 0x92, 0x7e, 0xf6, 0x29, 0xb4, 0x8b, 0xe1, 0xc6, 0x5e, 0xab, 0x1b, 0x78, 0xd4, 0x22,
|
0xb3, 0xcf, 0xa1, 0x59, 0x4c, 0x39, 0xf6, 0x46, 0xd5, 0xe4, 0xa3, 0x16, 0xe9, 0x76, 0x2b, 0x87,
|
||||||
0xfd, 0x7e, 0xed, 0x2c, 0xcc, 0x52, 0x74, 0x09, 0x47, 0x57, 0x3a, 0x45, 0x11, 0xb1, 0xd7, 0xeb,
|
0x62, 0x9e, 0xa2, 0x4b, 0x38, 0xba, 0x32, 0x0a, 0x45, 0xc2, 0xde, 0xac, 0x1a, 0x6b, 0xeb, 0xf1,
|
||||||
0xa6, 0x59, 0x3e, 0x15, 0xfb, 0xcf, 0xdb, 0x1c, 0xd9, 0xef, 0xd9, 0x77, 0xcf, 0xff, 0xbc, 0x1e,
|
0xd8, 0x7d, 0xd1, 0xe6, 0xc0, 0xfd, 0xc0, 0xbd, 0x77, 0xfe, 0xf7, 0xaa, 0xe7, 0x3e, 0x5b, 0xf5,
|
||||||
0xd8, 0x4f, 0xaf, 0x07, 0xf6, 0x3f, 0xd7, 0x03, 0xfb, 0xd7, 0x9b, 0x81, 0xf5, 0xf4, 0x66, 0x60,
|
0xdc, 0x7f, 0x57, 0x3d, 0xf7, 0xf7, 0xeb, 0x9e, 0xf3, 0xec, 0xba, 0xe7, 0xfc, 0x73, 0xdd, 0x73,
|
||||||
0xfd, 0x75, 0x33, 0xb0, 0xbe, 0x79, 0xeb, 0x7f, 0xff, 0x82, 0x1f, 0x1e, 0xd1, 0xe7, 0xfd, 0x7f,
|
0xbe, 0x7b, 0xe7, 0xa5, 0xff, 0xc5, 0x8f, 0x8e, 0xe8, 0xf3, 0xe1, 0x7f, 0x01, 0x00, 0x00, 0xff,
|
||||||
0x03, 0x00, 0x00, 0xff, 0xff, 0x7b, 0x1f, 0x02, 0x55, 0xae, 0x07, 0x00, 0x00,
|
0xff, 0x33, 0xca, 0x5b, 0xe5, 0xb7, 0x07, 0x00, 0x00,
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *HeadSyncRange) Marshal() (dAtA []byte, err error) {
|
func (m *HeadSyncRange) Marshal() (dAtA []byte, err error) {
|
||||||
@ -1123,9 +1123,9 @@ func (m *ObjectSyncMessage) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|||||||
i--
|
i--
|
||||||
dAtA[i] = 0x22
|
dAtA[i] = 0x22
|
||||||
}
|
}
|
||||||
if m.TreeHeader != nil {
|
if m.RootChange != nil {
|
||||||
{
|
{
|
||||||
size, err := m.TreeHeader.MarshalToSizedBuffer(dAtA[:i])
|
size, err := m.RootChange.MarshalToSizedBuffer(dAtA[:i])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
@ -1638,8 +1638,8 @@ func (m *ObjectSyncMessage) Size() (n int) {
|
|||||||
l = m.Content.Size()
|
l = m.Content.Size()
|
||||||
n += 1 + l + sovSpacesync(uint64(l))
|
n += 1 + l + sovSpacesync(uint64(l))
|
||||||
}
|
}
|
||||||
if m.TreeHeader != nil {
|
if m.RootChange != nil {
|
||||||
l = m.TreeHeader.Size()
|
l = m.RootChange.Size()
|
||||||
n += 1 + l + sovSpacesync(uint64(l))
|
n += 1 + l + sovSpacesync(uint64(l))
|
||||||
}
|
}
|
||||||
l = len(m.TreeId)
|
l = len(m.TreeId)
|
||||||
@ -2497,7 +2497,7 @@ func (m *ObjectSyncMessage) Unmarshal(dAtA []byte) error {
|
|||||||
iNdEx = postIndex
|
iNdEx = postIndex
|
||||||
case 3:
|
case 3:
|
||||||
if wireType != 2 {
|
if wireType != 2 {
|
||||||
return fmt.Errorf("proto: wrong wireType = %d for field TreeHeader", wireType)
|
return fmt.Errorf("proto: wrong wireType = %d for field RootChange", wireType)
|
||||||
}
|
}
|
||||||
var msglen int
|
var msglen int
|
||||||
for shift := uint(0); ; shift += 7 {
|
for shift := uint(0); ; shift += 7 {
|
||||||
@ -2524,10 +2524,10 @@ func (m *ObjectSyncMessage) Unmarshal(dAtA []byte) error {
|
|||||||
if postIndex > l {
|
if postIndex > l {
|
||||||
return io.ErrUnexpectedEOF
|
return io.ErrUnexpectedEOF
|
||||||
}
|
}
|
||||||
if m.TreeHeader == nil {
|
if m.RootChange == nil {
|
||||||
m.TreeHeader = &treechangeproto.RootChange{}
|
m.RootChange = &treechangeproto.RawTreeChangeWithId{}
|
||||||
}
|
}
|
||||||
if err := m.TreeHeader.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
if err := m.RootChange.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
iNdEx = postIndex
|
iNdEx = postIndex
|
||||||
|
|||||||
@ -5,12 +5,16 @@ import (
|
|||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/common/commonspace/cache"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/common/commonspace/cache"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/common/commonspace/spacesyncproto"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/common/commonspace/spacesyncproto"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/common/nodeconf"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/common/nodeconf"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/aclrecordproto/aclpb"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/treechangeproto"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type SyncService interface {
|
type SyncService interface {
|
||||||
NotifyHeadUpdate(ctx context.Context, treeId string, header *aclpb.TreeHeader, update *spacesyncproto.ObjectHeadUpdate) (err error)
|
NotifyHeadUpdate(
|
||||||
|
ctx context.Context,
|
||||||
|
treeId string,
|
||||||
|
root *treechangeproto.RawTreeChangeWithId,
|
||||||
|
update *spacesyncproto.ObjectHeadUpdate) (err error)
|
||||||
StreamPool() StreamPool
|
StreamPool() StreamPool
|
||||||
|
|
||||||
Init()
|
Init()
|
||||||
@ -72,7 +76,11 @@ func (s *syncService) Close() (err error) {
|
|||||||
return s.streamPool.Close()
|
return s.streamPool.Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *syncService) NotifyHeadUpdate(ctx context.Context, treeId string, header *aclpb.TreeHeader, update *spacesyncproto.ObjectHeadUpdate) (err error) {
|
func (s *syncService) NotifyHeadUpdate(
|
||||||
|
ctx context.Context,
|
||||||
|
treeId string,
|
||||||
|
header *treechangeproto.RawTreeChangeWithId,
|
||||||
|
update *spacesyncproto.ObjectHeadUpdate) (err error) {
|
||||||
s.headNotifiable.UpdateHeads(treeId, update.Heads)
|
s.headNotifiable.UpdateHeads(treeId, update.Heads)
|
||||||
return s.streamPool.BroadcastAsync(spacesyncproto.WrapHeadUpdate(update, header, treeId, ""))
|
return s.streamPool.BroadcastAsync(spacesyncproto.WrapHeadUpdate(update, header, treeId, ""))
|
||||||
}
|
}
|
||||||
|
|||||||
@ -4,10 +4,10 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/common/commonspace/spacesyncproto"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/common/commonspace/spacesyncproto"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/common/commonspace/syncservice"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/common/commonspace/syncservice"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/aclrecordproto/aclpb"
|
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/list"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/list"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/storage"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/storage"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/tree"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/tree"
|
||||||
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/treechangeproto"
|
||||||
)
|
)
|
||||||
|
|
||||||
type UpdateListener interface {
|
type UpdateListener interface {
|
||||||
@ -91,7 +91,7 @@ func (s *SyncTree) AddContent(ctx context.Context, content tree.SignableChangeCo
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *SyncTree) AddRawChanges(ctx context.Context, changes ...*aclpb.RawTreeChangeWithId) (res tree.AddResult, err error) {
|
func (s *SyncTree) AddRawChanges(ctx context.Context, changes ...*treechangeproto.RawTreeChangeWithId) (res tree.AddResult, err error) {
|
||||||
res, err = s.AddRawChanges(ctx, changes...)
|
res, err = s.AddRawChanges(ctx, changes...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
|
|||||||
@ -1,7 +1,6 @@
|
|||||||
package account
|
package account
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys"
|
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/encryptionkey"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/encryptionkey"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
||||||
)
|
)
|
||||||
@ -10,5 +9,4 @@ type AccountData struct { // TODO: create a convenient constructor for this
|
|||||||
Identity []byte // public key
|
Identity []byte // public key
|
||||||
SignKey signingkey.PrivKey
|
SignKey signingkey.PrivKey
|
||||||
EncKey encryptionkey.PrivKey
|
EncKey encryptionkey.PrivKey
|
||||||
Decoder keys.Decoder
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,7 +8,6 @@ import (
|
|||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/aclrecordproto"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/aclrecordproto"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/common"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/common"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/storage"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/storage"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys"
|
|
||||||
"sync"
|
"sync"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -58,7 +57,7 @@ func BuildACLListWithIdentity(acc *account.AccountData, storage storage.ListStor
|
|||||||
return build(id, builder, newACLRecordBuilder(id, common.NewKeychain()), storage)
|
return build(id, builder, newACLRecordBuilder(id, common.NewKeychain()), storage)
|
||||||
}
|
}
|
||||||
|
|
||||||
func BuildACLList(decoder keys.Decoder, storage storage.ListStorage) (ACLList, error) {
|
func BuildACLList(storage storage.ListStorage) (ACLList, error) {
|
||||||
id, err := storage.ID()
|
id, err := storage.ID()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|||||||
@ -3,7 +3,6 @@ package list
|
|||||||
import (
|
import (
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/aclrecordproto"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/aclrecordproto"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/testutils/acllistbuilder"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/testutils/acllistbuilder"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
"testing"
|
"testing"
|
||||||
@ -15,7 +14,7 @@ func TestAclList_ACLState_UserInviteAndJoin(t *testing.T) {
|
|||||||
|
|
||||||
keychain := st.(*acllistbuilder.ACLListStorageBuilder).GetKeychain()
|
keychain := st.(*acllistbuilder.ACLListStorageBuilder).GetKeychain()
|
||||||
|
|
||||||
aclList, err := BuildACLList(signingkey.NewEDPubKeyDecoder(), st)
|
aclList, err := BuildACLList(st)
|
||||||
require.NoError(t, err, "building acl list should be without error")
|
require.NoError(t, err, "building acl list should be without error")
|
||||||
|
|
||||||
idA := keychain.GetIdentity("A")
|
idA := keychain.GetIdentity("A")
|
||||||
@ -54,7 +53,7 @@ func TestAclList_ACLState_UserJoinAndRemove(t *testing.T) {
|
|||||||
|
|
||||||
keychain := st.(*acllistbuilder.ACLListStorageBuilder).GetKeychain()
|
keychain := st.(*acllistbuilder.ACLListStorageBuilder).GetKeychain()
|
||||||
|
|
||||||
aclList, err := BuildACLList(signingkey.NewEDPubKeyDecoder(), st)
|
aclList, err := BuildACLList(st)
|
||||||
require.NoError(t, err, "building acl list should be without error")
|
require.NoError(t, err, "building acl list should be without error")
|
||||||
|
|
||||||
idA := keychain.GetIdentity("A")
|
idA := keychain.GetIdentity("A")
|
||||||
|
|||||||
@ -2,6 +2,7 @@ package acllistbuilder
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/aclrecordproto"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/aclrecordproto"
|
||||||
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/encryptionkey"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/encryptionkey"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
||||||
"hash/fnv"
|
"hash/fnv"
|
||||||
@ -23,7 +24,6 @@ type YAMLKeychain struct {
|
|||||||
ReadKeysByHash map[uint64]*SymKey
|
ReadKeysByHash map[uint64]*SymKey
|
||||||
GeneratedIdentities map[string]string
|
GeneratedIdentities map[string]string
|
||||||
DerivedIdentity string
|
DerivedIdentity string
|
||||||
coder signingkey.PubKeyDecoder
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewKeychain() *YAMLKeychain {
|
func NewKeychain() *YAMLKeychain {
|
||||||
@ -34,7 +34,6 @@ func NewKeychain() *YAMLKeychain {
|
|||||||
GeneratedIdentities: map[string]string{},
|
GeneratedIdentities: map[string]string{},
|
||||||
ReadKeysByYAMLIdentity: map[string]*SymKey{},
|
ReadKeysByYAMLIdentity: map[string]*SymKey{},
|
||||||
ReadKeysByHash: map[uint64]*SymKey{},
|
ReadKeysByHash: map[uint64]*SymKey{},
|
||||||
coder: signingkey.NewEd25519PubKeyDecoder(),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -67,12 +66,10 @@ func (k *YAMLKeychain) AddEncryptionKey(key *Key) {
|
|||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
decoder := encryptionkey.NewRSAPrivKeyDecoder()
|
newPrivKey, err = keys.DecodeKeyFromString(key.Value, encryptionkey.NewEncryptionRsaPrivKeyFromBytes, nil)
|
||||||
privKey, err := decoder.DecodeFromString(key.Value)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
newPrivKey = privKey.(encryptionkey.PrivKey)
|
|
||||||
}
|
}
|
||||||
k.EncryptionKeysByYAMLIdentity[key.Name] = newPrivKey
|
k.EncryptionKeysByYAMLIdentity[key.Name] = newPrivKey
|
||||||
}
|
}
|
||||||
@ -92,12 +89,10 @@ func (k *YAMLKeychain) AddSigningKey(key *Key) {
|
|||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
decoder := signingkey.NewEDPrivKeyDecoder()
|
newPrivKey, err = keys.DecodeKeyFromString(key.Value, signingkey.NewSigningEd25519PrivKeyFromBytes, nil)
|
||||||
privKey, err := decoder.DecodeFromString(key.Value)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
newPrivKey = privKey.(signingkey.PrivKey)
|
|
||||||
pubKey = newPrivKey.GetPublic()
|
pubKey = newPrivKey.GetPublic()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -39,7 +39,7 @@ type ObjectTree interface {
|
|||||||
RWLocker
|
RWLocker
|
||||||
|
|
||||||
ID() string
|
ID() string
|
||||||
Header() *treechangeproto.RootChange
|
Header() *treechangeproto.RawTreeChangeWithId
|
||||||
Heads() []string
|
Heads() []string
|
||||||
Root() *Change
|
Root() *Change
|
||||||
HasChange(string) bool
|
HasChange(string) bool
|
||||||
@ -68,7 +68,7 @@ type objectTree struct {
|
|||||||
aclList list.ACLList
|
aclList list.ACLList
|
||||||
|
|
||||||
id string
|
id string
|
||||||
root *treechangeproto.RootChange
|
root *treechangeproto.RawTreeChangeWithId
|
||||||
tree *Tree
|
tree *Tree
|
||||||
|
|
||||||
keys map[uint64]*symmetric.Key
|
keys map[uint64]*symmetric.Key
|
||||||
@ -132,7 +132,7 @@ func (ot *objectTree) ID() string {
|
|||||||
return ot.id
|
return ot.id
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ot *objectTree) Header() *treechangeproto.RootChange {
|
func (ot *objectTree) Header() *treechangeproto.RawTreeChangeWithId {
|
||||||
return ot.root
|
return ot.root
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -2,13 +2,10 @@ package tree
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"crypto/rand"
|
|
||||||
"encoding/hex"
|
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/list"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/list"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/storage"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/storage"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/testutils/acllistbuilder"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/testutils/acllistbuilder"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/treechangeproto"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/treechangeproto"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
"testing"
|
"testing"
|
||||||
@ -108,7 +105,7 @@ func prepareACLList(t *testing.T) list.ACLList {
|
|||||||
st, err := acllistbuilder.NewListStorageWithTestName("userjoinexample.yml")
|
st, err := acllistbuilder.NewListStorageWithTestName("userjoinexample.yml")
|
||||||
require.NoError(t, err, "building storage should not result in error")
|
require.NoError(t, err, "building storage should not result in error")
|
||||||
|
|
||||||
aclList, err := list.BuildACLList(signingkey.NewEDPubKeyDecoder(), st)
|
aclList, err := list.BuildACLList(st)
|
||||||
require.NoError(t, err, "building acl list should be without error")
|
require.NoError(t, err, "building acl list should be without error")
|
||||||
|
|
||||||
return aclList
|
return aclList
|
||||||
@ -151,18 +148,6 @@ func prepareTreeContext(t *testing.T, aclList list.ACLList) testTreeContext {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestSameSignature(t *testing.T) {
|
|
||||||
privKey, _, err := signingkey.GenerateEd25519Key(rand.Reader)
|
|
||||||
require.NoError(t, err)
|
|
||||||
bytes := []byte("asefhiosahjfoiesjgioesajgihs")
|
|
||||||
for i := 0; i < 5; i++ {
|
|
||||||
signed, err := privKey.Sign(bytes)
|
|
||||||
require.NoError(t, err)
|
|
||||||
t.Log(hex.EncodeToString(signed))
|
|
||||||
}
|
|
||||||
// kitten step voyage hand cover funny timber auction differ mushroom update pulp
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestObjectTree(t *testing.T) {
|
func TestObjectTree(t *testing.T) {
|
||||||
aclList := prepareACLList(t)
|
aclList := prepareACLList(t)
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,6 @@ import (
|
|||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/symmetric"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/symmetric"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/slice"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/slice"
|
||||||
"github.com/gogo/protobuf/proto"
|
|
||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -114,19 +113,13 @@ func buildObjectTree(deps objectTreeDeps) (ObjectTree, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
rawRootWithId, err := objTree.treeStorage.Root()
|
objTree.root, err = objTree.treeStorage.Root()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
rawRoot := &treechangeproto.RawTreeChange{}
|
// verifying root
|
||||||
err = proto.Unmarshal(rawRootWithId.RawChange, rawRoot)
|
_, err = objTree.changeBuilder.ConvertFromRaw(objTree.root, true)
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
objTree.root = &treechangeproto.RootChange{}
|
|
||||||
err = proto.Unmarshal(rawRoot.Payload, objTree.root)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|||||||
@ -5,7 +5,6 @@ import (
|
|||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/app"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/app"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/app/logger"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/app/logger"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/config"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/config"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys"
|
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/encryptionkey"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/encryptionkey"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys/asymmetric/signingkey"
|
||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
@ -83,9 +82,7 @@ func (s *service) Nodes() []*Node {
|
|||||||
|
|
||||||
func nodeFromConfigNode(
|
func nodeFromConfigNode(
|
||||||
n config.Node,
|
n config.Node,
|
||||||
peerId string,
|
peerId string) (*Node, error) {
|
||||||
privateSigningDecoder keys.Decoder,
|
|
||||||
privateEncryptionDecoder keys.Decoder) (*Node, error) {
|
|
||||||
decodedSigningKey, err := privateSigningDecoder.DecodeFromString(n.SigningKey)
|
decodedSigningKey, err := privateSigningDecoder.DecodeFromString(n.SigningKey)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|||||||
@ -107,14 +107,6 @@ func NewEncryptionRsaPubKeyFromBytes(bytes []byte) (PubKey, error) {
|
|||||||
return &EncryptionRsaPubKey{pubKey: *pk}, nil
|
return &EncryptionRsaPubKey{pubKey: *pk}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewRSAPrivKeyDecoder() keys.Decoder {
|
|
||||||
return keys.NewKeyDecoder(NewEncryptionRsaPrivKeyFromBytes)
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewRSAPubKeyDecoder() keys.Decoder {
|
|
||||||
return keys.NewKeyDecoder(NewEncryptionRsaPubKeyFromBytes)
|
|
||||||
}
|
|
||||||
|
|
||||||
func keyEquals(k1, k2 keys.Key) bool {
|
func keyEquals(k1, k2 keys.Key) bool {
|
||||||
a, err := k1.Raw()
|
a, err := k1.Raw()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
@ -9,8 +9,6 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys"
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/keys"
|
||||||
"io"
|
"io"
|
||||||
|
|
||||||
"github.com/anytypeio/go-anytype-infrastructure-experiments/util/strkey"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// Ed25519PrivateKey is an ed25519 private key.
|
// Ed25519PrivateKey is an ed25519 private key.
|
||||||
@ -147,43 +145,3 @@ func UnmarshalEd25519PrivateKey(data []byte) (PrivKey, error) {
|
|||||||
k: ed25519.PrivateKey(data),
|
k: ed25519.PrivateKey(data),
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: remove this one in favor of new one
|
|
||||||
type Ed25519SigningPubKeyDecoder struct{}
|
|
||||||
|
|
||||||
func NewEd25519PubKeyDecoder() PubKeyDecoder {
|
|
||||||
return &Ed25519SigningPubKeyDecoder{}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *Ed25519SigningPubKeyDecoder) DecodeFromBytes(bytes []byte) (PubKey, error) {
|
|
||||||
return NewSigningEd25519PubKeyFromBytes(bytes)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *Ed25519SigningPubKeyDecoder) DecodeFromString(identity string) (PubKey, error) {
|
|
||||||
pubKeyRaw, err := strkey.Decode(0x5b, identity)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
return e.DecodeFromBytes(pubKeyRaw)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *Ed25519SigningPubKeyDecoder) DecodeFromStringIntoBytes(identity string) ([]byte, error) {
|
|
||||||
return strkey.Decode(0x5b, identity)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *Ed25519SigningPubKeyDecoder) EncodeToString(pubkey PubKey) (string, error) {
|
|
||||||
raw, err := pubkey.Raw()
|
|
||||||
if err != nil {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
return strkey.Encode(0x5b, raw)
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewEDPrivKeyDecoder() keys.Decoder {
|
|
||||||
return keys.NewKeyDecoder(NewSigningEd25519PrivKeyFromBytes)
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewEDPubKeyDecoder() keys.Decoder {
|
|
||||||
return keys.NewKeyDecoder(NewSigningEd25519PubKeyFromBytes)
|
|
||||||
}
|
|
||||||
|
|||||||
@ -15,10 +15,3 @@ type PubKey interface {
|
|||||||
|
|
||||||
Verify(data []byte, sig []byte) (bool, error)
|
Verify(data []byte, sig []byte) (bool, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
type PubKeyDecoder interface {
|
|
||||||
DecodeFromBytes(bytes []byte) (PubKey, error)
|
|
||||||
DecodeFromString(identity string) (PubKey, error)
|
|
||||||
DecodeFromStringIntoBytes(identity string) ([]byte, error)
|
|
||||||
EncodeToString(pubkey PubKey) (string, error)
|
|
||||||
}
|
|
||||||
|
|||||||
30
util/keys/decode.go
Normal file
30
util/keys/decode.go
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
package keys
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/base64"
|
||||||
|
)
|
||||||
|
|
||||||
|
func EncodeKeyToString[T Key](key T) (str string, err error) {
|
||||||
|
raw, err := key.Raw()
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
str = EncodeBytesToString(raw)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func EncodeBytesToString(bytes []byte) string {
|
||||||
|
return base64.StdEncoding.EncodeToString(bytes)
|
||||||
|
}
|
||||||
|
|
||||||
|
func DecodeKeyFromString[T Key](str string, construct func([]byte) (T, error), def T) (T, error) {
|
||||||
|
dec, err := DecodeBytesFromString(str)
|
||||||
|
if err != nil {
|
||||||
|
return def, err
|
||||||
|
}
|
||||||
|
return construct(dec)
|
||||||
|
}
|
||||||
|
|
||||||
|
func DecodeBytesFromString(str string) (bytes []byte, err error) {
|
||||||
|
return base64.StdEncoding.DecodeString(str)
|
||||||
|
}
|
||||||
@ -1,38 +0,0 @@
|
|||||||
package keys
|
|
||||||
|
|
||||||
import "github.com/anytypeio/go-anytype-infrastructure-experiments/util/strkey"
|
|
||||||
|
|
||||||
type keyDecoder[T Key] struct {
|
|
||||||
create func([]byte) (T, error)
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewKeyDecoder[T Key](create func(bytes []byte) (T, error)) Decoder {
|
|
||||||
return &keyDecoder[T]{
|
|
||||||
create: create,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *keyDecoder[T]) DecodeFromBytes(bytes []byte) (Key, error) {
|
|
||||||
return e.create(bytes)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *keyDecoder[T]) DecodeFromString(identity string) (Key, error) {
|
|
||||||
pubKeyRaw, err := strkey.Decode(0x5b, identity)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
return e.DecodeFromBytes(pubKeyRaw)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *keyDecoder[T]) DecodeFromStringIntoBytes(identity string) ([]byte, error) {
|
|
||||||
return strkey.Decode(0x5b, identity)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *keyDecoder[T]) EncodeToString(key Key) (string, error) {
|
|
||||||
raw, err := key.Raw()
|
|
||||||
if err != nil {
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
return strkey.Encode(0x5b, raw)
|
|
||||||
}
|
|
||||||
@ -8,13 +8,6 @@ type Key interface {
|
|||||||
Raw() ([]byte, error)
|
Raw() ([]byte, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
type Decoder interface {
|
|
||||||
DecodeFromBytes(bytes []byte) (Key, error)
|
|
||||||
DecodeFromString(identity string) (Key, error)
|
|
||||||
DecodeFromStringIntoBytes(identity string) ([]byte, error)
|
|
||||||
EncodeToString(key Key) (string, error)
|
|
||||||
}
|
|
||||||
|
|
||||||
func KeyEquals(k1, k2 Key) bool {
|
func KeyEquals(k1, k2 Key) bool {
|
||||||
a, err := k1.Raw()
|
a, err := k1.Raw()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user