| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/home-services/app/Http/Controllers/API/ |
Upload File : |
<?php
namespace App\Http\Controllers\API;
use App\Http\Controllers\Controller;
use App\Models\DeliveryAddress;
use App\Repositories\DeliveryAddressRepository;
use Flash;
use Illuminate\Http\Request;
use InfyOm\Generator\Criteria\LimitOffsetCriteria;
use Prettus\Repository\Criteria\RequestCriteria;
use Prettus\Repository\Exceptions\RepositoryException;
use Prettus\Validator\Exceptions\ValidatorException;
/**
* Class DeliveryAddressController
* @package App\Http\Controllers\API
*/
class DeliveryAddressAPIController extends Controller
{
/** @var DeliveryAddressRepository */
private $deliveryAddressRepository;
public function __construct(DeliveryAddressRepository $deliveryAddressRepo)
{
$this->deliveryAddressRepository = $deliveryAddressRepo;
}
/**
* Display a listing of the DeliveryAddress.
* GET|HEAD /deliveryAddresses
*
* @param Request $request
* @return \Illuminate\Http\JsonResponse
*/
public function index(Request $request)
{
try {
$this->deliveryAddressRepository->pushCriteria(new RequestCriteria($request));
$this->deliveryAddressRepository->pushCriteria(new LimitOffsetCriteria($request));
} catch (RepositoryException $e) {
return $this->sendError($e->getMessage());
}
$deliveryAddresses = $this->deliveryAddressRepository->all();
return $this->sendResponse($deliveryAddresses->toArray(), 'Delivery Addresses retrieved successfully');
}
/**
* Display the specified DeliveryAddress.
* GET|HEAD /deliveryAddresses/{id}
*
* @param int $id
*
* @return \Illuminate\Http\JsonResponse
*/
public function show($id)
{
/** @var DeliveryAddress $deliveryAddress */
if (!empty($this->deliveryAddressRepository)) {
$deliveryAddress = $this->deliveryAddressRepository->findWithoutFail($id);
}
if (empty($deliveryAddress)) {
return $this->sendError('Delivery Address not found');
}
return $this->sendResponse($deliveryAddress->toArray(), 'Delivery Address retrieved successfully');
}
/**
* Store a newly created DeliveryAddress in storage.
*
* @param Request $request
*
* @return \Illuminate\Http\JsonResponse
*/
public function store(Request $request)
{
$uniqueInput = $request->only("address");
$otherInput = $request->except("address");
try {
$deliveryAddress = $this->deliveryAddressRepository->updateOrCreate($uniqueInput, $otherInput);
} catch (ValidatorException $e) {
return $this->sendError($e->getMessage());
}
return $this->sendResponse($deliveryAddress->toArray(), __('lang.saved_successfully', ['operator' => __('lang.delivery_address')]));
}
/**
* Update the specified DeliveryAddress in storage.
*
* @param int $id
* @param Request $request
*
* @return \Illuminate\Http\JsonResponse
*/
public function update($id, Request $request)
{
$deliveryAddress = $this->deliveryAddressRepository->findWithoutFail($id);
if (empty($deliveryAddress)) {
return $this->sendError('Delivery Address not found');
}
$input = $request->all();
if ($input['is_default'] == true){
$this->deliveryAddressRepository->initIsDefault($input['user_id']);
}
try {
$deliveryAddress = $this->deliveryAddressRepository->update($input, $id);
} catch (ValidatorException $e) {
return $this->sendError($e->getMessage());
}
return $this->sendResponse($deliveryAddress->toArray(), __('lang.updated_successfully', ['operator' => __('lang.delivery_address')]));
}
/**
* Remove the specified Address from storage.
*
* @param int $id
*
* @return \Illuminate\Http\JsonResponse
*/
public function destroy($id)
{
$address = $this->deliveryAddressRepository->findWithoutFail($id);
if (empty($address)) {
return $this->sendError('Delivery Address Not found');
}
$this->deliveryAddressRepository->delete($id);
return $this->sendResponse($address, __('lang.deleted_successfully',['operator' => __('lang.delivery_address')]));
}
}