2
2
3
3
namespace Colorfield \Mastodon ;
4
4
5
- use Exception ;
6
5
use GuzzleHttp \ClientInterface ;
6
+ use GuzzleHttp \Exception \GuzzleException ;
7
7
use InvalidArgumentException ;
8
+ use Exception ;
8
9
use GuzzleHttp \Client ;
9
10
use Psr \Http \Message \ResponseInterface ;
10
11
11
- enum HttpOperations
12
- {
13
- case GET ;
14
- case POST ;
15
- case PUT ;
16
- case PATCH ;
17
- case DELETE ;
18
- }
19
-
20
12
/**
21
13
* MastodonAPI
22
14
*
@@ -29,28 +21,17 @@ enum HttpOperations
29
21
*/
30
22
class MastodonAPI
31
23
{
32
- // @todo use promoted properties
33
24
// @todo improve return type for the api response
34
25
35
- private ConfigurationVO $ config ;
36
-
37
- private ClientInterface $ client ;
38
-
39
26
/**
40
27
* Creates the API object.
41
28
*
42
29
* @param ConfigurationVO $config
43
30
*/
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
+ ) { }
54
35
55
36
/**
56
37
* Sends a request to the specified API endpoint and returns the response.
@@ -64,35 +45,30 @@ public function __construct(ConfigurationVO $config)
64
45
*
65
46
* @return mixed
66
47
* The response body from the API endpoint, or null if there was an error.
48
+ * @throws GuzzleException|InvalidArgumentException|Exception
67
49
*/
68
50
private function getResponse (string $ endpoint , string $ method , array $ json ): mixed
69
51
{
70
- $ result = null ;
71
52
$ uri = $ this ->config ->getBaseUrl () . '/api/ ' ;
72
53
$ uri .= ConfigurationVO::API_VERSION . $ endpoint ;
73
54
74
- $ allowedMethods = array_column (HttpOperations ::cases (), 'name ' );
55
+ $ allowedMethods = array_column (HttpOperation ::cases (), 'name ' );
75
56
if (!in_array ($ method , $ allowedMethods )) {
76
57
throw new InvalidArgumentException ('ERROR: only ' . implode (', ' , $ allowedMethods ) . 'are allowed ' );
77
58
}
78
59
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 ());
96
72
}
97
73
return $ result ;
98
74
}
0 commit comments