Skip to content
Charles Lalonde edited this page Jul 14, 2015 · 2 revisions

Crew\Unsplash\Photo

Properties

$photographer

private mixed $photographer
  • Visibility: private

$parameters

private array $parameters

All parameters that an endpoint can have

  • Visibility: private

$acceptedHttpMethod

private array $acceptedHttpMethod = array('get', 'post', 'put')

List of accepted http action that the application can execute

  • Visibility: private
  • This property is static.

Methods

find

\Crew\Unsplash\Photo Crew\Unsplash\Photo::find(string $id)

Retrieve the a photo object from the id specified

  • Visibility: public
  • This method is static.

Arguments

  • $id string - <p>Id of the photo to find</p>

all

\Crew\Unsplash\ArrayObject Crew\Unsplash\Photo::all(integer $page, integer $per_page)

Retrieve all the photos on a specific page.

The function retrieve an ArrayObject that contain Photo object.

  • Visibility: public
  • This method is static.

Arguments

  • $page integer - <p>Page from which the photos need to be retrieve</p>
  • $per_page integer - <p>Number of element in a page</p>

search

\Crew\Unsplash\ArrayObject Crew\Unsplash\Photo::search(string $search, integer $category, integer $page, integer $per_page)

Retrieve all the photos on a specific page depending on search results The function retrieve an ArrayObject that contain Photo object.

  • Visibility: public
  • This method is static.

Arguments

  • $search string - <p>Retrieve photos matching the search word</p>
  • $category integer - <p>Retrieve photos matching the category id</p>
  • $page integer - <p>Page from which the photos need to be retrieve</p>
  • $per_page integer - <p>Number of element in a page</p>

create

\Crew\Unsplash\Photo Crew\Unsplash\Photo::create(string $filePath)

Create a new photo. The user need to connect to his account and give the right to write_photo

  • Visibility: public
  • This method is static.

Arguments

  • $filePath string - <p>Path of the file need to upload</p>

photographer

\Crew\Unsplash\User Crew\Unsplash\Photo::photographer()

Retrieve the user object of the one who take the photo

  • Visibility: public

__construct

mixed Crew\Unsplash\Endpoint::__construct($parameters)

Construct an new endpoint object and set the parameters from an array

Arguments

  • $parameters mixed

update

void Crew\Unsplash\Endpoint::update(array $parameters)

Merge the old parameters with the new one

Arguments

  • $parameters array

__get

mixed Crew\Unsplash\Endpoint::__get(string $key)

Magic method to retrieve a specific parameter in the parameters array

Arguments

  • $key string

__callStatic

string Crew\Unsplash\Endpoint::__callStatic(string $method, array $arguments)

Validate if the http method is accepted and send a http request to it.

Retrieve error from the request and throw a new error

Arguments

  • $method string - <p>Http action to trigger</p>
  • $arguments array - <p>Array containing all the parameters pass to the magic method</p>

getArray

mixed Crew\Unsplash\Endpoint::getArray($responseBody, $object)

Arguments

  • $responseBody mixed
  • $object mixed

isGoodRequest

boolean Crew\Unsplash\Endpoint::isGoodRequest(\Crew\Unsplash\GuzzleHttp\Psr7\Response $response)

Retrieve the response status code and determine if the request was a success or not

Arguments

  • $response Crew\Unsplash\GuzzleHttp\Psr7\Response - <p>of the http request</p>

getErrorMessage

string Crew\Unsplash\Endpoint::getErrorMessage(\Crew\Unsplash\GuzzleHttp\Psr7\Response $response)

Retrieve the error message in the body

Arguments

  • $response Crew\Unsplash\GuzzleHttp\Psr7\Response - <p>of the http request</p>

Api Index

Clone this wiki locally