anik / apiz
Apiz is a boilerplate for REST API manager
Installs: 859
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 13
Type:php
pkg:composer/anik/apiz
Requires
- php: ^8.0
- ext-curl: *
- ext-xmlwriter: *
- lib-libxml: >=2.6.20
- anik/loguzz: ^3.0
- guzzlehttp/guzzle: ^7.0
- nahid/jsonq: ^5.1
Requires (Dev)
- colinodell/psr-testlogger: ^1.2
- mockery/mockery: ^1.3
- monolog/monolog: ^1.12|^2.0
- phpunit/phpunit: ^7.5.15|^8.4|^9.0
- symfony/var-dumper: ^3.4
README
APIZ is a PHP API Client Development Kit. You can easily handle all kind of JSON api response by using this package.
Requirements
- PHP >= 8
Installations
composer require anik/apiz
Configurations
There are no extra configuration for this package.
Usage
Lets make a api service service for https://reqres.in.
Suppose you have to make several api service for your package. Your service directory is
app/Services. Now we are develop a service for https://reqres.in and make a class file ReqResApiService.php
which is extend by \Apiz\AbstractApi class.
namespace App\Services; use Apiz\AbstractApi; class ReqResApiService extends AbstractApi { protected function setBaseUrl() { return 'https://reqres.in'; } }
AbstractApi is a abstract class where setBaseUrl() is a abstract method.
To get API response from this url they've a prefix 'api' so first we set it with protected property $prefix
namespace App\Services; use Apiz\AbstractApi; class ReqResApiService extends AbstractApi { protected function setBaseUrl() { return 'https://reqres.in'; } protected function setPrefix () { return 'api'; } }
Now we make a method for get all users info
namespace App\Services; use Apiz\AbstractApi; class ReqResApiService extends AbstractApi { protected function setBaseUrl() { return 'https://reqres.in'; } protected function setPrefix () { return 'api'; } public function allUsers() { $users = $this/*->query(['page'=>2])*/->get('/users'); if ($users->getStatusCode() == 200) { return $users->parseJson(); } return null; } }
We use GuzzleHttp for this package. So you can easily use all HTTP verbs
as a magic method. Its totally hassle free. with our all response we return three objects response, request and contents.
You can access all Guzzle response method from this response. We are using magic method to access it from response.
Output
Post Request with Form Params
public function createUser(array $data) { $user = $this->formParams($data) ->post('/create'); if ($user->getStatusCode() == 201) { return $user->parseJson(); } return null; }
List of Parameter Options
- formParams(array $params)
- headers(array $params)
- query(array $params)
- allowRedirects(array $params)
- auth(string $username, string $password [, array $options])
- body(array|string $contents)
- json(array $params)
- file(string $name, string $file_path, string $filename [, array $headers])
- attach (string $name, string $contents, string $filename [, array $headers])
- params(array $params)
List of HTTP verbs
- get(string $uri)
- post(string $uri)
- put(string $uri)
- delete(string $uri)
- head(string $uri)
- options(string $uri)
Extra Methods
- getGuzzleClient()
Logging
Apiz allows you to log your Request and Response. It requires to configure a few methods.
- logger()return- \Psr\Log\LoggerInterfaceobject. Returning null will not log any data.
- requestFormatter()should return object satisfying- \Loguzz\Formatter\AbstractRequestFormatterimplementation. Returning null will not log request data.
- responseFormatter()should return object satisfying- \Loguzz\Formatter\AbstractResponseFormatterimplementation. Returning null will not log response data.
- logRequestLength()should return integer value. It's the length for a curl string while logging.
- logOnlySuccessResponse()returning- truewill only log successful response data if guzzle didn't raise any error.
- logOnlyExceptionResponse()returning- truewill only log error responses like connection timeout, response timeout.
- logLevel()can be set to any available log level.
- tag()should return non-empty string which will set the log to- ["tag" => "log-message"]format.
- forceJson()should return boolean value which will cast the message in JSON string if- trueotherwise as array when- false. It's internally casted to boolean value.
- useSeparator()should return boolean value. Used with tag like- tag.request,- tag.success,- tag.failure. It's internally casted to boolean value.
Available Request & Response Formatters.
| Formatter | Available Classes | 
|---|---|
| Request | \Loguzz\Formatter\RequestArrayFormatter\Loguzz\Formatter\RequestCurlFormatter\Loguzz\Formatter\RequestJsonFormatter | 
| Response | \Loguzz\Formatter\ResponseArrayFormatter\Loguzz\Formatter\ResponseJsonFormatter |