Download the PHP package tripsy/api-wrapper without Composer

On this page you can find all versions of the php package tripsy/api-wrapper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package api-wrapper

Description

This wrapper can be used to build requests, handle responses and also to create a standard response for a REST API.

Response will contain the following keys:

Requirements

This package has been build to be used in Laravel, but it doesn't have strong dependencies.

The package assumes the requests are made with lluminate\Support\Facades\Http

Recommendations:

Install

Require the package using composer:

  composer require tripsy/api-wrapper

Examples

Output response

use Tripsy\ApiWrapper\ApiWrapper;

function index(ApiWrapper $apiWrapper): JsonResponse 
{
    $results = [];

    $apiWrapper->success(true);
    $apiWrapper->message(__('message.success'));
    $apiWrapper->data([
        'results' => $results,
        'count' => count($results),
    ]);

    return response()->json($apiWrapper->resultArray(), Response::HTTP_OK);
}

POST request

use Tripsy\ApiWrapper\ApiWrapper;

function store(ApiWrapper $apiWrapper): string
{
    $apiWrapper->requestMethod('POST');
    $apiWrapper->requestUrl('https://request.url');

    $validate = true;

    if ($validate === false) {
        // the next line of code is not mandatory
        // by default value for `success` is false anyway
        $apiWrapper->success(false);

        $apiWrapper->message(__('message.error'));

        $apiWrapper->errors([
            'Sample error',
            'Another sample error',
        ]);

        $apiWrapper->pushMeta('source', 'my_method');
        $apiWrapper->pushMeta('reference', 'my_app');
    } else {
        $apiWrapper->requestParams([
            'name' => 'John',
            'age' => '34',
            'gender' => 'male',
        ]);

        $apiWrapper->requestHeaders('X_FORWARDED_FOR', '127.0.0.1');

        $apiWrapper->makeRequest(function () use ($apiWrapper) {
            return Http::asForm()
                ->withHeaders($apiWrapper->requestHeaders())
                ->withOptions([
                    'verify' => true,
                ])
                ->timeout(120)
                ->post($apiWrapper->requestUrl(), $apiWrapper->requestParams());
        });

        // `success` will be set as true within `makeRequest` to reflect if the API response status code was between 200 & 300
        if ($apiWrapper->success() === true) {
            $apiWrapper->data(json_decode($apiWrapper->data(), true));

            //handle `result`
            switch ($apiWrapper->getData('result')) {
                case 'success':
                    $apiWrapper->pushMeta('happy', 'yes');
                    break;
                case 'failed':
                    // since the API request was a success but didn't returned the expected result
                    $apiWrapper->success(false);

                    $apiWrapper->pushMeta('happy', 'no');

                    $apiWrapper->message(__('message.failed'));
                    break;
                default:
                    $apiWrapper->pushMeta('happy', '?');

                    $apiWrapper->success(false);
                    $apiWrapper->message(__('message.result_not_defined'));
                    break;
            }
        }
    }

    return $apiWrapper->resultJson();
}

Another POST request

use Tripsy\ApiWrapper\ApiWrapper;

function query(ApiWrapper $apiWrapper): array
{
    $apiWrapper->requestMethod('POST');
    $apiWrapper->requestUrl('https://request.url');
    $apiWrapper->requestHeaders('Content-Type', 'application/json');
    $apiWrapper->requestHeaders('Accept', 'application/json');
    $apiWrapper->requestParams([
        'formData' => [
            'name' => 'John',
            'age' => '34',
            'gender' => 'male',
        ],
        'sourceData' => [
            'website' => config('app.url'),
            'environment' => config('app.env'),
            'ipAddress' => '127.0.0.1',
        ],
    ]);

    //$apiWrapper->debug(true);
    $apiWrapper->makeRequest(function () use ($apiWrapper) {
        return Http::withToken('your_secret_token')
            ->withHeaders($apiWrapper->requestHeaders())
            ->withOptions([
                'verify' => true,
            ])
            ->post($apiWrapper->requestUrl(), $apiWrapper->requestParams());
    });

    $responseType = $apiWrapper->getMeta('responseType');

    if (config('app.env') == 'production') {
        if ($responseType == 'hidden') {
            return [];
        }
    }

    return $apiWrapper->resultArray();
}

GET request

use Tripsy\ApiWrapper\ApiWrapper;

function query(ApiWrapper $apiWrapper): array
{
    $ipAddress = '192.168.0.1';

    $apiWrapper->requestMethod('GET');
    $apiWrapper->requestUrl('https://request.url/location/'.urlencode($ipAddress));
    $apiWrapper->requestHeaders('Accept', 'application/json');

    $apiWrapper->makeRequest(function () use ($apiWrapper) {
        return Http::withToken('your_secret_token')
            ->withHeaders($apiWrapper->requestHeaders())
            ->withOptions([
                'verify' => true,
            ])
            ->get($apiWrapper->requestUrl(), $apiWrapper->requestParams());
    });

    if ($apiWrapper->success() === false) {
        Log::channel('test')->info($apiWrapper->message());
    }
}

All versions of api-wrapper with dependencies

PHP Build Version
Package Version
Requires php Version ^7.3|^8.0
laravel/framework Version >=8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package tripsy/api-wrapper contains the following files

Loading the files please wait ....