4
4
5
5
namespace OpenFeature \Providers \GoFeatureFlag ;
6
6
7
+ use DateTime ;
8
+ use OpenFeature \Providers \GoFeatureFlag \config \Config ;
9
+ use OpenFeature \Providers \GoFeatureFlag \controller \OfrepApi ;
10
+ use OpenFeature \Providers \GoFeatureFlag \exception \BaseOfrepException ;
11
+ use OpenFeature \Providers \GoFeatureFlag \exception \InvalidConfigException ;
12
+ use OpenFeature \Providers \GoFeatureFlag \exception \InvalidContextException ;
13
+ use OpenFeature \Providers \GoFeatureFlag \model \OfrepApiErrorResponse ;
14
+ use OpenFeature \Providers \GoFeatureFlag \util \Validator ;
7
15
use OpenFeature \implementation \common \Metadata ;
8
16
use OpenFeature \implementation \provider \AbstractProvider ;
9
17
use OpenFeature \implementation \provider \ResolutionDetailsBuilder ;
13
21
use OpenFeature \interfaces \provider \Provider ;
14
22
use OpenFeature \interfaces \provider \Reason ;
15
23
use OpenFeature \interfaces \provider \ResolutionDetails ;
16
- use OpenFeature \ Providers \ GoFeatureFlag \ config \ Config ;
17
- use OpenFeature \ Providers \ GoFeatureFlag \ controller \ OfrepApi ;
18
- use OpenFeature \ Providers \ GoFeatureFlag \ exception \ BaseOfrepException ;
19
- use OpenFeature \ Providers \ GoFeatureFlag \ exception \ InvalidConfigException ;
20
- use OpenFeature \ Providers \ GoFeatureFlag \ util \ Validator ;
24
+ use Throwable ;
25
+
26
+ use function array_key_exists ;
27
+ use function gettype ;
28
+ use function implode ;
21
29
22
30
class GoFeatureFlagProvider extends AbstractProvider implements Provider
23
31
{
24
- protected static string $ CLIENT_NAME = 'GO Feature Flag Provider ' ;
32
+ protected static string $ NAME = 'GO Feature Flag Provider ' ;
25
33
private OfrepApi $ ofrepApi ;
26
34
27
35
/**
@@ -30,15 +38,15 @@ class GoFeatureFlagProvider extends AbstractProvider implements Provider
30
38
public function __construct (Config $ config )
31
39
{
32
40
Validator::validateConfig ($ config );
33
- if (is_array ( $ config -> getCustomHeaders ()) && !array_key_exists (" Content-Type " , $ config ->getCustomHeaders ())) {
34
- $ config ->getCustomHeaders ()[ " Content-Type " ] = " application/json " ;
41
+ if (!array_key_exists (' Content-Type ' , $ config ->getCustomHeaders ())) {
42
+ $ config ->addCustomHeader ( ' Content-Type ' , ' application/json ' ) ;
35
43
}
36
44
$ this ->ofrepApi = new OfrepApi ($ config );
37
45
}
38
46
39
47
public function getMetadata (): Metadata
40
48
{
41
- return new Metadata (self ::$ CLIENT_NAME );
49
+ return new Metadata (static ::$ NAME );
42
50
}
43
51
44
52
public function resolveBooleanValue (string $ flagKey , bool $ defaultValue , ?EvaluationContext $ context = null ): ResolutionDetails
@@ -47,25 +55,33 @@ public function resolveBooleanValue(string $flagKey, bool $defaultValue, ?Evalua
47
55
}
48
56
49
57
/**
58
+ * @param array<mixed>|array<string, mixed>|bool|DateTime|float|int|string|null $defaultValue
50
59
* @param array<string> $allowedClasses
51
60
*/
52
- private function evaluate (string $ flagKey , mixed $ defaultValue , array $ allowedClasses , EvaluationContext $ evaluationContext = null ): ResolutionDetails
61
+ private function evaluate (string $ flagKey , array | string | bool | DateTime | float | int | null $ defaultValue , array $ allowedClasses , ? EvaluationContext $ evaluationContext = null ): ResolutionDetails
53
62
{
54
63
try {
55
- Validator::validateEvaluationContext ($ evaluationContext );
56
64
Validator::validateFlagKey ($ flagKey );
57
65
66
+ if ($ evaluationContext === null ) {
67
+ throw new InvalidContextException ('Evaluation context is null ' );
68
+ }
69
+ if ($ evaluationContext ->getTargetingKey () === null || $ evaluationContext ->getTargetingKey () === '' ) {
70
+ throw new InvalidContextException ('Missing targetingKey in evaluation context ' );
71
+ }
72
+
58
73
$ apiResp = $ this ->ofrepApi ->evaluate ($ flagKey , $ evaluationContext );
59
74
60
- if ($ apiResp-> isError () ) {
75
+ if ($ apiResp instanceof OfrepApiErrorResponse ) {
61
76
$ err = new ResolutionError (
62
- $ apiResp ->getErrorCode () ?? ErrorCode:: GENERAL () ,
63
- $ apiResp ->getErrorDetails ()
77
+ $ apiResp ->getErrorCode (),
78
+ $ apiResp ->getErrorDetails (),
64
79
);
80
+
65
81
return (new ResolutionDetailsBuilder ())
66
82
->withValue ($ defaultValue )
67
83
->withError ($ err )
68
- ->withReason (Reason:: ERROR )
84
+ ->withReason ($ apiResp -> getReason () )
69
85
->build ();
70
86
}
71
87
@@ -74,39 +90,45 @@ private function evaluate(string $flagKey, mixed $defaultValue, array $allowedCl
74
90
->withReason (Reason::ERROR )
75
91
->withError (new ResolutionError (
76
92
ErrorCode::TYPE_MISMATCH (),
77
- "Invalid type for $ flagKey, got " . gettype ($ apiResp ->getValue ()) . " expected " . implode (", " , $ allowedClasses )))
93
+ "Invalid type for $ flagKey, got " . gettype ($ apiResp ->getValue ()) . ' expected ' . implode (', ' , $ allowedClasses ),
94
+ ))
78
95
->withValue ($ defaultValue )
79
96
->build ();
80
97
}
98
+
81
99
return (new ResolutionDetailsBuilder ())
82
100
->withValue ($ apiResp ->getValue ())
83
101
->withReason ($ apiResp ->getReason ())
84
102
->withVariant ($ apiResp ->getVariant ())
85
103
->build ();
86
-
87
104
} catch (BaseOfrepException $ e ) {
88
105
$ err = new ResolutionError ($ e ->getErrorCode (), $ e ->getMessage ());
106
+
89
107
return (new ResolutionDetailsBuilder ())
90
108
->withValue ($ defaultValue )
91
109
->withError ($ err )
92
110
->withReason (Reason::ERROR )
93
111
->build ();
94
- } catch (\ Exception $ e ) {
112
+ } catch (Throwable $ e ) {
95
113
return (new ResolutionDetailsBuilder ())
96
114
->withValue ($ defaultValue )
97
- ->withError (new ResolutionError (ErrorCode::GENERAL (), " An error occurred while evaluating the flag: " . $ e ->getMessage ()))
115
+ ->withError (new ResolutionError (ErrorCode::GENERAL (), ' An error occurred while evaluating the flag: ' . $ e ->getMessage ()))
98
116
->withReason (Reason::ERROR )
99
117
->build ();
100
118
}
101
119
}
102
120
121
+ /**
122
+ * @param array<string> $allowedClasses
123
+ */
103
124
private function isValidType (mixed $ value , array $ allowedClasses ): bool
104
125
{
105
126
foreach ($ allowedClasses as $ class ) {
106
127
if ($ value instanceof $ class || gettype ($ value ) === $ class ) {
107
128
return true ;
108
129
}
109
130
}
131
+
110
132
return false ;
111
133
}
112
134
0 commit comments