Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Elixxir dApps SDK Swift
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
mobile
iOS
Elixxir dApps SDK Swift
Merge requests
!1
Client management
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Client management
feature/client-management
into
main
Overview
0
Commits
28
Pipelines
0
Changes
2
Merged
Dariusz Rybicki
requested to merge
feature/client-management
into
main
2 years ago
Overview
0
Commits
28
Pipelines
0
Changes
2
Expand
Download NDF.
Generate a secure password.
Handle secure password storage with the iOS keychain.
Create and store a new client.
Load stored client.
Remove stored client.
Example app with all of the above.
0
0
Merge request reports
Viewing commit
78482567
Prev
Next
Show latest version
2 files
+
34
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
78482567
Add ClientLoader
· 78482567
Dariusz Rybicki
authored
2 years ago
Sources/ElixxirDAppsSDK/ClientLoader.swift
0 → 100644
+
30
−
0
Options
import
Bindings
public
struct
ClientLoader
{
public
var
load
:
(
URL
,
Data
)
throws
->
Client
public
func
callAsFunction
(
directoryURL
:
URL
,
password
:
Data
)
throws
->
Client
{
try
load
(
directoryURL
,
password
)
}
}
extension
ClientLoader
{
public
static
let
live
=
ClientLoader
{
directoryURL
,
password
in
var
error
:
NSError
?
let
bindingsClient
=
BindingsLogin
(
directoryURL
.
path
,
password
,
&
error
)
if
let
error
=
error
{
throw
error
}
guard
let
bindingsClient
=
bindingsClient
else
{
throw
BindingsLoginUnknownError
()
}
return
Client
.
live
(
bindingsClient
:
bindingsClient
)
}
}
#if DEBUG
extension
ClientLoader
{
public
static
let
failing
=
ClientLoader
{
_
,
_
in
struct
NotImplemented
:
Error
{}
throw
NotImplemented
()
}
}
#endif
Loading