Skip to content

Commit f0a4b2a

Browse files
committed
refactor: enums and exception handling for guzzle
1 parent c2fa0e0 commit f0a4b2a

5 files changed

+46
-55
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ You can modify it via
4141

4242
or alternatively use enum
4343

44-
```$oAuth->config->setScopes([Scope::read->name, Scope::write->name, Scope::write->name, Scope::write->name]);```
44+
```$oAuth->config->setScopes([OAuthScope::read->name, OAuthScope::write->name, OAuthScope::follow->name, OAuthScope::push->name]);```
4545

4646
Note that this must be done while obtaining the token, so you cannot override this after.
4747
[More about scopes](https://docs.joinmastodon.org/api/oauth-scopes/).

src/ConfigurationVO.php

+2-10
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,6 @@
44

55
use InvalidArgumentException;
66

7-
enum Scope
8-
{
9-
case read;
10-
case write;
11-
case follow;
12-
case push;
13-
}
14-
157
/**
168
* Class Configuration Value Object.
179
*
@@ -111,7 +103,7 @@ public function __construct(
111103
) {
112104
// Move as promoted property when removing PHP 8.1 support.
113105
if (empty($this->scopes)) {
114-
$this->setScopes([Scope::read->name, Scope::write->name]);
106+
$this->setScopes([OAuthScope::read->name, OAuthScope::write->name]);
115107
}
116108
$this->setBaseUrl();
117109
}
@@ -195,7 +187,7 @@ public function setScopes(array $scopes)
195187
{
196188
// Mastodon defaults itself to read if no scope configured.
197189
if (!empty($scopes)) {
198-
$scopeValues = array_column(Scope::cases(), 'name');
190+
$scopeValues = array_column(OAuthScope::cases(), 'name');
199191
// Check scope values.
200192
if (count(array_intersect($scopes, $scopeValues)) === count($scopes)) {
201193
$this->scopes = $scopes;

src/HttpOperation.php

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
namespace Colorfield\Mastodon;
4+
5+
enum HttpOperation
6+
{
7+
case GET;
8+
case POST;
9+
case PUT;
10+
case PATCH;
11+
case DELETE;
12+
}

src/MastodonAPI.php

+20-44
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,13 @@
22

33
namespace Colorfield\Mastodon;
44

5-
use Exception;
65
use GuzzleHttp\ClientInterface;
6+
use GuzzleHttp\Exception\GuzzleException;
77
use InvalidArgumentException;
8+
use Exception;
89
use GuzzleHttp\Client;
910
use Psr\Http\Message\ResponseInterface;
1011

11-
enum HttpOperations
12-
{
13-
case GET;
14-
case POST;
15-
case PUT;
16-
case PATCH;
17-
case DELETE;
18-
}
19-
2012
/**
2113
* MastodonAPI
2214
*
@@ -29,28 +21,17 @@ enum HttpOperations
2921
*/
3022
class MastodonAPI
3123
{
32-
// @todo use promoted properties
3324
// @todo improve return type for the api response
3425

35-
private ConfigurationVO $config;
36-
37-
private ClientInterface $client;
38-
3926
/**
4027
* Creates the API object.
4128
*
4229
* @param ConfigurationVO $config
4330
*/
44-
public function __construct(ConfigurationVO $config)
45-
{
46-
$this->client = new Client();
47-
48-
try {
49-
$this->config = $config;
50-
} catch (InvalidArgumentException $exception) {
51-
print($exception->getMessage());
52-
}
53-
}
31+
public function __construct(
32+
public ConfigurationVO $config,
33+
public ClientInterface $client = new Client()
34+
) { }
5435

5536
/**
5637
* Sends a request to the specified API endpoint and returns the response.
@@ -64,35 +45,30 @@ public function __construct(ConfigurationVO $config)
6445
*
6546
* @return mixed
6647
* The response body from the API endpoint, or null if there was an error.
48+
* @throws GuzzleException|InvalidArgumentException|Exception
6749
*/
6850
private function getResponse(string $endpoint, string $method, array $json): mixed
6951
{
70-
$result = null;
7152
$uri = $this->config->getBaseUrl() . '/api/';
7253
$uri .= ConfigurationVO::API_VERSION . $endpoint;
7354

74-
$allowedMethods = array_column(HttpOperations::cases(), 'name');
55+
$allowedMethods = array_column(HttpOperation::cases(), 'name');
7556
if (!in_array($method, $allowedMethods)) {
7657
throw new InvalidArgumentException('ERROR: only ' . implode(',', $allowedMethods) . 'are allowed');
7758
}
7859

79-
try {
80-
$response = $this->client->request($method, $uri, [
81-
'headers' => [
82-
'Authorization' => 'Bearer ' . $this->config->getBearer(),
83-
],
84-
'json' => $json,
85-
]);
86-
// @todo $request->getHeader('content-type')
87-
if($response instanceof ResponseInterface
88-
&& $response->getStatusCode() == '200') {
89-
$result = json_decode($response->getBody(), true);
90-
} else {
91-
echo 'ERROR: Status code ' . $response->getStatusCode();
92-
}
93-
// @todo check thrown exception
94-
} catch (Exception $exception) {
95-
echo 'ERROR: ' . $exception->getMessage();
60+
$response = $this->client->request($method, $uri, [
61+
'headers' => [
62+
'Authorization' => 'Bearer ' . $this->config->getBearer(),
63+
],
64+
'json' => $json,
65+
]);
66+
67+
if ($response instanceof ResponseInterface
68+
&& $response->getStatusCode() == '200') {
69+
$result = json_decode($response->getBody(), true);
70+
} else {
71+
throw new Exception('ERROR ' . $response->getStatusCode() . ' : ' . $response->getReasonPhrase());
9672
}
9773
return $result;
9874
}

src/OAuthScope.php

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
namespace Colorfield\Mastodon;
4+
5+
enum OAuthScope
6+
{
7+
case read;
8+
case write;
9+
case follow;
10+
case push;
11+
}

0 commit comments

Comments
 (0)