pepperfm/api-responder-for-laravel

Easy api responder template using via DI

2.6.1 2025-01-24 22:39 UTC

README

Latest Version on Packagist Total Downloads GitHub Actions

logo

A simple api response template using via DI

Tip

Full Package Description: Helpful advice for doing things better or more easily.

Installation

You can install the package via composer:

composer require pepperfm/api-responder-for-laravel

Usage

Simply using by laravel DI features.

In use section:

use Pepperfm\ApiBaseResponder\Contracts\ResponseContract;

Then any options you like:

public function __construct(public ResponseContract $json)
{
}

public function index(Request $request)
{
    $users = User::query()->whereIn('id', $request->input('ids'))->get();

    return $this->json->response($users);
}

for pagination

/*
 * Generate response.data.meta.pagination from first argument of paginated() method  
 */
public function index(Request $request)
{
    $users = User::query()->whereIn('id', $request->input('ids'))->paginate();

    return $this->json->paginated($users);
}

with some data mapping

public function index(Request $request)
{
    $users = User::query()->whereIn('id', $request->input('ids'))->paginate();
    $dtoCollection = $users->getCollection()->mapInto(UserDto::class);

    return $this->json->paginated($dtoCollection->toArray(), $users);
}

or

public function index(Request $request)
{
    $users = User::query()->whereIn('id', $request->input('ids'))->paginate();
    $dtoCollection = $users->getCollection()->mapInto(UserDto::class);

    return $this->json->paginated($dtoCollection->toArray(), $users);
}

public function index(Request $request, ResponseContract $json)
{
    return $json->response($users);
}

public function index(Request $request)
{
    return resolve(ResponseContract::class)->response($users);
}

Or would you prefer facades?

return \ApiBaseResponder::response($users);
return BaseResponse::response($users);

Paginated data in response

The helper-function paginate accepts one argument of LengthAwarePaginator type in backend and returns object of format:

export interface IPaginatedResponse<T> {
    current_page: number
    per_page: number
    last_page: number
    data: T[]
    from: number
    to: number
    total: number
    prev_page_url?: any
    next_page_url: string
    links: IPaginatedResponseLinks[]
}
export interface IPaginatedResponseLinks {
    url?: any
    label: string
    active: boolean
}

Flexible data key

The package recognizes which method it was used from, and, according to REST, if you return one record from the show or edit methods, then the response will be in the

response.data.entity

You can customize methods that should return this format in config file, as well any data-key you like

It's also possible to set any response data-key to any method you need, just add attribute under controller's method ResponseDataKey to set response.data.entity key, or pass any string as parameter:

#[ResponseDataKey]
public function attributeWithoutParam(): JsonResponse
{
    return $this->json->response($this->user); // response.data.entity
}

#[ResponseDataKey('random_key')]
public function attributeWithParam(): JsonResponse
{
    return $this->json->response($this->user); // response.data.random_key
}

Check the configuration file to customize response wrapping as you prefer

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email Damon3453@yandex.ru instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.