phapi/endpoint

This package is abandoned and no longer maintained. No replacement package was suggested.

Contains endpoint class that all Phapi Endpoints should extend. Has built in functionality for handling OPTIONS requests.

1.0.0 2015-07-02 08:40 UTC

This package is not auto-updated.

Last update: 2021-02-05 22:36:48 UTC


README

Build status Code Climate Test Coverage

All successful requests (except when caching is used) will be routed and dispatched to an Endpoint that should handle the request and return a response with the requested content.

Installation

The package is installed by default by the Phapi framework. Installing the package to use is separately can be done by using composer:

$ composer require phapi/endpoint:1.*

Basic usage

An endpoint contains methods for handling requests. If an endpoint should support GET requests a get() method must exist. Each method must return the content that should be the response body that is sent to the client. The content must be formatted as an array. Serializers will then serialize the array to the correct format.

<?php

namespace Phapi\Endpoint;

class Blog extends Endpoint
{

  public function get($postid) // $postid is an url param, ex: /blog/{postid:i}/
  {
    return [
      'Title' => 'A Phapi tutorial, part 1',
      'Publish date' => '2015-01-01',
      'Author' => 'John Doe',
      ...
    ];
  }

}

All endpoints (that extends the Endpoint class) has the request, response and dependency injection container available: $this->request, $this->response, $this->container.

Status code

The default status code is 200. The status code can be changed by accessing the Response object and setting a new status code:

<?php
public function get()
{
  // Change status code on the response to a 201 CREATED:
  $this->response = $this->response->withStatusCode(201);
}

Errors and Exceptions

Handling errors should be easy, that's why Phapi has many predefined exceptions. With these exceptions it's just a matter of throwing them to get a nice looking response sent to the client:

<?php

namespace Phapi\Endpoint;

use Phapi\Exception\NotFound;

class Blog extends Endpoint
{

  public function get()
  {
    throw new NotFound(
      'The article you are looking for does not exist.',
      23,
      null,
      'https://example.local/docs/23/'
    );
  }

}

This will result in a response like this (JSON in this example):

{
  "errors": {
    "message": "The article you are looking for does not exist.",
    "code": 23,
    "description": "The URI requested is invalid or the resource requested, such as a user, does not exists. Also returned when the requested format is not supported by the requested method.",
    "link": "https://example.local/docs/23/"
  }
}

Redirects

Redirects should be handled by updating the response object:

<?php
public function get()
{
  // This endpoint has moved permanently
  $this->response = $this->response->withStatusCode(301);
  $this->response = $this->response->withAddedHeader('Location': 'http://example.local/endpoint/new');
}

Head requests

All HEAD requests are automatically handled by Endpoints by checking if a get() method is implemented. If it is implemented, it will call the get() method so that all headers are created but it will ignore the body since HEAD requests should not return a body.

Options requests

Endpoints automatically contains functionality for handling OPTIONS requests by looking at the implemented methods and PHPDoc to set headers and generate a body. The method returns supported content types, allowed methods as well as API documentation (if documentation exists).

Documenting the API is done by using PHPDoc and using tags that starts with @api.

<?php
/**
 * @apiUri /blog/12
 * @apiDescription Retrieve the blogs information like
 *                 id, name and description
 * @apiParams id int
 * @apiResponse id int Blog ID
 * @apiResponse name string The name of the blog
 * @apiResponse description string A description of the blog
 * @apiResponse links string
 *              A list of links
 */
 public function get()
 ...

It's possible to do quite advanced documentation this way.

It might be slightly unusual to return a body on an OPTIONS request but this makes the API self-describing. It makes it possible to browse, use and look at the documentation of the API by actually using the API itself.

Phapi

Endpoint is a Phapi package used by the Phapi Framework.

License

Endpoint is licensed under the MIT License - see the license.md file for details

Contribute

Contribution, bug fixes etc are always welcome.