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.
135 lines
2.6 KiB
135 lines
2.6 KiB
<?php
|
|
namespace App\Helpers\Api;
|
|
|
|
use Symfony\Component\HttpFoundation\Response as FoundationResponse;
|
|
use Response;
|
|
|
|
//
|
|
trait ApiResponse
|
|
{
|
|
/**
|
|
* @var int
|
|
*/
|
|
protected $statusCode = FoundationResponse::HTTP_OK;
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getStatusCode()
|
|
{
|
|
return $this->statusCode;
|
|
}
|
|
|
|
/**
|
|
* @param $statusCode
|
|
* @return $this
|
|
*/
|
|
public function setStatusCode($statusCode)
|
|
{
|
|
|
|
$this->statusCode = $statusCode;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param $data
|
|
* @param array $header
|
|
* @return mixed
|
|
*/
|
|
public function respond($data, $header = [])
|
|
{
|
|
|
|
return Response::json($data, $this->getStatusCode(), $header);
|
|
}
|
|
|
|
/**
|
|
* @param $status
|
|
* @param array $data
|
|
* @param null $code
|
|
* @return mixed
|
|
*/
|
|
public function status($status, array $data, $code = null)
|
|
{
|
|
|
|
if ($code) {
|
|
$this->setStatusCode($code);
|
|
}
|
|
|
|
$status = [
|
|
'status' => $status,
|
|
'code' => $this->statusCode
|
|
];
|
|
|
|
$data = array_merge($status, $data);
|
|
return $this->respond($data);
|
|
|
|
}
|
|
|
|
/**
|
|
* @param $message
|
|
* @param int $code
|
|
* @param string $status
|
|
* @return mixed
|
|
*/
|
|
public function failed($message, $code = FoundationResponse::HTTP_BAD_REQUEST, $status = 'error')
|
|
{
|
|
|
|
return $this->setStatusCode($code)->message($message, $status);
|
|
}
|
|
|
|
/**
|
|
* @param $message
|
|
* @param string $status
|
|
* @return mixed
|
|
*/
|
|
public function message($message, $status = "success")
|
|
{
|
|
|
|
return $this->status($status, [
|
|
'message' => $message
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @param string $message
|
|
* @return mixed
|
|
*/
|
|
public function internalError($message = "Internal Error!")
|
|
{
|
|
|
|
return $this->failed($message, FoundationResponse::HTTP_INTERNAL_SERVER_ERROR);
|
|
}
|
|
|
|
/**
|
|
* @param string $message
|
|
* @return mixed
|
|
*/
|
|
public function created($message = "created")
|
|
{
|
|
return $this->setStatusCode(FoundationResponse::HTTP_CREATED)
|
|
->message($message);
|
|
|
|
}
|
|
|
|
/**
|
|
* @param $data
|
|
* @param string $status
|
|
* @return mixed
|
|
*/
|
|
public function success($data, $status = "success")
|
|
{
|
|
|
|
return $this->status($status, compact('data'));
|
|
}
|
|
|
|
|
|
/**
|
|
* @param string $message
|
|
* @return mixed
|
|
*/
|
|
public function notFond($message = 'Not Fond!')
|
|
{
|
|
return $this->failed($message, Foundationresponse::HTTP_NOT_FOUND);
|
|
}
|
|
|
|
} |