radarrplexorganizrnginxsonarrdashboardserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpc
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.8 KiB
63 lines
1.8 KiB
<?php
|
|
|
|
namespace Github\Api;
|
|
|
|
/**
|
|
* A trait to make sure we add accept headers on all requests.
|
|
*
|
|
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
|
*/
|
|
trait AcceptHeaderTrait
|
|
{
|
|
protected $acceptHeaderValue;
|
|
|
|
protected function get($path, array $parameters = [], array $requestHeaders = [])
|
|
{
|
|
return parent::get($path, $parameters, $this->mergeHeaders($requestHeaders));
|
|
}
|
|
|
|
protected function head($path, array $parameters = [], array $requestHeaders = [])
|
|
{
|
|
return parent::head($path, $parameters, $this->mergeHeaders($requestHeaders));
|
|
}
|
|
|
|
protected function post($path, array $parameters = [], array $requestHeaders = [])
|
|
{
|
|
return parent::post($path, $parameters, $this->mergeHeaders($requestHeaders));
|
|
}
|
|
|
|
protected function postRaw($path, $body, array $requestHeaders = [])
|
|
{
|
|
return parent::postRaw($path, $body, $this->mergeHeaders($requestHeaders));
|
|
}
|
|
|
|
protected function patch($path, array $parameters = [], array $requestHeaders = [])
|
|
{
|
|
return parent::patch($path, $parameters, $this->mergeHeaders($requestHeaders));
|
|
}
|
|
|
|
protected function put($path, array $parameters = [], array $requestHeaders = [])
|
|
{
|
|
return parent::put($path, $parameters, $this->mergeHeaders($requestHeaders));
|
|
}
|
|
|
|
protected function delete($path, array $parameters = [], array $requestHeaders = [])
|
|
{
|
|
return parent::delete($path, $parameters, $this->mergeHeaders($requestHeaders));
|
|
}
|
|
|
|
/**
|
|
* Append a new accept header on all requests.
|
|
*
|
|
* @return array
|
|
*/
|
|
private function mergeHeaders(array $headers = [])
|
|
{
|
|
$default = [];
|
|
if ($this->acceptHeaderValue) {
|
|
$default = ['Accept' => $this->acceptHeaderValue];
|
|
}
|
|
|
|
return array_merge($default, $headers);
|
|
}
|
|
}
|
|
|