PHP Classes

PHP REST API Server: REST API server handling requests with callbacks

Recommend this page to a friend!
  Info   View files Documentation   View files View files (64)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not yet rated by the usersTotal: 209 This week: 1All time: 8,280 This week: 195Up
Version License PHP version Categories
php-rest-server 1.0.0GNU Lesser Genera...5HTTP, PHP 5, Web services
Description Author

This package can be used to implement REST API server handling requests with callbacks.

It can attach the definition of one or more URLs that can handled by a given callback when the HTTP server receives requests for a given HTTP method.

When the REST server controller is run, it forwards the current request to the right callback function and then returns the response to HTTP client.

Recommendations

I need a PHP class for rest download file
REST download class with error handler

Picture of Kjell-Inge Gustafsson
  Performance   Level  
Name: Kjell-Inge Gustafsson <contact>
Classes: 15 packages by
Country: Sweden Sweden
Innovation award
Innovation award
Nominee: 6x

Details
restServer, a PSR HTTP Message rest server implementation

This file is a part of restServer.

Copyright 2018 Kjell-Inge Gustafsson, kigkonsult, All rights reserved
Link      https://kigkonsult.se/restServer/index.php
Version   0.9.123
License   Subject matter of license is the software restServer.
          The above copyright, link, package and version notices and
          this license notice shall be included in all copies or
          substantial portions of the restServer.
          restServer can be used either under the terms of
          a proprietary license, available at <https://kigkonsult.se/>
          or the GNU Affero General Public License, version 3:
          restServer is free software: you can redistribute it and/or
          modify it under the terms of the GNU Affero General Public License
          as published by the Free Software Foundation, either version 3 of
          the License, or (at your option) any later version.
          restServer is distributed in the hope that it will be useful,
          but WITHOUT ANY WARRANTY; without even the implied warranty of
          MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
          GNU Affero General Public License for more details.
          You should have received a copy of the GNU Affero General Public
          License along with this program.
          If not, see <http://www.gnu.org/licenses/>.

Product names mentioned herein or elsewhere are or may be trademarks
or registered trademarks of their respective owners.

-----------------------
rest services made easy
-----------------------

the purpose for restServer is to offer developers, as simple as possible,
rest service and API for their applications.

"Everything should be made as simple as possible, but not simpler."
[Albert Einstein]

restServer is based on and credits authors of
PSR-7 HTTP message interfaces
 - https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-7-http-message.md
PSR-7 HTTP message Util interfaces
- https://github.com/php-fig/http-message-util
zend-diactoros
 - https://github.com/zendframework/zend-diactoros
FastRoute
 - https://github.com/nikic/FastRoute
restServer requires PHP 5.6 or higher.


OVERVIEW
--------

Here is a brief restServer orientation, more detailed below and in supplements.

The input message is captured at restServer class instance creation.

The input/output logistics are managed by restServer and its builtin handlers.
There is an interface/API (service definition) for attach of (external)
.

The restServer method run executes application(s) logic and end off returning
response message.

The (external, not included) application(s) must provide rest service
definition(s), each defined by
  request method(s),
  request target (uri),
  application callback.

The service definition(s) are attached to restServer and the callback is fired
off when an incoming request match method and uri in a service definition,

Each rest service definitions callback must be invoked with two arguments,
- ServerRequestInterface request
- ResponseInterface response
and return ResponseInterface response.

restServer have builtin handlers managing
- opt. request IPnumber(s) validation
- opt. cors (Cross-Origin Resource Sharing)
- opt. request user authentication
- messages serializing, en-/decoding

There are also a builtin handler for (log-)debugging. You can attach custom
handlers, ex. for input sanitation, as well as a final handler.
restServer also provide, optional,
  configuration for fine-tuning service,
  logging
    any log class, (Psr\Log\LoggerInterface and supporting Psr\Log\LogLevel)


INSTALL
-------

To install with composer:

composer require kigkonsult/restserver

OR

Include the (download) RestServer folder to your include-path.
Add
"require_once 'src/autoload.php';"
to your PHP-script.


REST MESSAGES
-------------

Your rest service definition callback(s) as well as custom handler(s) have access
to all methods in the incoming
  Psr\Http\Message\ServerRequestInterface
as well as outgoing
  Psr\Http\Message\ResponseInterface
as described in
  https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-7-http-message.md
and defined in
  https://github.com/php-fig/http-message

REQUEST

You can access the (decoded and unserialized) incoming request message using
  request::getParsedBody()
for all HTTP methods, GET, POST etc.

Requests ipnumbers may be checked against accept range(s).

CORS pre-flight requests response are returned automatically (using the builtin
CorsHandler).

OPTIONS requests will return a body with (service definition) http methods and
corresponding request targets (uri) as a json-string.

HEAD requests (default allowed if GET service definition(s) exists) exec a
matching GET service definition callback and return response with empty body.

RESPONSE
For delivering a response message, use
  response::withRawBody( data )
The method is not PSR HTTP standard but included to simplify response message
delivery. Later (opt.) serializing and encoding (with headers) are taken care
of automatically, using restServer builtin supported serializing/encoding
handlers.


SERVICE DEFINITION
------------------

The rest service definition(s) are the API for you application.

You must define your rest service definition(s) as (array)
  method,
    a http method (GET, POST etc) (or array of methods),
  uri,
    how to apply uri are described in https://github.com/nikic/FastRoute,
  callback
    callable :
      simple function
        functionName
      anonymous function (closure)
        variableValue...
      instantiated object+method,
        (array): objectInstance, method name
      class name and static method,
        (array): classNameWithNamespace, method name (factory method?)
      instantiated object, class has an (magic) __call method
        (array): objectInstance, method name
      class name, class has an (magic) __callStatic method
        (array): classNameWithNamespace, method name
      instantiated object, class has an (magic) __invoke method
        objectInstance

For examples, review 'test/RestServerTest.php' (method RestServer0Provider).

The service definition callback MUST be invoked with two arguments,
   ServerRequestInterface request,
   ResponseInterface response.

The callback MUST return a ResponseInterface response.

Service definition can be attached using
  RestServer::attachRestService(),
  using callback from RestServer:getAttachRestServiceCallback(),
  config,
all described below.

CALLBACK EXAMPLES

Review TemplateService.php for more information about services and callbacks,
examples of demo rest service classes and config and explicit attach.

The callback will have access to all methods in the incoming
  Psr\Http\Message\ServerRequestInterface
as well as outgoing
  Psr\Http\Message\ResponseInterface.
For return a response message, use
  response::withRawBody( data )

There is a simple builtin '/ping' service, ex. used when checking service is
alive, attached using the builtin method RestServer::getPingServiceDef().
The included 'pingIndex.php' is a usage example.


RESTSERVER HANDLERS
-------------------

The (optional) IpHandler will validate request IpNumber(s) against accepting
definition (ranges). Review cfg/cfg.1.ip.php for details.

For the (optional) CORS (Cross-Origin Resource Sharing) builtin handler, review
config (below) and cfg/cfg.2.cors.php for details.

restServer (optional) authentication work in three modes:
- Basic, static usernames and passwords
- Basic, username and password are checked using callback
- Digest, using one callback for checking and another for 401 response values
Review config (below) and cfg/cfg.3.auth.php for details.

restServer builtin unserializing and decoding and opt. custom handlers are
  invoked before exec of matching rest service definition callback,
opt. serializing and encoding builtin handlers are invoked after exec of
  matching rest service definition callback,
the finalHandler (if set),
  last, after return response is fired off, use ex. for tidy up, database close,
  statistic metrics of performance footprint etc.

Builtin serializing handlers manages
  application/json
  application/xml
  text/xml
  text/plain
  application/x-www-form-urlencoded  -- incoming POST only
  multipart/form-data                -- incoming POST only

For any serializing (header) Content-Type/Accept with
  trailing '+json' uses application/json handler,
  trailing '+xml' uses application/xml handler.

Missing, empty or '*/*' Accept header will use application/json as default
(you can alter it in config).

Builtin de-/encoding handlers manages
  gzip,
  deflate,
  identity ('as is').

Missing, empty or '*' Accept-Encoding header will use gzip as default
(you can alter it in config).

CUSTOM HANDLERS

A custom handler MUST be invoked with two arguments,
   ServerRequestInterface request,
   ResponseInterface response.
and will have access to all request/response methods.

All handlers (but final handler) MUST return (array)
   ServerRequestInterface request,
   ResponseInterface response.

Review TemplateHandler.php for how to implement custom handlers.


CONFIGURATION
-------------

Here are a short summary of configuration options:

- correlation-id
  unique (session uuid) id (will otherwise be set automatically)

- baseUri
  part of request target (uri) to eliminate to match service uri

- disallow
  list of non-accepted request methods

- debug
  using builtin log debug or not
  (requires a logger)

- IPnumber validation
  config for the the builtin IpHandler
  review cfg/cfg.1.ip.php for details

- cors
  config for the the builtin CorsHandler (Cross-Origin Resource Sharing)
  review cfg/cfg.2.cors.php for details

- authentication
  config for the the builtin AuthenticationHandler
  review cfg/cfg.3.auth.php for details

- serializing and en/decoding handlers adaption (opt)
  review cfg/cfg.56.cte.php

- services
  attaching rest service definition(s)
  see TemplateService.php

- handlers
  attaching custom handler(s)
  see TemplateHandler.php

- final handler
  attaching a final handler, exec after return response is fired off.
  Any return value is ignored.
  see TemplateHandler.php

Review cfg/cfg.RestServer.php for general restServer configuration.
A strong recommendation is to place config outside webserver document root.
Use all RestServer configs as templates and concatenate into your own one.


LOGGING
-------

You can invoke a logger, any logger class with support for
methods error, warning, info and debug
(Psr\Log\LogLevel and Psr\Log\LoggerInterface)

Examine
RestServerLogger.php  (logger class wrapper for PHP error_log, for testing)
for more info.

RestServer uses prios:
 RestServer::ERROR   (response status 500)
   internal server error like serializing/encoding errors etc
 RestServer::WARNING (default response status 4xx, config as ERROR)
   logging rejected requests
 RestServer::INFO
 RestServer::DEBUG

See config (above) for invoke of debugging.

You can set the logger using static method:
RestServer::setLogger( $logger );

A handler or service callback can invoke the logger
$prio    = RestServer::ERROR;
$message = 'hello world';
$logger  = RestServer::getLogger();
if ( ! empty( $logger ) && method_exists( $logger, $prio )) {
    $logger->{$prio}( $message );
}


RESTSERVER METHODS
------------------

RestServer::factory()
RestServer::factory( config )
  return new RestServer object instance
  static
  config : array
  see cfg/cfg.RestServer.php

RestServer::__construct()
RestServer::__construct( config )
  RestServer constructor
  config : array
  see cfg/cfg.RestServer.php

RestServer::setConfig( config )
  config : array
  see cfg/cfg.RestServer.php
  throws InvalidArgumentException
    (on errors in handlers or services set up)

RestServer::addHandler( handler )
  handler : callable|array, one handler or (array) handlers
            custom handlers are described in TemplateHandler.php
  throws InvalidArgumentException (on errors in handlers)

RestServer::addFinalHandler( handler )
  handler : callable, one handler
            custom handlers are described in TemplateHandler.php
  throws InvalidArgumentException (on errors in handler)

RestServer::attachRestService( serviceDef );
RestServer::attachRestService( method, uri, callback );
  serviceDef : rest service definition as described in TemplateService.php
               array, [ method, uri, callback ]
  method     : string|array, request method(s)
  uri        : string, rest service uri
  callback   : callable, rest service endpoint; class method/function
  throws InvalidArgumentException (on invalid arguments)

RestServer::detachRestService( $method, $uri );
  method : string|array request method(s)
  uri    : string, rest service uri
  return bool true on success

RestServer::getAttachRestServiceCallback()
  return method attachRestService as callback
  throws InvalidArgumentException (on invalid arguments)
  see TemplateService.php, last example

RestServer::getLogger()
  return logger object instance
  static
  return opt. preset logger or null

RestServer::setLogger( logger )
  set logger object instance
  static
  logger : object, logger object instance
           (Psr\Log\LoggerInterface and supporting Psr\Log\LogLevel)
  Files folder image Files  
File Role Description
Files folder imagecfg (5 files)
Files folder imagedocs (4 files)
Files folder imagesrc (7 files, 1 directory)
Files folder imagetest (4 files, 1 directory)
Accessible without login Plain text file AGPLv3.txt Doc. Documentation
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file phpunit.xml Data Auxiliary data
Plain text file README.md Class Class source

  Files folder image Files  /  cfg  
File Role Description
  Accessible without login Plain text file cfg.1.ip.php Aux. Auxiliary script
  Accessible without login Plain text file cfg.2.cors.php Aux. Auxiliary script
  Accessible without login Plain text file cfg.3.auth.php Aux. Auxiliary script
  Accessible without login Plain text file cfg.56.cte.php Aux. Auxiliary script
  Accessible without login Plain text file cfg.RestServer.php Aux. Auxiliary script

  Files folder image Files  /  docs  
File Role Description
  Accessible without login Plain text file pingIndex.php Example Example script
  Accessible without login Plain text file readMeFirst.txt Doc. Documentation
  Plain text file TemplateHandler.php Class Class source
  Plain text file TemplateService.php Class Class source

  Files folder image Files  /  src  
File Role Description
Files folder imageHandlers (12 files, 4 directories)
  Accessible without login Plain text file autoload.php Aux. Auxiliary script
  Plain text file Response.php Class Class source
  Plain text file ResponseInterface.php Class Class source
  Plain text file RestServer.php Class Class source
  Plain text file RestServerLogger.php Class Class source
  Plain text file ServerRequestFactory.php Class Class source
  Plain text file StreamFactory.php Class Class source

  Files folder image Files  /  src  /  Handlers  
File Role Description
Files folder imageContentTypeHandlers (4 files)
Files folder imageEncodingHandlers (4 files)
Files folder imageExceptions (5 files)
Files folder imageIpUtil (4 files)
  Plain text file AbstractCAHandler.php Class Class source
  Plain text file AbstractCteHandler.php Class Class source
  Plain text file AbstractHandler.php Class Class source
  Plain text file AuthenticationHandler.php Class Class source
  Plain text file ContentTypeHandler.php Class Class source
  Plain text file CorsHandler.php Class Class source
  Plain text file EncodingHandler.php Class Class source
  Plain text file ErrorHandler.php Class Class source
  Plain text file HandlerInterface.php Class Class source
  Plain text file IpHandler.php Class Class source
  Plain text file LogUtilHandler.php Class Class source
  Plain text file RequestMethodHandler.php Class Class source

  Files folder image Files  /  src  /  Handlers  /  ContentTypeHandlers  
File Role Description
  Plain text file AsIsHandler.php Class Class source
  Plain text file ContentTypeInterface.php Class Class source
  Plain text file JsonHandler.php Class Class source
  Plain text file XMLHandler.php Class Class source

  Files folder image Files  /  src  /  Handlers  /  EncodingHandlers  
File Role Description
  Plain text file DeflateHandler.php Class Class source
  Plain text file EncodingInterface.php Class Class source
  Plain text file GzipHandler.php Class Class source
  Plain text file IdentityHandler.php Class Class source

  Files folder image Files  /  src  /  Handlers  /  Exceptions  
File Role Description
  Plain text file ExceptionError.php Class Class source
  Plain text file JsonErrorException.php Class Class source
  Plain text file LIBXMLFatalErrorException.php Class Class source
  Plain text file SimplexmlLoadErrorException.php Class Class source
  Plain text file ZlibErrorException.php Class Class source

  Files folder image Files  /  src  /  Handlers  /  IpUtil  
File Role Description
  Plain text file IpUtil.php Class Class source
  Plain text file IpUtilInterface.php Class Class source
  Plain text file Ipv4Util.php Class Class source
  Plain text file Ipv6Util.php Class Class source

  Files folder image Files  /  test  
File Role Description
Files folder imageHandlers (6 files, 3 directories)
  Plain text file ConfigTest.php Class Class source
  Plain text file ResponseTest.php Class Class source
  Plain text file RestServerTest.php Class Class source
  Plain text file ServerRequestFactoryTest.php Class Class source

  Files folder image Files  /  test  /  Handlers  
File Role Description
Files folder imageContentTypeHandlers (2 files)
Files folder imageEncodingHandlers (2 files)
Files folder imageIpUtil (1 file)
  Plain text file AuthenticationHandlerTest.php Class Class source
  Plain text file ContentTypeHandlerTest.php Class Class source
  Plain text file CorsHandlerTest.php Class Class source
  Plain text file EncodingHandlerTest.php Class Class source
  Plain text file IpHandlerTest.php Class Class source
  Plain text file RequestMethodHandlerTest.php Class Class source

  Files folder image Files  /  test  /  Handlers  /  ContentTypeHandlers  
File Role Description
  Plain text file JsonHandlerTest.php Class Class source
  Plain text file XMLHandlerTest.php Class Class source

  Files folder image Files  /  test  /  Handlers  /  EncodingHandlers  
File Role Description
  Plain text file DeflateHandlerTest.php Class Class source
  Plain text file GzipHandlerTest.php Class Class source

  Files folder image Files  /  test  /  Handlers  /  IpUtil  
File Role Description
  Plain text file IpUtilTest.php Class Class source

 Version Control Unique User Downloads Download Rankings  
 100%
Total:209
This week:1
All time:8,280
This week:195Up
For more information send a message to info at phpclasses dot org.