|
- <?php
-
- namespace Lc\ShopBundle\Services ;
-
- use Doctrine\ORM\EntityManagerInterface;
- use Lc\ShopBundle\Context\CreditHistoryInterface;
- use Lc\ShopBundle\Context\MerchantInterface;
- use Lc\ShopBundle\Context\MerchantUtilsInterface;
- use Lc\ShopBundle\Context\UserInterface;
- use Lc\ShopBundle\Context\UserMerchantInterface;
- use Lc\ShopBundle\Model\CreditHistory;
-
- class CreditUtils
- {
- protected $em ;
- protected $merchantUtils ;
- protected $userMerchantRepository ;
-
- public function __construct(EntityManagerInterface $em, MerchantUtilsInterface $merchantUtils)
- {
- $this->em = $em ;
- $this->merchantUtils = $merchantUtils ;
- $this->userMerchantRepository = $this->em->getRepository($this->em->getClassMetadata(UserMerchantInterface::class)->getName()) ;
- }
-
- public function getUserMerchant(UserInterface $user, MerchantInterface $merchant = null)
- {
- $merchant = $this->getMerchant($merchant) ;
- $userMerchant = $this->userMerchantRepository->findOneBy([
- 'user' => $user,
- 'merchant' => $merchant
- ]) ;
- return $userMerchant ;
- }
-
- public function createUserMerchant(UserInterface $user, MerchantInterface $merchant = null)
- {
- $merchant = $this->getMerchant($merchant) ;
- $classUserMerchant = $this->em->getClassMetadata(UserMerchantInterface::class)->getName();
-
- $userMerchant = new $classUserMerchant ;
- $userMerchant->setUser($user) ;
- $userMerchant->setMerchant($merchant) ;
- $userMerchant->setCredit(0) ;
- $userMerchant->setCreditActive(true) ;
-
- $this->em->persist($userMerchant) ;
- $this->em->flush() ;
-
- return $userMerchant ;
- }
-
- public function updateCreditActive($user, $merchant = null, $creditActive = true)
- {
- $userMerchant = $this->getUserMerchant($user, $merchant) ;
- if(!$userMerchant) {
- $userMerchant = $this->createUserMerchant($user, $merchant) ;
- }
-
- $userMerchant->setCreditActive($creditActive) ;
-
- $this->em->persist($userMerchant) ;
- $this->em->flush() ;
-
- return $userMerchant ;
- }
-
- public function activeCredit($user, $merchant = null)
- {
- return $this->updateCreditActive($user, $merchant, true) ;
- }
-
- public function unactiveCredit($user, $merchant = null)
- {
- return $this->updateCreditActive($user, $merchant, false) ;
- }
-
- public function checkCreditActive(UserMerchantInterface $userMerchant)
- {
- if(!$userMerchant || ($userMerchant && !$userMerchant->isCreditActive())) {
- throw new \ErrorException("L'utilisateur n'a pas de compte prépayé activé pour ce marchand.") ;
- }
-
- return true ;
- }
-
- public function createCreditHistory($type, $user, $params = [])
- {
- $creditHistory = $this->initCreditHistory($type, $user, $params) ;
- return $this->saveCreditHistory($creditHistory) ;
- }
-
- public function initCreditHistory($type, $user, $params = [])
- {
- $merchant = isset($params['merchant']) ? $params['merchant'] : null ;
- $userMerchant = $this->getUserMerchant($user, $merchant) ;
- $checkCreditActive = $this->checkCreditActive($userMerchant) ;
-
- if($checkCreditActive) {
- $amount = isset($params['amount']) ? $params['amount'] : null ;
- $meanPayment = isset($params['meanPayment']) ? $params['meanPayment'] : null ;
- $reference = isset($params['reference']) ? $params['reference'] : null ;
- $comment = isset($params['comment']) ? $params['comment'] : null ;
- $orderPayment = isset($params['orderPayment']) ? $params['orderPayment'] : null ;
- $orderRefund = isset($params['orderRefund']) ? $params['orderRefund'] : null ;
-
- // credit history
- $classCreditHistory = $this->em->getClassMetadata(CreditHistoryInterface::class)->getName();
-
- $creditHistory = new $classCreditHistory ;
- $creditHistory->setType($type) ;
- $creditHistory->setUserMerchant($userMerchant) ;
- $creditHistory->setAmount($amount) ;
- $creditHistory->setMeanPayment($meanPayment) ;
- $creditHistory->setReference($reference) ;
- $creditHistory->setComment($comment) ;
- $creditHistory->setOrderPayment($orderPayment) ;
- $creditHistory->setOrderRefund($orderRefund) ;
-
- return $creditHistory ;
- }
-
- return false ;
- }
-
- public function saveCreditHistory($creditHistory)
- {
- if($creditHistory) {
- $userMerchant = $creditHistory->getUserMerchant() ;
- $checkCreditActive = $this->checkCreditActive($userMerchant) ;
-
- if($checkCreditActive) {
- $this->em->persist($creditHistory) ;
- $this->em->flush() ;
-
- if($creditHistory->getType() == CreditHistory::TYPE_CREDIT) {
- $userMerchantAmount = $userMerchant->getCredit() + $creditHistory->getAmountInherited() ;
- }
- elseif($creditHistory->getType() == CreditHistory::TYPE_DEBIT) {
- $userMerchantAmount = $userMerchant->getCredit() - $creditHistory->getAmountInherited() ;
- }
- if(isset($userMerchantAmount)) {
- $this->updateCredit($userMerchant, $userMerchantAmount) ;
- }
-
- return true ;
- }
- }
-
- return false ;
- }
-
- public function updateCredit($userMerchant, $amount)
- {
- $userMerchant->setCredit($amount) ;
- $this->em->persist($userMerchant) ;
- $this->em->flush() ;
- }
-
- public function getMerchant($merchant)
- {
- if(!$merchant) {
- $merchant = $this->merchantUtils->getMerchantCurrent() ;
- }
-
- return $merchant ;
- }
- }
|