-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathSecurityScheme.php
More file actions
204 lines (164 loc) · 4.02 KB
/
SecurityScheme.php
File metadata and controls
204 lines (164 loc) · 4.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<?php
declare(strict_types=1);
namespace GoldSpecDigital\ObjectOrientedOAS\Objects;
use GoldSpecDigital\ObjectOrientedOAS\Utilities\Arr;
/**
* @property string|null $type
* @property string|null $description
* @property string|null $name
* @property string|null $in
* @property string|null $scheme
* @property string|null $bearerFormat
* @property \GoldSpecDigital\ObjectOrientedOAS\Objects\OAuthFlow[]|null $flows
* @property string|null $openIdConnectUrl
*/
class SecurityScheme extends BaseObject
{
const TYPE_API_KEY = 'apiKey';
const TYPE_HTTP = 'http';
const TYPE_OAUTH2 = 'oauth2';
const TYPE_OPEN_ID_CONNECT = 'openIdConnect';
const IN_QUERY = 'query';
const IN_HEADER = 'header';
const IN_COOKIE = 'cookie';
/**
* @var string|null
*/
protected $type;
/**
* @var string|null
*/
protected $description;
/**
* @var string|null
*/
protected $name;
/**
* @var string|null
*/
protected $in;
/**
* @var string|null
*/
protected $scheme;
/**
* @var string|null
*/
protected $bearerFormat;
/**
* @var \GoldSpecDigital\ObjectOrientedOAS\Objects\OAuthFlow[]|null
*/
protected $flows;
/**
* @var string|null
*/
protected $openIdConnectUrl;
/**
* @param string|null $objectId
* @return static
*/
public static function oauth2(?string $objectId = null): self
{
return static::create($objectId)->type(static::TYPE_OAUTH2);
}
/**
* @param string|null $type
* @return static
*/
public function type(?string $type): self
{
$instance = clone $this;
$instance->type = $type;
return $instance;
}
/**
* @param string|null $description
* @return static
*/
public function description(?string $description): self
{
$instance = clone $this;
$instance->description = $description;
return $instance;
}
/**
* @param string|null $name
* @return static
*/
public function name(?string $name): self
{
$instance = clone $this;
$instance->name = $name;
return $instance;
}
/**
* @param string|null $in
* @return static
*/
public function in(?string $in): self
{
$instance = clone $this;
$instance->in = $in;
return $instance;
}
/**
* @param string|null $scheme
* @return static
*/
public function scheme(?string $scheme): self
{
$instance = clone $this;
$instance->scheme = $scheme;
return $instance;
}
/**
* @param string|null $bearerFormat
* @return static
*/
public function bearerFormat(?string $bearerFormat): self
{
$instance = clone $this;
$instance->bearerFormat = $bearerFormat;
return $instance;
}
/**
* @param \GoldSpecDigital\ObjectOrientedOAS\Objects\OAuthFlow[] $flows
* @return static
*/
public function flows(OAuthFlow ...$flows): self
{
$instance = clone $this;
$instance->flows = $flows;
return $instance;
}
/**
* @param string|null $openIdConnectUrl
* @return static
*/
public function openIdConnectUrl(?string $openIdConnectUrl): self
{
$instance = clone $this;
$instance->openIdConnectUrl = $openIdConnectUrl;
return $instance;
}
/**
* @return array
*/
protected function generate(): array
{
$flows = [];
foreach ($this->flows ?? [] as $flow) {
$flows[$flow->flow] = $flow;
}
return Arr::filter([
'type' => $this->type,
'description' => $this->description,
'name' => $this->name,
'in' => $this->in,
'scheme' => $this->scheme,
'bearerFormat' => $this->bearerFormat,
'flows' => $flows ?: null,
'openIdConnectUrl' => $this->openIdConnectUrl,
]);
}
}