src/PromemoriaBundle/Services/HookObjectEvent.php line 63

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: lucamontanera
  5.  * Date: 2019-03-15
  6.  * Time: 17:32
  7.  */
  8. namespace App\PromemoriaBundle\Services;
  9. use Pimcore\Event\Model\ElementEventInterface;
  10. use Pimcore\Event\Model\DataObjectEvent;
  11. use Pimcore\Event\DataObjectEvents;
  12. class HookObjectEvent {
  13.     public function onPreAdd(ElementEventInterface $e) {
  14.         if($e instanceof DataObjectEvent) {
  15.             $obj $e->getObject();
  16.             if($obj->getType() !== 'folder'){
  17.                 $config \App\PromemoriaBundle\PromemoriaBundle::getConfig();
  18.                 if(isset($config["autoNumDef"])){
  19.                     $this->addNumDef($obj);
  20.                 }
  21.                 $this->addDcTitle($obj);
  22.                 $this->addAutoMeta($obj);
  23.                 $this->onPreUpdate($e);
  24.             }
  25.         }
  26.     }
  27.     public function onPreUpdate(ElementEventInterface $e){
  28.         if($e instanceof DataObjectEvent) {
  29.             $obj $e->getObject();
  30.             if($obj->getType() !== 'folder'){
  31.                 $this->updateCodiceGerarchico($obj);
  32.                 $this->updateDate($obj);
  33.                 $this->updateKey($obj);
  34.             }
  35.         }
  36.     }
  37.     public function onPostAdd(ElementEventInterface $e) {
  38.         if($e instanceof DataObjectEvent) {
  39.             $obj $e->getObject();
  40.             if($obj->getType() !== 'folder'){
  41.                 $this->addAutoTag($obj);
  42.                 $this->syncObject($obj);
  43.                 \App\PromemoriaBundle\PromemoriaService::calculateAccuracy($obj);
  44.             }
  45.         }
  46.     }
  47.     public function onPostUpdate(ElementEventInterface $e) {
  48.         if($e instanceof DataObjectEvent) {
  49.             $obj $e->getObject();
  50.             if($obj->getType() !== 'folder'){
  51.                 $this->syncObject($obj);
  52.             }
  53.         }
  54.     }
  55.     public function onPostDelete(ElementEventInterface $e) {
  56.         if($e instanceof DataObjectEvent) {
  57.             $obj $e->getObject();
  58.             if($obj->getType() !== 'folder'){
  59.                 $this->syncObject($obj"delete");
  60.             }
  61.         }
  62.     }
  63.     private function addDcTitle($obj){
  64.         $title $this->getDcTitle($obj);
  65.         if(empty($title) && method_exists($obj"setDcTitle")){
  66.             $config \App\PromemoriaBundle\PromemoriaBundle::getConfig();
  67.             method_exists($obj'getLocalizedfields') ? $obj->setDcTitle($obj->getKey(), isset($config["defaultLang"]) ? $config["defaultLang"] : 'it') : $obj->setDcTitle($obj->getKey());
  68.         }
  69.     }
  70.     private function addAutoMeta($obj){
  71.         $config \App\PromemoriaBundle\PromemoriaBundle::getConfig();
  72.         if(!empty($config["autometa"])){
  73.             $method "set" ucfirst($config["autometa"]["field"]);
  74.             if(method_exists($obj$method)){
  75.                 $parent $obj->getParent();
  76.                 while($parent->getId() > 1){
  77.                     if($parent->getId() == $config["autometa"]["parent"]){
  78.                         $obj->$method($config["autometa"]["value"]);
  79.                         break;
  80.                     }
  81.                     $parent $parent->getParent();
  82.                 }
  83.             }
  84.         }
  85.     }
  86.     private function addAutoTag($obj){
  87.         $config \App\PromemoriaBundle\PromemoriaBundle::getConfig();
  88.         if(!empty($config["autotag"])){
  89.             $parent $obj->getParent();
  90.             while($parent->getId() > 1){
  91.                 if($parent->getId() == $config["autotag"]["parent"]){
  92.                     $tag \Pimcore\Model\Element\Tag::getById((int)$config["autotag"]["value"]);
  93.                     \Pimcore\Model\Element\Tag::addTagToElement('object'$obj->getId(), $tag);
  94.                     break;
  95.                 }
  96.                 $parent $parent->getParent();
  97.             }
  98.         }
  99.     }
  100.     private function addNumDef($obj){
  101.         $numDef $this->getNumDef($obj);
  102.         if(empty($numDef) && method_exists($obj'setDef_num')){
  103.             $value 1;
  104.             $siblings $obj->getSiblings(["object"], true);
  105.             if(!empty($siblings)){
  106.                 $last end($siblings);
  107.                 if(method_exists($last"getDef_num")) {
  108.                     $value = !empty($last->getDef_num()) ? (intval($last->getDef_num()) + 1) : 1;
  109.                 }
  110.             }
  111.             $obj->setDef_num($value);
  112.         }
  113.     }
  114.     private function updateKey($obj){
  115.         $config \App\PromemoriaBundle\PromemoriaBundle::getConfig();
  116.         $key = [];
  117.         if(!empty($config["prefixKey"]) && method_exists($obj"get" ucfirst($config["prefixKey"]))){
  118.             $key[] = $obj->{"get" ucfirst($config["prefixKey"])}();
  119.         } else if(method_exists($obj"getCodice_gerarchico")){
  120.             $key[] = $obj->getCodice_gerarchico();
  121.         } else {
  122.             $key[] = $this->getNumDef($obj) ?: $this->getNumProv($obj);
  123.         }
  124.         $key[] = $this->getDcTitle($obj);
  125.         if(method_exists($obj"getCodice")){
  126.             $key[] = $obj->getCodice();
  127.         }
  128.         $key[] = "(" $obj->getId() . ")";
  129.         $key implode(" "array_values(array_filter($key)));
  130.         if(!empty($key)){
  131.             $obj->setKey(\Pimcore\Model\Element\Service::getValidKey($key'object'));
  132.         }
  133.     }
  134.     private function updateCodiceGerarchico($obj){
  135.         if(method_exists($obj'setCodice_gerarchico')){
  136.             $codiceGerarchico = [$this->getNumDef($obj)];
  137.             $parent $obj;
  138.             while($parent $parent->getParent()){
  139.                 $codiceGerarchico[] = $this->getNumDef($parent);
  140.             }
  141.             $obj->setCodice_gerarchico(implode("."array_reverse(array_values(array_filter($codiceGerarchico)))));
  142.         }
  143.     }
  144.     private function updateDate($obj){
  145.         if(method_exists($obj"getDatetext") && empty($obj->getDatetext())){
  146.             $date = [];
  147.             $from method_exists($obj"getFrom") ? $obj->getFrom() : null;
  148.             $to method_exists($obj"getTo") ? $obj->getTo() : null;
  149.             if(!empty($from)){
  150.                 $date[] = $from->format("d-m-Y");
  151.                 if(!empty($to)){
  152.                     $date[] = $to->format("d-m-Y");
  153.                 }
  154.                 $date implode(" - "array_values(array_filter($date)));
  155.                 $obj->setDatetext($date);
  156.             }
  157.         }
  158.     }
  159.     private function getNumDef($obj){
  160.         $key = [];
  161.         $key[] = method_exists($obj"getDef_prefix") ? $obj->getDef_prefix() : "";
  162.         $key[] = method_exists($obj"getDef_num") ? $obj->getDef_num() : "";
  163.         $key[] = method_exists($obj"getDef_suffix") ? $obj->getDef_suffix() : "";
  164.         return implode(" "array_values(array_filter($key)));
  165.     }
  166.     private function getNumProv($obj){
  167.         $key = [];
  168.         $key[] = method_exists($obj"getProv_prefix") ? $obj->getProv_prefix() : "";
  169.         $key[] = method_exists($obj"getProv_num") ? $obj->getProv_num() : "";
  170.         $key[] = method_exists($obj"getProv_suffix") ? $obj->getProv_suffix() : "";
  171.         return implode(" "array_values(array_filter($key)));
  172.     }
  173.     private function getDcTitle($obj){
  174.         if(method_exists($obj'getLocalizedfields')){
  175.             $config \App\PromemoriaBundle\PromemoriaBundle::getConfig();
  176.             return method_exists($obj"getDcTitle") ? $obj->getDcTitle(isset($config["defaultLang"]) ? $config["defaultLang"] : 'it') : "";
  177.         }else{
  178.             return method_exists($obj"getDcTitle") ? $obj->getDcTitle() : "";
  179.         }
  180.     }
  181.     private function syncObject($object$action="sync"){
  182.         $object_id $object->getId();
  183.         shell_exec("php /var/www/html/slim-sync/index.php /{$action}/object/{$object_id} >/dev/null 2>/dev/null &");
  184.     }
  185. }