2017 © Pedro Peláez
 

project laravel-simplecurl

A Laravel package for handling simple CURL requests

image

squareboat/laravel-simplecurl

A Laravel package for handling simple CURL requests

  • Tuesday, April 18, 2017
  • by squareboat1
  • Repository
  • 2 Watchers
  • 1 Stars
  • 356 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 5 Forks
  • 0 Open issues
  • 16 Versions
  • 15 % Grown

The README.md

Laravel SimpleCurl

A Laravel package for handling simple CURL requests... the Laravel way..., (*1)

For installation,

  • In terminal, paste this
composer require squareboat/laravel-simplecurl 0.*
  • Open app.php and add this in the 'providers' array
SquareBoat\SimpleCurl\SimpleCurlServiceProvider::class,
  • Then add this to the 'aliases' array
'SimpleCurl' => SquareBoat\SimpleCurl\SimpleCurlFacade::class,

Request Functions

Function Name Return Type Example
get() SimpleCurl SimpleCurl::get($url = '', $data = [], $headers = [])
post() SimpleCurl SimpleCurl::post($url = '', $data = [], $headers = [], $file = false)
put() SimpleCurl SimpleCurl::put($url = '', $data = [], $headers = [])
delete() SimpleCurl SimpleCurl::delete($url = '', $data = [], $headers = [])

Response Functions

Function Name Return Type Example
getResponse() array ['http_code' => 200, 'result' => ...]
getResponseCode() array 200
getRequestUrl() string 'http://mysite.com/api/v1/....'
getRequestSize() int 300
getTotalTime() int 0.2
getResponseContentType() string 'application/json'
getRedirectCount() int 0
getEffectiveUrl() string 'http://mysite.com/api/v1/....'
getCurlError() string 'URL is not properly formatted'
getResponseAsArray() array ['id' => 1, 'name' => Prateek Kathal ...]
getResponseAsJson() json {"id": 1, "name": "Prateek Kathal" ...}
getResponseAsCollection() Collection Collection => { [ 0 => {"id": 1, "name": "Prateek Kathal" }... ] }
getPaginatedResponse() LengthAwarePaginator LengthAwarePaginator => { 'total' => 10, per_page => 10, data => [ { "id": 1, "name": "Prateek Kathal" }... } ]
getResponseAsModel() Model User => { "attributes" : { "id": 1, "name": "Prateek Kathal" } }

Making simple GET/POST/PUT/DELETE requests,

Without Config Variables, (*2)

<?php

use SimpleCurl;

class UsersApiRepo
{

  function allUsers()
  {
    // Gives Response As Array
    $usersArray = SimpleCurl::get('http://mysite.com/api/v1/user/all')->getResponseAsArray();

    // Or (Gives Response As Json)
    $usersJson = SimpleCurl::get('http://mysite.com/api/v1/user/all')->getResponseAsJson();

    // Or (Gives Response As Collection)
    $usersCollection = SimpleCurl::get('http://mysite.com/api/v1/user/all')->getResponseAsCollection();

    // Or (Gives Response As LengthAwarePaginator, if the response is paginated)
    $usersPaginated = SimpleCurl::get('http://mysite.com/api/v1/user/all')->getPaginatedResponse();
  }

  function storeUser()
  {
    $url = 'http://mysite.com/api/v1/user/store';
    $inputs = [
      'name' => 'Prateek Kathal',
      'status' => 'Feeling positive!',
      'photo' => new \CURLFile($photoUrl, $mimeType, $photoName)
    ];
    $headers = ['Authorization: Bearer tokenForAuthorization'];
    $usersJson = SimpleCurl::post($url, $inputs, $headers, true)->getResponseAsJson();
  }

  function updateUser($id)
  {
    // Please note that CURL does not support posting Images/Files via PUT requests.
    $url = 'http://mysite.com/api/v1/user/' .$id. '/update';
    $headers = ['Authorization: Bearer tokenForAuthorization'];
    $inputs = [
      'status' => 'Feeling amazing!'
    ];
    $usersJson = SimpleCurl::put($url, $inputs, $headers)->getResponseAsJson();
  }

  function deleteUser($id)
  {
    // Please note that CURL does not support posting Images/Files via PUT requests.
    $url = 'http://mysite.com/api/v1/user/' .$id. '/delete';
    $headers = ['Authorization: Bearer tokenForAuthorization'];
    $usersJson = SimpleCurl::put($url, [], $headers)->getResponseAsJson();
  }

}

You may also use this function just for making things more Laravel-like..., (*3)

**Add this trait to your Model (say Photo), (*4)

use SquareBoat\SimpleCurl\SimpleCurlTrait;

** Then add these 2 things in your model**, (*5)

<?php

class Photo extends Model
{
  use SimpleCurlTrait;

  protected $apiAttributes = ['id', 'user_id', 'name', 'mime_type'];
}
function getUser($id)
{
  /*
   * Please ensure only a single Model is present in the response for this. Multiple rows will not be
   * automatically get converted into Collections And Models atm.
   *
   * Keys set as fillable in that particular model are used here. Any fillable key, not present in the
   * response will be set as null and an instance of the Model will be returned.
   */
  $userModel = SimpleCurl::get('http://mysite.com/api/v1/user/' .id. '/get/')->getResponseAsModel('App\User')

  /*
   * There is also a second parameter which you can use to add something from the response as a relation
   * to it.
   *
   * You will have to save a copy of the model somewhere so that SimpleCurl can get apiAttributes/fillable fields from
   * that class and use for relational Models as well.
   */
  $relations = [
    [
      'photo' => 'App\Photo'
    ],
    [
      'city'=> 'App\City',                  //This will work as city.state and give state as a relation to city
      'state' => 'App\State'
    ]
  ];
  $userModelWithPhotoAsRelation = SimpleCurl::get('http://mysite.com/api/v1/user/' .id. '/get/')->getResponseAsModel('App\User', $relations);
}

Please note that getResponseAsModel() is experimental and may not run for many cases if the responses are altered a lot before they are sent. For eg - When you convert an attribute created_at into a separate format using $casts variable., (*6)

Also, you can make a config file (say config/relations.php) and save all your relations in it and call separately., (*7)

With Config Variables, (*8)

<?php

use SimpleCurl;

class UsersApiRepo
{

  /*
   * A Config Variable which you can use to handle multiple CURL requests...
   */
  protected $simpleCurlConfig;

  function __construct() {
    $this->simpleCurlConfig = [
      'connectTimeout' => 30,
      'dataTimeout' => 60,
      'baseUrl' => 'http://mysite.com/',
      'defaultHeaders' => [
        'Authorization: Bearer {bearer_token}',
        'Content-Type: application/json'
      ],
    ];
  }

  function allUsers()
  {
    // Set Defaults for making a CURL Request
    $simpleCurl = SimpleCurl::setConfig($this->simpleCurlConfig);

    // or if you just want to set base url
    // $simpleCurl = SimpleCurl::setBaseUrl($this->simpleCurlConfig['baseUrl']);

    // Gives Response As Array
    $usersArray = $simpleCurl->get('api/v1/users/all')->getResponseAsArray();

    and so on...
  }

  and so on.....

}

You are most welcome to create pull requests and post issues! :smile: :sunglasses: :+1:, (*9)

The Versions

18/04 2017

dev-master

9999999-dev

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

laravel curl php

18/04 2017

v0.2.4

0.2.4.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

laravel curl php

16/01 2017

v0.2.3

0.2.3.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

laravel curl php

20/12 2016

v0.2.2

0.2.2.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

laravel curl php

29/09 2016

v0.2.1

0.2.1.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

laravel curl php

24/09 2016

v0.2.0

0.2.0.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

laravel curl php

19/09 2016

v0.1.9

0.1.9.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

laravel curl php

15/09 2016

v0.1.8

0.1.8.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

laravel curl php

12/09 2016

v0.1.7

0.1.7.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

laravel curl php

11/09 2016

v0.1.6

0.1.6.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

laravel curl php

10/09 2016

v0.1.5

0.1.5.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

laravel curl php

10/09 2016

v0.1.4

0.1.4.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

curl php

08/09 2016

v0.1.3

0.1.3.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

curl php

08/09 2016

v0.1.2

0.1.2.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

curl php

08/09 2016

v0.1.1

0.1.1.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

curl php

08/09 2016

v0.1.0

0.1.0.0

A Laravel package for handling simple CURL requests

  Sources   Download

MIT

The Requires

  • php >=5.5.0

 

by Prateek Kathal

curl php