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
!76
Messenger example - auth requests handling
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Messenger example - auth requests handling
feature/messenger-example-request-handling
into
development
Overview
0
Commits
12
Pipelines
0
Changes
14
Merged
Dariusz Rybicki
requested to merge
feature/messenger-example-request-handling
into
development
2 years ago
Overview
0
Commits
12
Pipelines
0
Changes
14
Expand
0
0
Merge request reports
Compare
development
version 5
0f8d52eb
2 years ago
version 4
0c1316ca
2 years ago
version 3
6954cbc6
2 years ago
version 2
7cebec16
2 years ago
version 1
db42327e
2 years ago
development (base)
and
latest version
latest version
a9e3ade0
12 commits,
2 years ago
version 5
0f8d52eb
7 commits,
2 years ago
version 4
0c1316ca
5 commits,
2 years ago
version 3
6954cbc6
4 commits,
2 years ago
version 2
7cebec16
3 commits,
2 years ago
version 1
db42327e
2 commits,
2 years ago
14 files
+
710
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
Examples/xx-messenger/Sources/AppCore/AuthCallbackHandler/AuthCallbackHandler.swift
0 → 100644
+
49
−
0
Options
import
Foundation
import
XCTestDynamicOverlay
import
XXClient
import
XXMessengerClient
import
XXModels
public
struct
AuthCallbackHandler
{
public
typealias
OnError
=
(
Error
)
->
Void
public
var
run
:
(
@escaping
OnError
)
->
Cancellable
public
func
callAsFunction
(
onError
:
@escaping
OnError
)
->
Cancellable
{
run
(
onError
)
}
}
extension
AuthCallbackHandler
{
public
static
func
live
(
messenger
:
Messenger
,
handleRequest
:
AuthCallbackHandlerRequest
,
handleConfirm
:
AuthCallbackHandlerConfirm
,
handleReset
:
AuthCallbackHandlerReset
)
->
AuthCallbackHandler
{
AuthCallbackHandler
{
onError
in
messenger
.
registerAuthCallbacks
(
.
init
{
callback
in
do
{
switch
callback
{
case
.
request
(
let
contact
,
_
,
_
,
_
):
try
handleRequest
(
contact
)
case
.
confirm
(
let
contact
,
_
,
_
,
_
):
try
handleConfirm
(
contact
)
case
.
reset
(
let
contact
,
_
,
_
,
_
):
try
handleReset
(
contact
)
}
}
catch
{
onError
(
error
)
}
})
}
}
}
extension
AuthCallbackHandler
{
public
static
let
unimplemented
=
AuthCallbackHandler
(
run
:
XCTUnimplemented
(
"
\(
Self
.
self
)
"
,
placeholder
:
Cancellable
{})
)
}
Loading