-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathOAuthFlow.php
More file actions
135 lines (107 loc) 路 2.47 KB
/
Copy pathOAuthFlow.php
File metadata and controls
135 lines (107 loc) 路 2.47 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
<?php declare(strict_types = 1);
namespace Contributte\OpenApi\Schema;
class OAuthFlow
{
private ?string $authorizationUrl;
private ?string $tokenUrl;
private ?string $refreshUrl;
/** @var array<string, string> */
private array $scopes;
private ?VendorExtensions $vendorExtensions = null;
/**
* @param array<string, string> $scopes
*/
public function __construct(
?string $authorizationUrl = null,
?string $tokenUrl = null,
?string $refreshUrl = null,
array $scopes = [],
)
{
$this->authorizationUrl = $authorizationUrl;
$this->tokenUrl = $tokenUrl;
$this->refreshUrl = $refreshUrl;
$this->scopes = $scopes;
}
/**
* @param mixed[] $data
*/
public static function fromArray(array $data): self
{
$flow = new self(
$data['authorizationUrl'] ?? null,
$data['tokenUrl'] ?? null,
$data['refreshUrl'] ?? null,
$data['scopes'],
);
$flow->setVendorExtensions(VendorExtensions::fromArray($data));
return $flow;
}
/**
* @return mixed[]
*/
public function toArray(): array
{
$data = [];
if ($this->authorizationUrl !== null) {
$data['authorizationUrl'] = $this->authorizationUrl;
}
if ($this->tokenUrl !== null) {
$data['tokenUrl'] = $this->tokenUrl;
}
if ($this->refreshUrl !== null) {
$data['refreshUrl'] = $this->refreshUrl;
}
$data['scopes'] = $this->scopes;
if ($this->vendorExtensions !== null) {
$data = array_merge($data, $this->vendorExtensions->toArray());
}
return $data;
}
public function getAuthorizationUrl(): ?string
{
return $this->authorizationUrl;
}
public function setAuthorizationUrl(?string $authorizationUrl): void
{
$this->authorizationUrl = $authorizationUrl;
}
public function getTokenUrl(): ?string
{
return $this->tokenUrl;
}
public function setTokenUrl(?string $tokenUrl): void
{
$this->tokenUrl = $tokenUrl;
}
public function getRefreshUrl(): ?string
{
return $this->refreshUrl;
}
public function setRefreshUrl(?string $refreshUrl): void
{
$this->refreshUrl = $refreshUrl;
}
/**
* @return array<string, string>
*/
public function getScopes(): array
{
return $this->scopes;
}
/**
* @param array<string, string> $scopes
*/
public function setScopes(array $scopes): void
{
$this->scopes = $scopes;
}
public function getVendorExtensions(): ?VendorExtensions
{
return $this->vendorExtensions;
}
public function setVendorExtensions(?VendorExtensions $vendorExtensions): void
{
$this->vendorExtensions = $vendorExtensions;
}
}