Skip to content

Commit 94f37e3

Browse files
chore: add Orgs Api files
1 parent 3c72913 commit 94f37e3

File tree

3 files changed

+148
-0
lines changed

3 files changed

+148
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?php
2+
namespace Twilio\CredentialProvider;
3+
4+
use Twilio\AuthStrategy\AuthStrategy;
5+
use Twilio\AuthStrategy\TokenAuthStrategy;
6+
use Twilio\Exceptions\TwilioException;
7+
use Twilio\Http\BearerToken\OrgsTokenManager;
8+
9+
10+
class OrgsCredentialProvider extends CredentialProvider {
11+
private $options;
12+
13+
public function __construct() {
14+
parent::__construct("client-credentials");
15+
$this->options = [
16+
"grantType" => "client_credentials",
17+
"clientId" => null,
18+
"clientSecret" => null,
19+
"code" => null,
20+
"redirectUri" =>null,
21+
"audience" => null,
22+
"refreshToken" => null,
23+
"scope" => null,
24+
"tokenManager" => null
25+
];
26+
}
27+
28+
public function __get(string $name)
29+
{
30+
if (array_key_exists($name, $this->options)) {
31+
return $this->options[$name];
32+
}
33+
throw new TwilioException('Unknown property ' . $name);
34+
}
35+
36+
public function __set(string $name, $value)
37+
{
38+
if (array_key_exists($name, $this->options)) {
39+
$this->options[$name] = $value;
40+
} else {
41+
throw new TwilioException('Unknown property ' . $name);
42+
}
43+
}
44+
45+
public function toAuthStrategy(): AuthStrategy {
46+
if ($this->options["tokenManager"] === null) {
47+
$this->options["tokenManager"] = new OrgsTokenManager($this->options);
48+
}
49+
return new TokenAuthStrategy($this->tokenManager);
50+
}
51+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?php
2+
3+
namespace Twilio\CredentialProvider;
4+
5+
use Twilio\Http\BearerToken\TokenManager;
6+
7+
/**
8+
* Class ClientCredentialProviderBuilder
9+
* Builder class for ClientCredentialProvider
10+
*/
11+
12+
class OrgsCredentialProviderBuilder {
13+
private $instance;
14+
15+
public function __construct() {
16+
$this->instance = new OrgsCredentialProvider();
17+
}
18+
19+
public function setGrantType(string $grantType): OrgsCredentialProviderBuilder {
20+
$this->instance->grantType = $grantType;
21+
return $this;
22+
}
23+
24+
public function setClientId(string $clientId): OrgsCredentialProviderBuilder {
25+
$this->instance->clientId = $clientId;
26+
return $this;
27+
}
28+
29+
public function setClientSecret(string $clientSecret): OrgsCredentialProviderBuilder {
30+
$this->instance->clientSecret = $clientSecret;
31+
return $this;
32+
}
33+
34+
public function setTokenManager(TokenManager $tokenManager): OrgsCredentialProviderBuilder {
35+
$this->instance->tokenManager = $tokenManager;
36+
return $this;
37+
}
38+
39+
public function build(): OrgsCredentialProvider
40+
{
41+
return $this->instance;
42+
}
43+
44+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<?php
2+
namespace Twilio\Http\BearerToken;
3+
use Twilio\CredentialProvider\NoAuthCredentialProvider;
4+
use Twilio\Exceptions\TwilioException;
5+
use Twilio\Rest\Client;
6+
use Twilio\Rest\PreviewIam\V1;
7+
use Twilio\Rest\PreviewIam\V1\TokenList;
8+
use Twilio\Rest\PreviewIamBase;
9+
10+
11+
/**
12+
* Class OrgsTokenManager
13+
* Token manager class for public OAuth
14+
* @property string $token The bearer token
15+
* @property string $tokenManager The manager for the bearer token
16+
*/
17+
18+
class OrgsTokenManager extends TokenManager {
19+
private $options;
20+
21+
public function __construct(array $options = []) {
22+
$this->options = $options;
23+
}
24+
25+
public function getOptions(): array {
26+
return $this->options;
27+
}
28+
29+
/**
30+
* Fetches the bearer token
31+
* @throws TwilioException
32+
*/
33+
public function fetchToken(): string {
34+
$noAuthCredentialProvider = new NoAuthCredentialProvider();
35+
$client = new Client();
36+
$client->setCredentialProvider($noAuthCredentialProvider);
37+
$previewIamBase = new PreviewIamBase($client);
38+
$v1 = new V1($previewIamBase);
39+
$tokenList = new TokenList($v1);
40+
41+
try {
42+
return $tokenList->create(
43+
$this->options['grantType'],
44+
$this->options['clientId'],
45+
$this->options
46+
)->accessToken;
47+
}
48+
49+
catch (TwilioException $e) {
50+
throw new TwilioException($e->getMessage());
51+
}
52+
}
53+
}

0 commit comments

Comments
 (0)