mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 12:34:18 +00:00
99 lines
4.3 KiB
PHP
99 lines
4.3 KiB
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Segments\ControllersLogic;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\JsonResponse;
|
|
use App\Http\Resources\ConstantResource;
|
|
use App\Classes\ValueObjects\Constants\SegmentConstants;
|
|
use App\Classes\Modules\Segments\Services\FetchesSegment;
|
|
use App\Classes\General\Abstracts\AbstractControllerLogic;
|
|
use App\Classes\Modules\Segments\Services\FetchesConstant;
|
|
use App\Classes\Modules\Segments\Services\UpdatesConstant;
|
|
use App\Classes\Modules\Segments\Standards\Rules\CanUpdateConstant;
|
|
use App\Classes\Modules\Segments\DataTransferObjects\ConstantObject;
|
|
use App\Classes\Modules\Segments\Services\AddItemToConstantValueArray;
|
|
use App\Classes\Modules\Segments\Services\RemoveItemFromConstantValueArray;
|
|
|
|
class UpdateConstantPostcodeLogic extends AbstractControllerLogic
|
|
{
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
protected function notification():array {
|
|
return [
|
|
'title' => 'Updated Segment Constant',
|
|
'message' => 'You have successfully updated the Segment Constant'
|
|
];
|
|
}
|
|
|
|
/** @var CanUpdateConstant */
|
|
private $canUpdateConstant;
|
|
|
|
/** @var UpdatesConstant */
|
|
private $updatesConstant;
|
|
|
|
/** @var FetchesSegment */
|
|
private $fetchesSegment;
|
|
|
|
/** @var FetchesConstant */
|
|
private $fetchesConstant;
|
|
|
|
/** @var AddItemToConstantValueArray */
|
|
private $addItemToConstantValueArray;
|
|
|
|
/** @var RemoveItemFromConstantValueArray */
|
|
private $removeItemFromConstantValueArray;
|
|
|
|
|
|
/**
|
|
* UpdateConstantLogic constructor.
|
|
* @param CanUpdateConstant $canUpdateConstant
|
|
* @param UpdatesConstant $updatesConstant
|
|
* @param FetchesSegment $fetchesSegment
|
|
* @param FetchesConstant $fetchesConstant
|
|
* @param AddItemToConstantValueArray $addItemToConstantValueArray
|
|
* @param RemoveItemFromConstantValueArray $removeItemFromConstantValueArray
|
|
*/
|
|
public function __construct(CanUpdateConstant $canUpdateConstant, UpdatesConstant $updatesConstant, FetchesSegment $fetchesSegment, FetchesConstant $fetchesConstant,AddItemToConstantValueArray $addItemToConstantValueArray, RemoveItemFromConstantValueArray $removeItemFromConstantValueArray)
|
|
{
|
|
$this->canUpdateConstant = $canUpdateConstant;
|
|
$this->updatesConstant = $updatesConstant;
|
|
$this->fetchesSegment = $fetchesSegment;
|
|
$this->fetchesConstant = $fetchesConstant;
|
|
$this->addItemToConstantValueArray = $addItemToConstantValueArray;
|
|
$this->removeItemFromConstantValueArray = $removeItemFromConstantValueArray;
|
|
}
|
|
/**
|
|
* @param Request $request
|
|
* @return JsonResponse
|
|
* @throws \App\Classes\Exceptions\AccessForbiddenException
|
|
* @throws \App\Classes\Exceptions\MalformedRequestException
|
|
* @throws \App\Classes\Exceptions\RequestValidationException
|
|
*/
|
|
public function logic(Request $request) : JsonResponse
|
|
{
|
|
$segment = $this->fetchesSegment->execute(['id' => $request->route('id')]);
|
|
|
|
$constant = $this->fetchesConstant->execute(['segment_id' => $segment->id, 'reference' => $request->input('reference')]);
|
|
|
|
$object = new ConstantObject($constant->reference, $this->addItemToConstantValueArray->execute($constant->value, $request->input('postcode')));
|
|
$this->canUpdateConstant->passes($object);
|
|
|
|
$constant = $this->updatesConstant->execute($constant, $object);
|
|
|
|
$oppositeConstant = $this->fetchesConstant->execute(['segment_id' => $segment->id, 'reference' => $request->input('reference') == SegmentConstants::CENTER_POSTCODE ? SegmentConstants::OUTSTATION_POSTCODE : SegmentConstants::CENTER_POSTCODE]);
|
|
|
|
$oppositeObject = new ConstantObject($request->input('reference') == SegmentConstants::CENTER_POSTCODE ? SegmentConstants::OUTSTATION_POSTCODE : SegmentConstants::CENTER_POSTCODE, $this->removeItemFromConstantValueArray->execute($oppositeConstant->value, $request->input('postcode')));
|
|
|
|
$oppositeConstant = $this->updatesConstant->execute($oppositeConstant, $oppositeObject);
|
|
|
|
|
|
return $this->response([
|
|
'CENTER_POSTCODE' => $constant->reference == SegmentConstants::CENTER_POSTCODE ? new ConstantResource($constant) : New ConstantResource($oppositeConstant),
|
|
'OUTSTATION_POSTCODE' => $constant->reference == SegmentConstants::OUTSTATION_POSTCODE ? new ConstantResource($constant) : New ConstantResource($oppositeConstant),
|
|
]);
|
|
}
|
|
|
|
} |