2017 © Pedro Peláez
 

symfony-bundle rest-client-bundle

Symfony rest client bundle - Work in progress

image

cos/rest-client-bundle

Symfony rest client bundle - Work in progress

  • Saturday, March 18, 2017
  • by coosmin26
  • Repository
  • 2 Watchers
  • 8 Stars
  • 65 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 7 % Grown

The README.md

RestClientBundle

Symfony Rest Client Bundle using GuzzleHttp and Ocramius/ProxyManager, (*1)

Installation

To install CosRestClientBundle with Composer execute the following command:, (*2)

$ composer require "cos/rest-client-bundle": "dev-master"

Now, Composer will automatically download all required files, and install them for you. All that is left to do is to update your AppKernel.php file, and register the new bundle:, (*3)

<?php

// in AppKernel::registerBundles()
$bundles = array(
    // ...
    new Cos\RestClientBundle\CosRestClientBundle(),
    // ...
);

The bundle is now installed. Lets start configure with the bundle., (*4)

Configuration reference

# config.yml
cos_rest_client:
    annotation_reader: annotation_reader # annotation reader service id
    # http clients and base URLs
    clients:
        default: { baseUri: 'https://jsonplaceholder.typicode.com' }

Usage

Define a rest resource interface

<?php

namespace AppBundle\Rest;


use Cos\RestClientBundle\Annotation\Client;
use Cos\RestClientBundle\Annotation\Endpoint;
use Cos\RestClientBundle\Annotation\Form;
use Cos\RestClientBundle\Annotation\Json;
use Cos\RestClientBundle\Annotation\Path;
use Cos\RestClientBundle\Annotation\Query;

/**
 * Client configuration  
 * @Client(name="default")
 */
interface Posts
{
    /**
     * @Path(name="id", paramName="idParam")
     * @Endpoint(uri="/posts/{id}", method="get")
     */
    public function get($idParam);

    /**
     * @Query(name="userId")
     * @Endpoint(uri="/posts")
     */
    public function getWithQuery($userId);

    /**
     * @Form(name="formData")
     * @Endpoint(uri="/posts", method="POST")
     */
    public function form(array $formData);

    /**
     * @Json(name="data")
     * @Endpoint(uri="/posts", method="POST")
     */
    public function json(array $data);
}

Create proxy for Posts

<?php
    //in controller
    $proxyFactory = $this->get('cos_rest_client.proxy_factory');
    $proxy = $proxyFactory->create(Posts::class);

Call proxy methods defined in interface

<?php
    $proxy->get(1); //request for client base uri + /posts/1
    $proxy->getWithQuery(1)->getBody()->getContents(); //request for /posts?userId=1
    $data = ['foo' => 'bar']
    $proxy->form($data) //post request where $data is sent as application/x-www-form-urlencoded
    $proxy->json($data) // send data as json

Response

Every method call from a proxy return a Psr\Http\Message\ResponseInterface, (*5)

Full example

https://github.com/cosminseceleanu/RestClientBundleSample, (*6)

Events

RequestEvent: dispatched before a request is executed
ResponseEvent: dispatched when response is received, (*7)

The Versions

18/03 2017

dev-master

9999999-dev

Symfony rest client bundle - Work in progress

  Sources   Download

MIT

The Requires

 

The Development Requires

by Cosmin Seceleanu

rest bundle client

18/03 2017

1.0.0

1.0.0.0

Symfony rest client bundle - Work in progress

  Sources   Download

MIT

The Requires

 

The Development Requires

by Cosmin Seceleanu

rest bundle client