8
8
import Foundation
9
9
10
10
func ovalChallenge( from event: ServerSessionInformationEvent ) -> FaceLivenessSession . OvalMatchChallenge {
11
- let challengeConfig = event. sessionInformation. challenge. faceMovementAndLightChallenge. challengeConfig
12
- let ovalParameters = event. sessionInformation. challenge. faceMovementAndLightChallenge. ovalParameters
11
+ let challengeConfig : ChallengeConfig
12
+ let ovalParameters : OvalParameters
13
+
14
+ switch event. sessionInformation. challenge. type {
15
+ case . faceMovementAndLightChallenge( let challenge) :
16
+ challengeConfig = challenge. challengeConfig
17
+ ovalParameters = challenge. ovalParameters
18
+ case . faceMovementChallenge( let challenge) :
19
+ challengeConfig = challenge. challengeConfig
20
+ ovalParameters = challenge. ovalParameters
21
+ }
22
+
13
23
let ovalBoundingBox = FaceLivenessSession . BoundingBox. init (
14
24
x: Double ( ovalParameters. centerX - ovalParameters. width / 2 ) ,
15
25
y: Double ( ovalParameters. centerY - ovalParameters. height / 2 ) ,
@@ -37,44 +47,46 @@ func ovalChallenge(from event: ServerSessionInformationEvent) -> FaceLivenessSes
37
47
)
38
48
}
39
49
40
- func colorChallenge( from event: ServerSessionInformationEvent ) -> FaceLivenessSession . ColorChallenge {
41
- let displayColors = event. sessionInformation. challenge
42
- . faceMovementAndLightChallenge. colorSequences
43
- . map ( { color -> FaceLivenessSession . DisplayColor in
50
+ func colorChallenge( from event: ServerSessionInformationEvent ) -> FaceLivenessSession . ColorChallenge ? {
51
+ switch event. sessionInformation. challenge. type {
52
+ case . faceMovementAndLightChallenge( let challenge) :
53
+ let displayColors = challenge. colorSequences
54
+ . map ( { color -> FaceLivenessSession . DisplayColor in
44
55
45
- let duration : Double
46
- let shouldScroll : Bool
47
- switch ( color. downscrollDuration, color. flatDisplayDuration) {
48
- case ( ... 0 , 0 ... ) :
49
- duration = Double ( color. flatDisplayDuration)
50
- shouldScroll = false
51
- default :
52
- duration = Double ( color. downscrollDuration)
53
- shouldScroll = true
54
- }
56
+ let duration : Double
57
+ let shouldScroll : Bool
58
+ switch ( color. downscrollDuration, color. flatDisplayDuration) {
59
+ case ( ... 0 , 0 ... ) :
60
+ duration = Double ( color. flatDisplayDuration)
61
+ shouldScroll = false
62
+ default :
63
+ duration = Double ( color. downscrollDuration)
64
+ shouldScroll = true
65
+ }
55
66
56
- precondition (
57
- color. freshnessColor. rgb. count == 3 ,
58
- """
59
- Received invalid freshness colors.
60
- Expected 3 values (r, g, b), received: \( color. freshnessColor. rgb. count)
61
- """
62
- )
67
+ precondition (
68
+ color. freshnessColor. rgb. count == 3 ,
69
+ """
70
+ Received invalid freshness colors.
71
+ Expected 3 values (r, g, b), received: \( color. freshnessColor. rgb. count)
72
+ """
73
+ )
63
74
64
- return . init(
65
- rgb: . init(
66
- red: Double ( color. freshnessColor. rgb [ 0 ] ) / 255 ,
67
- green: Double ( color. freshnessColor. rgb [ 1 ] ) / 255 ,
68
- blue: Double ( color. freshnessColor. rgb [ 2 ] ) / 255 ,
69
- _values: color. freshnessColor. rgb
70
- ) ,
71
- duration: duration,
72
- shouldScroll: shouldScroll
73
- )
74
- } )
75
- return . init(
76
- colors: displayColors
77
- )
75
+ return . init(
76
+ rgb: . init(
77
+ red: Double ( color. freshnessColor. rgb [ 0 ] ) / 255 ,
78
+ green: Double ( color. freshnessColor. rgb [ 1 ] ) / 255 ,
79
+ blue: Double ( color. freshnessColor. rgb [ 2 ] ) / 255 ,
80
+ _values: color. freshnessColor. rgb
81
+ ) ,
82
+ duration: duration,
83
+ shouldScroll: shouldScroll
84
+ )
85
+ } )
86
+ return . init( colors: displayColors)
87
+ case . faceMovementChallenge:
88
+ return nil
89
+ }
78
90
}
79
91
80
92
func sessionConfiguration( from event: ServerSessionInformationEvent ) -> FaceLivenessSession . SessionConfiguration {
@@ -83,3 +95,10 @@ func sessionConfiguration(from event: ServerSessionInformationEvent) -> FaceLive
83
95
ovalMatchChallenge: ovalChallenge ( from: event)
84
96
)
85
97
}
98
+
99
+ func challengeType( from event: ChallengeEvent ) -> Challenge {
100
+ . init(
101
+ version: event. version,
102
+ type: event. type
103
+ )
104
+ }
0 commit comments