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