Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elixxir
client
Commits
938846f9
Commit
938846f9
authored
2 years ago
by
Josh Brooks
Browse files
Options
Downloads
Patches
Plain Diff
Add docstring
parent
994ee29a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!510
Release
,
!325
Support a single call for ud.NewOrLoad
,
!323
Xx 4019/new or load alt ud
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bindings/ud.go
+3
-0
3 additions, 0 deletions
bindings/ud.go
cmd/ud.go
+7
-7
7 additions, 7 deletions
cmd/ud.go
with
10 additions
and
7 deletions
bindings/ud.go
+
3
−
0
View file @
938846f9
...
...
@@ -121,9 +121,12 @@ type UdNetworkStatus interface {
// This may be nil, however UD may return an error in some cases (e.g. in a production level
// environment).
// - cert is the TLS certificate for the UD server this call will connect with.
// You may use the UD server run by the xx network team by using E2e.GetUdCertFromNdf.
// - contactFile is the data within a marshalled contact.Contact. This represents the
// contact file of the server this call will connect with.
// You may use the UD server run by the xx network team by using E2e.GetUdContactFromNdf.
// - address is the IP address of the UD server this call will connect with.
// You may use the UD server run by the xx network team by using E2e.GetUdAddressFromNdf.
//
// Returns
// - A Manager object which is registered to the specified alternate UD service.
...
...
This diff is collapsed.
Click to expand it.
cmd/ud.go
+
7
−
7
View file @
938846f9
...
...
@@ -63,7 +63,7 @@ var udCmd = &cobra.Command{
jww
.
TRACE
.
Printf
(
"[UD] Connected!"
)
address
,
cert
,
contactFile
,
err
:=
getUdContactInfo
(
user
)
cert
,
contactFile
,
address
,
err
:=
getUdContactInfo
(
user
)
if
err
!=
nil
{
jww
.
FATAL
.
Panicf
(
"Failed to load UD contact information from NDF: %+v"
,
err
)
}
...
...
@@ -73,7 +73,7 @@ var udCmd = &cobra.Command{
jww
.
TRACE
.
Printf
(
"[UD] Registering identity %v..."
,
userToRegister
)
userDiscoveryMgr
,
err
:=
ud
.
NewOrLoad
(
user
,
user
.
GetComms
(),
user
.
NetworkFollowerStatus
,
userToRegister
,
nil
,
cert
,
address
,
contactFile
)
cert
,
contactFile
,
address
)
if
err
!=
nil
{
jww
.
FATAL
.
Panicf
(
"Failed to load or create new UD manager: %+v"
,
err
)
}
...
...
@@ -254,10 +254,10 @@ var udCmd = &cobra.Command{
// getUdContactInfo is a helper function which retrieves the necessary information
// to contact UD.
func
getUdContactInfo
(
user
*
xxdk
.
E2e
)
(
cert
,
address
,
contactFile
[]
byte
,
err
error
)
{
func
getUdContactInfo
(
user
*
xxdk
.
E2e
)
(
cert
,
contactFile
[]
byte
,
address
string
,
err
error
)
{
// Retrieve address
address
=
[]
byte
(
user
.
GetCmix
()
.
GetInstance
()
.
GetPartialNdf
()
.
Get
()
.
UDB
.
Address
)
address
=
string
(
[]
byte
(
user
.
GetCmix
()
.
GetInstance
()
.
GetPartialNdf
()
.
Get
()
.
UDB
.
Address
)
)
// Retrieve certificate
cert
=
[]
byte
(
user
.
GetCmix
()
.
GetInstance
()
.
GetPartialNdf
()
.
Get
()
.
UDB
.
Cert
)
...
...
@@ -266,7 +266,7 @@ func getUdContactInfo(user *xxdk.E2e) (cert, address, contactFile []byte, err er
udIdData
:=
user
.
GetCmix
()
.
GetInstance
()
.
GetPartialNdf
()
.
Get
()
.
UDB
.
ID
udId
,
err
:=
id
.
Unmarshal
(
udIdData
)
if
err
!=
nil
{
return
nil
,
nil
,
nil
,
err
return
nil
,
nil
,
""
,
err
}
// Retrieve DH Pub Key
...
...
@@ -274,7 +274,7 @@ func getUdContactInfo(user *xxdk.E2e) (cert, address, contactFile []byte, err er
var
udDhPubKey
*
cyclic
.
Int
err
=
udDhPubKey
.
UnmarshalJSON
(
udDhPubKeyData
)
if
err
!=
nil
{
return
nil
,
nil
,
nil
,
err
return
nil
,
nil
,
""
,
err
}
// Construct contact
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment