src/EventListener/ObjectListener.php line 21

Open in your IDE?
  1. <?php
  2. namespace App\EventListener;
  3. use App\Model\DataObject\Address;
  4. use Exception;
  5. use Pimcore\Event\Model\ElementEventInterface;
  6. use Pimcore\Event\Model\DataObjectEvent;
  7. use Pimcore\File;
  8. use Pimcore\Logger;
  9. use Pimcore\Model\DataObject\Business;
  10. use Pimcore\Model\DataObject\Coupon;
  11. use Pimcore\Model\DataObject\News;
  12. use Pimcore\Model\DataObject\Price;
  13. use Pimcore\Model\DataObject\Product;
  14. class ObjectListener
  15. {
  16.     public function onPreDelete(ElementEventInterface $e)
  17.     {
  18.         if ($e instanceof DataObjectEvent) {
  19.             $obj $e->getObject();
  20.             if($obj instanceof Product){
  21.                 $this->deleteProduct($obj);
  22.             }else if($obj instanceof Price){
  23.                 $this->deletePrice($obj);
  24.             }else if($obj instanceof Coupon){
  25.                 $this->deleteCoupon($obj);
  26.             }
  27.         }
  28.     }
  29.     public function onPreUpdate(ElementEventInterface $e)
  30.     {
  31.         if ($e instanceof DataObjectEvent) {
  32.             $obj $e->getObject();
  33.             if($obj instanceof Address) {
  34.                 if(!$obj->getLocation()){
  35.                     $obj->geocode();
  36.                 }
  37.             }else if($obj instanceof News){
  38.                 $languages \Pimcore\Tool::getValidLanguages();
  39.                 foreach($languages as $lang) {
  40.                     $obj->setSlug(urlencode($obj->getTitle($lang)."-".$obj->getId()), $lang);
  41.                 }
  42.             }else if($obj instanceof Business){
  43.                 $languages \Pimcore\Tool::getValidLanguages();
  44.                 foreach($languages as $lang) {
  45.                     if(!$obj->getSlug($lang)){
  46.                         $obj->setSlug(File::getValidFilename($obj->getName($lang).'_'.$obj->getId()), $lang);
  47.                     }
  48.                 }
  49.                 if(!$obj->getImage()){
  50.                     if(!$obj->getPremium()){
  51.                         $obj->setImage(\Pimcore\Model\WebsiteSetting::getByName('defaultImageNotPartner')->getData());
  52.                     } else{
  53.                         $obj->setImage(\Pimcore\Model\WebsiteSetting::getByName('defaultImage')->getData());
  54.                     }
  55.                 }
  56.                 if(!$obj->getBanner()){
  57.                     $obj->setBanner(\Pimcore\Model\WebsiteSetting::getByName('defaultBanner')->getData());
  58.                 }
  59.                 $this->businessRefUpdater($obj);
  60.             }else if($obj instanceof Product){
  61.                 //$this->createProduct($obj);
  62.             }else if($obj instanceof Price){
  63.                 //$this->createPrice($obj);
  64.             }else if($obj instanceof Coupon){
  65.                 //$this->createCoupon($obj);
  66.             }
  67.         }
  68.     }
  69.     private function businessRefUpdater(Business $obj){
  70.         $ref "";
  71.         $lang $obj->getLocale();
  72.         switch($obj->getFrame()) {
  73.             case 'family':
  74.                 if($lang == 'fr'){
  75.                     $ref .= 'FAM';
  76.                     break;
  77.                 }elseif($lang == 'nl'){
  78.                     $ref .= 'GE';
  79.                     break;
  80.                 }
  81.             case 'collective':
  82.                 if($lang == 'fr'){
  83.                     $ref .= 'COLL';
  84.                     break;
  85.                 }elseif($lang == 'nl'){
  86.                     $ref .= 'GR';
  87.                     break;
  88.                 }
  89.         }
  90.         switch($obj->getPrice()){
  91.             case 'subsidized':
  92.                 if($lang == 'fr'){
  93.                     $ref .= 'SUB';
  94.                     break;
  95.                 }elseif($lang == 'nl'){
  96.                     if($obj->getFrame() == 'family'){
  97.                         $ref .= 'IK';
  98.                         break;
  99.                     } elseif($obj->getFrame() == 'collective'){
  100.                         $ref .= 'IKG';
  101.                         break;
  102.                     }
  103.                 }
  104.             case 'private':
  105.                 if($lang == 'fr'){
  106.                     $ref.= 'PRIV';
  107.                     break;
  108.                 }elseif($lang == 'nl'){
  109.                     $ref.= 'VP';
  110.                     break;
  111.                 }
  112.         }
  113.         $obj->setCodeRef($ref);
  114.         $ref .= $obj->getId();
  115.         $obj->setRef($ref);
  116.     }
  117.     private function stripe(){
  118.        return new \Stripe\StripeClient(\Pimcore\Model\WebsiteSetting::getByName('stripeSecretKey')->getData());
  119.     }
  120.     private function createProduct(Product $product){
  121.         $stripe $this->stripe();
  122.         if(!$product->getStripeId() && $product->isPublished()){
  123.             if(!$product->getStripeId()){
  124.                 $res $stripe->products->create([
  125.                     'name' => $product->getName('fr'),
  126.                     'description' => $product->getDescription(),
  127.                     'tax_code' => 'txcd_10000000',
  128.                     'active' => $product->isPublished()
  129.                 ]);
  130.                 $product->setStripeId($res->id);
  131.             }
  132.         }
  133.         if($product->getStripeId()){
  134.             $stripe->products->update(
  135.                 $product->getStripeId(),
  136.                 [
  137.                 'name' => $product->getName('fr'),
  138.                 'description' => $product->getDescription(),
  139.                 'active' => $product->isPublished()
  140.             ]);
  141.         }
  142.     }
  143.     private function deleteProduct(Product $product){
  144.         if($product->getStripeId()) {
  145.             $stripe $this->stripe();
  146.             try{
  147.                 $stripe->products->update(
  148.                     $product->getStripeId(),
  149.                     [
  150.                         'active' => false
  151.                     ]
  152.                 );
  153.             }catch(Exception $e){
  154.                 Logger::err('[product:'.$product->getId().'] unable to delete from stripe');
  155.             }
  156.         }
  157.     }
  158.     private function createPrice(Price $price){
  159.         $stripe $this->stripe();
  160.         if(!$price->getStripeId() && $price->isPublished()){
  161.             $product $price->getProduct();
  162.             $res $stripe->prices->create([
  163.                 'currency' => 'EUR',
  164.                 'product' => $product->getStripeId(),
  165.                 'unit_amount' => $price->getAmount() * 100,
  166.                 'active' => $price->isPublished(),
  167.                 'recurring' => [
  168.                     'interval' => $price->getInterval(),
  169.                     'interval_count' => $price->getIntervalNumber()
  170.                 ],
  171.                 'tax_behavior' => 'inclusive',
  172.             ]);
  173.             $price->setStripeId($res->id);
  174.         }
  175.         if($price->getStripeId()) {
  176.             $stripe->prices->update(
  177.                 $price->getStripeId(),
  178.                 [ 'active' => false ]
  179.             );
  180.             if($price->isPublished()){
  181.                 $product $price->getProduct();
  182.                 $res $stripe->prices->create([
  183.                     'currency' => 'EUR',
  184.                     'product' => $product->getStripeId(),
  185.                     'unit_amount' => $price->getAmount() * 100,
  186.                     'active' => $price->isPublished(),
  187.                     'recurring' => [
  188.                         'interval' => $price->getInterval(),
  189.                         'interval_count' => $price->getIntervalNumber()
  190.                     ],
  191.                     'tax_behavior' => 'inclusive',
  192.                 ]);
  193.                 $price->setStripeId($res->id);
  194.             }
  195.         }
  196.     }
  197.     private function deletePrice(Price $price){
  198.         if($price->getStripeId()) {
  199.             try{
  200.                 $stripe $this->stripe();
  201.                 $stripe->prices->update(
  202.                     $price->getStripeId(),
  203.                     [ 'active' => false ]
  204.                 );
  205.             }catch(Exception $e){
  206.                 Logger::err('[price:'.$price->getId().'] unable to delete from stripe');
  207.             }
  208.         }
  209.     }
  210.     private function createCoupon(Coupon $coupon){
  211.         $stripe $this->stripe();
  212.         if($coupon->isPublished()){
  213.             $stripeCoupon = [
  214.                 $coupon->getCouponType() => ($coupon->getCouponType() === 'percent_off' $coupon->getReduction() : ($coupon->getReduction() *100)),
  215.                 'currency' => 'EUR',
  216.                 'duration' => $coupon->getValidity(),
  217.                 'duration_in_months' => $coupon->getDuration(),
  218.                 'name' => $coupon->getName(),
  219.             ];
  220.             if($coupon->getMaxUsage()){
  221.                 $stripeCoupon['max_redemptions'] = $coupon->getMaxUsage();
  222.             }
  223.             $res $stripe->coupons->create($stripeCoupon);
  224.             $coupon->setStripeId($res->id);
  225.         }
  226.         //UPDATE
  227.         if($coupon->getCodeStripeId()){
  228.             $stripe->promotionCodes->update(
  229.                 $coupon->getCodeStripeId(),
  230.                 [ 'active' => false ]
  231.             );
  232.             if($coupon->isPublished()){
  233.                 $stripePromoCode = [
  234.                     'coupon' => $res->id,
  235.                     'code' => $coupon->getCode(),
  236.                     'expires_at' => $coupon->getExpireDate()->timestamp,
  237.                 ];
  238.                 if($coupon->getMaxUsage()){
  239.                     $stripePromoCode['max_redemptions'] = $coupon->getMaxUsage();
  240.                 }
  241.                 $res2 $stripe->promotionCodes->create($stripePromoCode);
  242.                 $coupon->setCodeStripeId($res2->id);
  243.             }
  244.         }
  245.         //CREATE
  246.         if(!$coupon->getCodeStripeId() && $coupon->isPublished()){
  247.             $stripePromoCode = [
  248.                 'coupon' => $res->id,
  249.                 'code' => $coupon->getCode(),
  250.                 'expires_at' => $coupon->getExpireDate()->timestamp,
  251.             ];
  252.             if($coupon->getMaxUsage()){
  253.                 $stripePromoCode['max_redemptions'] = $coupon->getMaxUsage();
  254.             }
  255.             $res3 $stripe->promotionCodes->create($stripePromoCode);
  256.             $coupon->setCodeStripeId($res3->id);
  257.         }
  258.     }
  259.     private function deleteCoupon(Coupon $coupon){
  260.         if($coupon->getStripeId()) {
  261.             try{
  262.                 $stripe $this->stripe();
  263.                 $stripe->coupons->update($coupon->getStripeId(),
  264.                     [
  265.                         'active' => false
  266.                     ]
  267.                 );
  268.                 $stripe->promotionCodes->update($coupon->getCodeStripeId(),
  269.                     [ 'active' => false ]
  270.                 );
  271.             }catch(Exception $e){
  272.                 Logger::err('[coupon:'.$coupon->getId().'] unable to delete from stripe');
  273.             }
  274.         }
  275.     }
  276. }