/[openfoncier]/trunk/obj/task.class.php
ViewVC logotype

Diff of /trunk/obj/task.class.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

branches/4.14.0-develop_demat/obj/task.class.php revision 9594 by gmalvolti, Wed Oct 14 10:13:00 2020 UTC branches/4.14.0-develop/obj/task.class.php revision 9950 by softime, Wed Feb 24 09:38:47 2021 UTC
# Line 1  Line 1 
1  <?php  <?php
2  //$Id$  //$Id$
3  //gen openMairie le 14/04/2020 14:11  //gen openMairie le 14/04/2020 14:11
4    
5  require_once "../gen/obj/task.class.php";  require_once "../gen/obj/task.class.php";
6    
7  class task extends task_gen {  class task extends task_gen {
8    
9        const STATUS_DRAFT = 'draft';
10        const STATUS_NEW = 'new';
11        const STATUS_PENDING = 'pending';
12        const STATUS_DONE = 'done';
13        const STATUS_ERROR = 'error';
14        const STATUS_DEBUG = 'debug';
15        const STATUS_ARCHIVED = 'archived';
16    
17      /**      /**
18       * Définition des actions disponibles sur la classe.       * Définition des actions disponibles sur la classe.
19       *       *
# Line 19  class task extends task_gen { Line 27  class task extends task_gen {
27              "view" => "view_json_data",              "view" => "view_json_data",
28              "permission_suffix" => "consulter",              "permission_suffix" => "consulter",
29          );          );
30            $this->class_actions[997] = array(
31                "identifier" => "json_data",
32                "view" => "post_update_task",
33                "permission_suffix" => "modifier",
34            );
35            $this->class_actions[996] = array(
36                "identifier" => "json_data",
37                "view" => "post_add_task",
38                "permission_suffix" => "ajouter",
39            );
40      }      }
41    
42      public function setvalF($val = array()) {      public function setvalF($val = array()) {
43    
44            // // les guillets doubles sont remplacés automatiquement par des simples
45            // // dans core/om_formulaire.clasS.php::recupererPostvar()
46            // // voir le ticket https://dev.atreal.fr/projets/openmairie/tracker/209
47            // // ceci est un hack sale temporaire en attendant résolution du ticket
48            // foreach(array('json_payload', 'timestamp_log') as $key) {
49            //     if (isset($val[$key]) && ! empty($val[$key]) &&
50            //             isset($_POST[$key]) && ! empty($_POST[$key])) {
51            //         $submited_payload = $_POST[$key];
52            //         if (! empty($submited_payload)) {
53            //             $new_payload = str_replace("'", '"', $val[$key]);
54            //             if ($new_payload == $submited_payload ||
55            //                     strpos($submited_payload, '"') === false) {
56            //                 $val[$key] = $new_payload;
57            //             }
58            //             else {
59            //                 $error_msg = sprintf(
60            //                     __("La convertion des guillemets de la payload JSON '%s' ".
61            //                         "n'est pas idempotente (courante: %s, postée: %s, convertie: %s)"),
62            //                     $key, var_export($val[$key], true), var_export($submited_payload, true),
63            //                     var_export($new_payload, true));
64            //                 $this->correct = false;
65            //                 $this->addToMessage($error_msg);
66            //                 $this->addToLog(__METHOD__."() erreur : $error_msg", DEBUG_MODE);
67            //                 return false;
68            //             }
69            //         }
70            //     }
71            // }
72    
73          parent::setvalF($val);          parent::setvalF($val);
74          //  
75            // XXX Ancien code : permet de ne pas avoir d'erreru lors de la modification d'une task
76          if (array_key_exists('timestamp_log', $val) === true) {          if (array_key_exists('timestamp_log', $val) === true) {
77              $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);              $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);
78          }          }
79    
80            // récupération de l'ID de l'objet existant
81            $id = property_exists($this, 'id') ? $this->id : null;
82            if(isset($val[$this->clePrimaire])) {
83                $id = $val[$this->clePrimaire];
84            } elseif(isset($this->valF[$this->clePrimaire])) {
85                $id = $this->valF[$this->clePrimaire];
86            }
87    
88            // MODE MODIFIER
89            if (! empty($id)) {
90    
91                // si aucune payload n'est fourni (devrait toujours être le cas)
92                if (! isset($val['json_payload']) || empty($val['json_payload'])) {
93    
94                    // récupère l'objet existant
95                    $existing = $this->f->findObjectById(get_class($this), $id);
96                    if (! empty($existing)) {
97    
98                        // récupère la payload de l'objet
99                        $val['json_payload'] = $existing->getVal('json_payload');
100                        $this->valF['json_payload'] = $existing->getVal('json_payload');
101                        $this->f->addToLog(__METHOD__."() récupère la payload de la tâche existante ".
102                            "'$id': ".$existing->getVal('json_payload'), EXTRA_VERBOSE_MODE);
103                    }
104                }
105            }
106      }      }
107    
108      /**      /**
# Line 40  class task extends task_gen { Line 116  class task extends task_gen {
116              "state",              "state",
117              "object_id",              "object_id",
118              "dossier",              "dossier",
119                "stream",
120                "json_payload",
121              "timestamp_log",              "timestamp_log",
122          );          );
123      }      }
124    
125      function setType(&$form, $maj) {      function setType(&$form, $maj) {
126          parent::setType($form, $maj);          parent::setType($form, $maj);
127    
128          // Récupération du mode de l'action          // Récupération du mode de l'action
129          $crud = $this->get_action_crud($maj);          $crud = $this->get_action_crud($maj);
130    
131          if ($maj < 2) {          // MODE CREER
132            if ($maj == 0 || $crud == 'create') {
133                $form->setType("state", "select");
134                $form->setType("stream", "select");
135                $form->setType("json_payload", "textarea");
136            }
137            // MDOE MODIFIER
138            if ($maj == 1 || $crud == 'update') {
139              $form->setType("state", "select");              $form->setType("state", "select");
140                $form->setType("stream", "select");
141                $form->setType("json_payload", "jsonprettyprint");
142          }          }
143          if ($maj == 3){          // MODE CONSULTER
144            if ($maj == 3 || $crud == 'read') {
145              $form->setType('dossier', 'link');              $form->setType('dossier', 'link');
146                $form->setType('json_payload', 'jsonprettyprint');
147          }          }
148    
149      }      }
# Line 63  class task extends task_gen { Line 153  class task extends task_gen {
153       */       */
154      function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {      function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {
155          if($maj < 2) {          if($maj < 2) {
             $contenu=array();  
156    
157              $contenu[0][0]="draft";              $contenu = array();
158              $contenu[1][0]=_('draft');              foreach(array('DRAFT', 'NEW', 'PENDING', 'DONE', 'ERROR', 'DEBUG') as $key) {
159              $contenu[0][1]="new";                  $const_name = 'STATUS_'.$key;
160              $contenu[1][1]=_('new');                  $const_value = constant("self::$const_name");
161              $contenu[0][2]="pending";                  $contenu[0][] = $const_value;
162              $contenu[1][2]=_('pending');                  $contenu[1][] = __($const_value);
163              $contenu[0][3]="done";              }
             $contenu[1][3]=_('done');  
             $contenu[0][4]="archived";  
             $contenu[1][4]=_('archived');  
             $contenu[0][5]="error";  
             $contenu[1][5]=_('error');  
             $contenu[0][6]="debug";  
             $contenu[1][6]=_('debug');  
164    
165              $form->setSelect("state", $contenu);              $form->setSelect("state", $contenu);
166    
167                $contenu_stream =array();
168                $contenu_stream[0][0]="input";
169                $contenu_stream[1][0]=_('input');
170                $contenu_stream[0][1]="output";
171                $contenu_stream[1][1]=_('output');
172                $form->setSelect("stream", $contenu_stream);
173    
174          }          }
175    
176          if ($maj == 3) {          if ($maj == 3) {
177              $inst_dossier = $this->f->get_inst__om_dbform(array(              if ($this->getVal('stream') == 'output') {
178                  "obj" => "dossier",                  $inst_dossier = $this->f->get_inst__om_dbform(array(
179                  "idx" => $form->val['dossier'],                      "obj" => "dossier",
180              ));                      "idx" => $form->val['dossier'],
181                                ));
182              if($form->val['type'] == "creation_DA"){  
183                  $obj_link = 'dossier_autorisation';                  if($form->val['type'] == "creation_DA"){
184              } else {                      $obj_link = 'dossier_autorisation';
185                  $obj_link = 'dossier_instruction';                  } else {
186                        $obj_link = 'dossier_instruction';
187                    }
188    
189                    $params = array();
190                    $params['obj'] = $obj_link;
191                    $params['libelle'] = $inst_dossier->getVal('dossier');
192                    $params['title'] = "Consulter le dossier";
193                    $params['idx'] = $form->val['dossier'];
194                    $form->setSelect("dossier", $params);
195              }              }
196            }
197        }
198    
199        /**
200         * SETTER_FORM - setVal (setVal).
201         *
202         * @return void
203         */
204        function setVal(&$form, $maj, $validation, &$dnu1 = null, $dnu2 = null) {
205            // parent::setVal($form, $maj, $validation);
206            //
207            if ($this->getVal('stream') == "output") {
208                $form->setVal('json_payload', $this->view_form_json(true));
209            } else {
210                $form->setVal('json_payload', htmlentities($this->getVal('json_payload')));
211            }
212        }
213    
214              $params = array();      function setLib(&$form, $maj) {
215              $params['obj'] = $obj_link;          parent::setLib($form, $maj);
216              $params['libelle'] = $inst_dossier->getVal('dossier');  
217              $params['title'] = "Consulter le dossier";          // Récupération du mode de l'action
218              $params['idx'] = $form->val['dossier'];          $crud = $this->get_action_crud($maj);
219              $form->setSelect("dossier", $params);  
220            // MODE different de CREER
221            if ($maj != 0 || $crud != 'create') {
222                $form->setLib('json_payload', '');
223          }          }
224      }      }
225    
226      public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {      public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {
227          parent::verifier($val, $dnu1, $dnu2);          $ret = parent::verifier($val, $dnu1, $dnu2);
228          //  
229          if (array_key_exists('timestamp_log', $this->valF) === true          // une tâche entrante doit avoir un type et une payload non-vide
230              && is_array(json_decode($this->valF['timestamp_log'], true)) === false) {          if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
231              //              if (isset($this->valF['type']) === false) {
232              $this->correct = false;                  $this->correct = false;
233              $this->addToMessage(sprintf(                  $this->addToMessage(sprintf(
234                  __("Le champ %s doit être dans un format JSON valide."),                      __("Le champ %s est obligatoire pour une tâche entrante."),
235                  sprintf('<span class="bold">%s</span>', $this->getLibFromField('timestamp_log'))                      sprintf('<span class="bold">%s</span>', $this->getLibFromField('type'))
236              ));                  ));
237                    $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
238                }
239                if (isset($this->valF['json_payload']) === false) {
240                    $this->correct = false;
241                    $this->addToMessage(sprintf(
242                        __("Le champ %s est obligatoire pour une tâche entrante."),
243                        sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
244                    ));
245                    $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
246                }
247          }          }
248    
249            // les JSONs doivent être décodables
250            foreach(array('json_payload', 'timestamp_log') as $key) {
251                if (isset($this->valF[$key]) && ! empty($this->valF[$key]) && (
252                        is_array(json_decode($this->valF[$key], true)) === false
253                        || json_last_error() !== JSON_ERROR_NONE)) {
254                    $this->correct = false;
255                    $champ_text = sprintf('<span class="bold">%s</span>', $this->getLibFromField($key));
256                    $this->addToMessage(sprintf(
257                        __("Le champ %s doit être dans un format JSON valide (erreur: %s).".
258                        "<p>%s valF:</br><pre>%s</pre></p>".
259                        "<p>%s val:</br><pre>%s</pre></p>".
260                        "<p>%s POST:</br><pre>%s</pre></p>".
261                        "<p>%s submitted POST value:</br><pre>%s</pre></p>"),
262                        $champ_text,
263                        json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'),
264                        $champ_text,
265                        $this->valF[$key],
266                        $champ_text,
267                        $val[$key],
268                        $champ_text,
269                        isset($_POST[$key]) ? $_POST[$key] : '',
270                        $champ_text,
271                        $this->f->get_submitted_post_value($key)
272                    ));
273                    $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);
274                }
275            }
276    
277            // une tâche entrante doit avoir une payload avec les clés requises
278            if ($this->correct && (isset($this->valF['stream']) === false ||
279                                   $this->valF['stream'] == 'input')) {
280    
281                // décode la payload JSON
282                $json_payload = json_decode($this->valF['json_payload'], true);
283    
284                // défini une liste de chemin de clés requises
285                $paths = array(
286                    'external_uids/dossier'
287                );
288    
289                // tâche de type création de DI/DA
290                if (isset($this->valF['type']) !== false && $this->valF['type'] == 'create_DI_for_consultation') {
291    
292                    $paths = array_merge($paths, array(
293                        'dossier/dossier',
294                        'dossier/dossier_autorisation_type_detaille_code',
295                        'dossier/date_demande',
296                        'dossier/depot_electronique',
297                    ));
298    
299                    // si l'option commune est activée (mode MC)
300                    if ($this->f->is_option_dossier_commune_enabled()) {
301                        $paths[] = 'dossier/insee';
302                    }
303    
304                    // présence d'un moyen d'identifier la collectivité/le service
305                    if (! isset($json_payload['dossier']['acteur']) &&
306                            ! isset($json_payload['dossier']['om_collectivite'])) {
307                        $this->correct = false;
308                        $this->addToMessage(sprintf(
309                            __("L'une des clés %s ou %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
310                            sprintf('<span class="bold">%s</span>', 'dossier/acteur'),
311                            sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),
312                            sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
313                        ));
314                        $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
315                    }
316                }
317    
318                // pas d'erreur déjà trouvée
319                if($this->correct) {
320    
321                    // pour chaque chemin
322                    foreach($paths as $path) {
323    
324                        // décompose le chemin
325                        $tokens = explode('/', $path);
326                        $cur_depth = $json_payload;
327    
328                        // descend au et à mesure dans l'arborescence du chemin
329                        foreach($tokens as $token) {
330    
331                            // en vérifiant que chaque élément du chemin est défini et non-nul
332                            if (isset($cur_depth[$token]) === false) {
333    
334                                // sinon on produit une erreur
335                                $this->correct = false;
336                                $this->addToMessage(sprintf(
337                                    __("La clé %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
338                                    sprintf('<span class="bold">%s</span>', $path),
339                                    sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
340                                ));
341                                $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
342                                break 2;
343                            }
344                            $cur_depth = $cur_depth[$token];
345                        }
346                    }
347                }
348            }
349    
350            return $ret && $this->correct;
351      }      }
352    
353      protected function task_exists(string $type, string $object_id) {      protected function task_exists(string $type, string $object_id) {
# Line 127  class task extends task_gen { Line 359  class task extends task_gen {
359              AND object_id = \'%4$s\'              AND object_id = \'%4$s\'
360              ',              ',
361              DB_PREFIXE,              DB_PREFIXE,
362              'done',              self::STATUS_DONE,
363              $type,              $type,
364              $object_id              $object_id
365          );          );
# Line 139  class task extends task_gen { Line 371  class task extends task_gen {
371      }      }
372    
373      /**      /**
374         * TRIGGER - triggerajouter.
375         *
376         * @param string $id
377         * @param null &$dnu1 @deprecated  Ne pas utiliser.
378         * @param array $val Tableau des valeurs brutes.
379         * @param null $dnu2 @deprecated  Ne pas utiliser.
380         *
381         * @return boolean
382         */
383        function triggerajouter($id, &$dnu1 = null, $val = array(), $dnu2 = null) {
384    
385            // tâche entrante
386            if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
387    
388                // décode la paylod JSON pour extraire les données métiers à ajouter
389                // en tant que métadonnées de la tâche
390                $json_payload = json_decode($this->valF['json_payload'], true);
391    
392                // si la tâche possède déjà une clé dossier
393                if (isset($json_payload['dossier']['dossier']) &&
394                        ! empty($json_payload['dossier']['dossier'])) {
395                    $this->valF["dossier"] = $json_payload['dossier']['dossier'];
396                }
397            }
398        }
399    
400        /**
401       * TREATMENT - add_task       * TREATMENT - add_task
402       * Ajoute un enregistrement.       * Ajoute un enregistrement.
403       *       *
# Line 147  class task extends task_gen { Line 406  class task extends task_gen {
406       */       */
407      public function add_task($params = array()) {      public function add_task($params = array()) {
408          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
409    
410            // Vérifie si la task doit être ajoutée en fonction du mode de l'application,
411            // seulement pour les tasks output
412            $task_types_si = array(
413                'creation_DA',
414                'creation_DI',
415                'depot_DI',
416                'modification_DI',
417                'qualification_DI',
418                'decision_DI',
419                'incompletude_DI',
420                'completude_DI',
421                'ajout_piece',
422                'add_piece',
423            );
424            $task_types_sc = array(
425                'create_DI_for_consultation',
426                'avis_consultation',
427                'pec_metier_consultation',
428            );
429            $stream = isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output';
430            if ($stream === 'output'
431                && isset($params['val']['type']) === true
432                && $this->f->is_option_mode_service_consulte_enabled() === true
433                && in_array($params['val']['type'], $task_types_sc) === false) {
434                //
435                return $this->end_treatment(__METHOD__, true);
436            }
437            if ($stream === 'output'
438                && isset($params['val']['type']) === true
439                && $this->f->is_option_mode_service_consulte_enabled() === false
440                && in_array($params['val']['type'], $task_types_si) === false) {
441                //
442                return $this->end_treatment(__METHOD__, true);
443            }
444    
445          $timestamp_log = json_encode(array(          $timestamp_log = json_encode(array(
446              'creation_date' => date('Y-m-d H:i:s'),              'creation_date' => date('Y-m-d H:i:s'),
447          ));          ));
448    
449            // Si la tâche est de type ajout_piece et de stream input alors on ajoute le fichier
450            // et on ajoute l'uid dans le champ json_payload avant l'ajout de la tâche
451            if (isset($params['val']['type'])
452                && $params['val']['type'] == "add_piece"
453                && isset($params['val']['stream'])
454                && $params['val']['stream'] == "input" ) {
455                //
456                $json_payload = json_decode($params['val']['json_payload'], true);
457                $document_numerise = $json_payload['document_numerise'];
458                $file_content = base64_decode($document_numerise["file_content"]);
459                if ($file_content === false){
460                    $this->addToMessage(__("Le contenu du fichier lié à la tâche n'a pas pu etre recupere."));
461                    return $this->end_treatment(__METHOD__, false);
462                }
463                $metadata = array(
464                    "filename" => $document_numerise['nom_fichier'],
465                    "size" => strlen($file_content),
466                    "mimetype" => $document_numerise['file_content_type'],
467                    "date_creation" => $document_numerise['date_creation'],
468                );
469                $uid_fichier = $this->f->storage->create($file_content, $metadata, "from_content");
470                if ($uid_fichier === OP_FAILURE) {
471                    $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));
472                    return $this->end_treatment(__METHOD__, false);
473                }
474                $json_payload["document_numerise"]["uid"] = $uid_fichier;
475                // Le fichier a été ajouté nous n'avons plus besoin du champ file_content dans la payload
476                unset($json_payload["document_numerise"]["file_content"]);
477                $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
478            }
479    
480          // Mise à jour du DI          // Mise à jour du DI
481          $valF = array(          $valF = array(
482              'task' => '',              'task' => '',
483              'type' => $params['val']['type'],              'type' => $params['val']['type'],
484              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
485              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : 'new',              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,
486              'object_id' => $params['val']['object_id'],              'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',
487              'dossier' => $params['val']['dossier'],              'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',
488          );              'stream' => $stream,
489          $task_exists = $this->task_exists($valF['type'], $valF['object_id']);              'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',
490          if ($valF['type'] === 'modification_DI' && $task_exists === false) {          );
491              $task_exists = $this->task_exists('creation_DI', $valF['object_id']);  
492          }          // tâche sortante
493          if ($task_exists !== false) {          if($valF["stream"] == "output"){
494              $inst_task = $this->f->get_inst__om_dbform(array(  
495                  "obj" => "task",              // TODO expliquer ce code
496                  "idx" => $task_exists,              $task_exists = $this->task_exists($valF['type'], $valF['object_id']);
497              ));              if ($valF['type'] === 'modification_DI' && $task_exists === false) {
498              $update_state = $inst_task->getVal('state');                  $task_exists = $this->task_exists('creation_DI', $valF['object_id']);
499              if (isset($params['update_val']['state']) === true) {              }
500                  $update_state = $params['update_val']['state'];              if ($task_exists !== false) {
501              }                  $inst_task = $this->f->get_inst__om_dbform(array(
502              $update_params = array(                      "obj" => "task",
503                  'val' => array(                      "idx" => $task_exists,
504                      'state' => $update_state,                  ));
505                  ),                  $update_state = $inst_task->getVal('state');
506              );                  if (isset($params['update_val']['state']) === true) {
507              return $inst_task->update_task($update_params);                      $update_state = $params['update_val']['state'];
508                    }
509                    $update_params = array(
510                        'val' => array(
511                            'state' => $update_state,
512                        ),
513                    );
514                    return $inst_task->update_task($update_params);
515                }
516          }          }
517    
518          $add = $this->ajouter($valF);          $add = $this->ajouter($valF);
519            $this->addToLog(__METHOD__."(): retour de l'ajout de tâche: ".var_export($add, true), VERBOSE_MODE);
520          if ($add === false) {          if ($add === false) {
521              $this->addToLog($this->msg, DEBUG_MODE);              $this->addToLog(__METHOD__."(): ".$this->msg, DEBUG_MODE);
522              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
523          }          }
524          return $this->end_treatment(__METHOD__, true);          return $this->end_treatment(__METHOD__, true);
# Line 198  class task extends task_gen { Line 535  class task extends task_gen {
535          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
536          $timestamp_log = $this->get_timestamp_log();          $timestamp_log = $this->get_timestamp_log();
537          if ($timestamp_log === false) {          if ($timestamp_log === false) {
538              $this->addToLog(__('XXX'), DEBUG_MODE);              $this->addToLog(__METHOD__."(): erreur timestamp log", DEBUG_MODE);
539              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
540          }          }
541          array_push($timestamp_log, array(          array_push($timestamp_log, array(
# Line 213  class task extends task_gen { Line 550  class task extends task_gen {
550              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
551              'state' => $params['val']['state'],              'state' => $params['val']['state'],
552              'object_id' => $this->getVal('object_id'),              'object_id' => $this->getVal('object_id'),
553                'stream' => $this->getVal('stream'),
554              'dossier' => $this->getVal('dossier'),              'dossier' => $this->getVal('dossier'),
555                'json_payload' => $this->getVal('json_payload'),
556          );          );
557          $update = $this->modifier($valF);          $update = $this->modifier($valF);
558          if ($update === false) {          if ($update === false) {
# Line 226  class task extends task_gen { Line 565  class task extends task_gen {
565      /**      /**
566       * Récupère le journal d'horodatage dans le champ timestamp_log de       * Récupère le journal d'horodatage dans le champ timestamp_log de
567       * l'enregistrement instancié.       * l'enregistrement instancié.
568       *       *
569       * @param  array  $params Tableau des paramètres       * @param  array  $params Tableau des paramètres
570       * @return array sinon false en cas d'erreur       * @return array sinon false en cas d'erreur
571       */       */
# Line 284  class task extends task_gen { Line 623  class task extends task_gen {
623          $list_tasks = array();          $list_tasks = array();
624          foreach ($res['result'] as $task) {          foreach ($res['result'] as $task) {
625              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);
626              $task['dossier'] = $task['object_id'];              $task['dossier'] = $task['dossier'];
627              if ($this->get_lien_objet_by_type($task['type']) === 'document_numerise') {              if ($task['type'] === 'ajout_piece') {
628                  $val_dn = $this->get_document_numerise_data($task['object_id']);                  $val_dn = $this->get_document_numerise_data($task['object_id']);
629                  $task['dossier'] = $val_dn['dossier'];              }
630                if ($task['stream'] === 'output') {
631                    $task['external_uids'] = $this->get_all_external_uids($task['dossier']);
632              }              }
633              $list_tasks[$task['task']] = $task;              $list_tasks[$task['task']] = $task;
634          }          }
# Line 441  class task extends task_gen { Line 782  class task extends task_gen {
782          return $inst_external_uid->getVal('external_uid');          return $inst_external_uid->getVal('external_uid');
783      }      }
784    
785        protected function get_all_external_uids($fk_idx) {
786            $link_objects = array(
787                'dossier_autorisation',
788                'dossier',
789                'consultation',
790                'document_numerise',
791            );
792            $val_external_uid = array();
793            foreach ($link_objects as $link_object) {
794                $external_uid = $this->get_external_uid($fk_idx, $link_object);
795                if ($external_uid !== '' && $external_uid !== null) {
796                    $val_external_uid[$link_object] = $external_uid;
797                }
798            }
799            return $val_external_uid;
800        }
801    
802      protected function get_demandeurs_data(string $dossier) {      protected function get_demandeurs_data(string $dossier) {
803          $val_demandeur = array();          $val_demandeur = array();
804          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
# Line 473  class task extends task_gen { Line 831  class task extends task_gen {
831          return $val_architecte;          return $val_architecte;
832      }      }
833    
834      protected function get_instruction_data(string $dossier, $type = 'decision') {      protected function get_instruction_data(string $dossier, $type = 'decision', $extra_params = array()) {
835          $val_instruction = null;          $val_instruction = null;
836          $instruction_with_doc = null;          $instruction_with_doc = null;
837          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
# Line 487  class task extends task_gen { Line 845  class task extends task_gen {
845          if ($type === 'incompletude') {          if ($type === 'incompletude') {
846              $idx = $inst_di->get_last_instruction_incompletude();              $idx = $inst_di->get_last_instruction_incompletude();
847          }          }
848            // XXX Permet de récupérer l'instruction par son identifiant
849            if ($type === 'with-id') {
850                $idx = $extra_params['with-id'];
851            }
852          $inst_instruction = $this->f->get_inst__om_dbform(array(          $inst_instruction = $this->f->get_inst__om_dbform(array(
853              "obj" => "instruction",              "obj" => "instruction",
854              "idx" => $idx,              "idx" => $idx,
# Line 532  class task extends task_gen { Line 894  class task extends task_gen {
894    
895      protected function sort_instruction_data(array $values, array $res) {      protected function sort_instruction_data(array $values, array $res) {
896          $fields = array(          $fields = array(
897                "date_evenement",
898              "date_envoi_signature",              "date_envoi_signature",
899              "date_retour_signature",              "date_retour_signature",
900              "date_envoi_rar",              "date_envoi_rar",
# Line 541  class task extends task_gen { Line 904  class task extends task_gen {
904              "signataire_arrete",              "signataire_arrete",
905              "om_fichier_instruction",              "om_fichier_instruction",
906              "tacite",              "tacite",
907                "lettretype",
908          );          );
909          foreach ($values as $key => $value) {          foreach ($values as $key => $value) {
910              if (in_array($key, $fields) === true) {              if (in_array($key, $fields) === true) {
# Line 591  class task extends task_gen { Line 955  class task extends task_gen {
955          return $val_dp;          return $val_dp;
956      }      }
957    
958      protected function view_form_json() {      protected function get_avis_decision_data(string $dossier) {
959          // Mise à jour des valeurs          $inst_di = $this->f->get_inst__om_dbform(array(
960          if ($this->f->get_submitted_post_value('valid') === 'true'              "obj" => "dossier",
961              && $this->f->get_submitted_post_value('state') !== null) {              "idx" => $dossier,
962            ));
963            $ad = $inst_di->getVal('avis_decision');
964            $val_ad = array();
965            $inst_ad = $this->f->get_inst__om_dbform(array(
966                "obj" => "avis_decision",
967                "idx" => $ad,
968            ));
969            $val_ad = $inst_ad->get_json_data();
970            $val_ad['txAvis'] = "Voir document joint";
971            if (isset($val_ad['tacite']) ===  true
972                && $val_ad['tacite'] === 't') {
973              //              //
974              $params = array(              $val_ad['txAvis'] = "Sans objet";
                 'val' => array(  
                     'state' => $this->f->get_submitted_post_value('state')  
                 ),  
             );  
             $update = $this->update_task($params);  
             $message_class = "valid";  
             $message = $this->msg;  
             if ($update === false) {  
                 $this->addToLog($this->msg, DEBUG_MODE);  
                 $message_class = "error";  
                 $message = sprintf(  
                     '%s %s',  
                     __('Impossible de mettre à jour la tâche.'),  
                     __('Veuillez contacter votre administrateur.')  
                 );  
             }  
             $this->f->displayMessage($message_class, $message);  
975          }          }
976          //          return $val_ad;
977          if ($this->f->get_submitted_post_value('valid') === 'true'      }
978              && $this->f->get_submitted_post_value('external_uid') !== null) {  
979              //      protected function get_signataire_arrete_data(string $sa) {
980              $inst_lien = $this->f->get_inst__om_dbform(array(          $inst_sa = $this->f->get_inst__om_dbform(array(
981                  "obj" => "lien_id_interne_uid_externe",              "obj" => "signataire_arrete",
982                  "idx" => ']',              "idx" => $sa,
983              ));          ));
984              $valF = array(          $val_sa = array_combine($inst_sa->champs, $inst_sa->val);
985                  'lien_id_interne_uid_externe' => '',          foreach ($val_sa as $key => $value) {
986                  'object' => $this->get_lien_objet_by_type($this->getVal('type')),              $val_sa[$key] = strip_tags($value);
                 'object_id' => $this->getVal('object_id'),  
                 'external_uid' => $this->f->get_submitted_post_value('external_uid'),  
             );  
             $add = $inst_lien->ajouter($valF);  
             $message_class = "valid";  
             $message = $inst_lien->msg;  
             if ($add === false) {  
                 $this->addToLog($inst_lien->msg, DEBUG_MODE);  
                 $message_class = "error";  
                 $message = sprintf(  
                     '%s %s',  
                     __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),  
                     __('Veuillez contacter votre administrateur.')  
                 );  
             }  
             $this->f->displayMessage($message_class, $message);  
987          }          }
988            return $val_sa;
989        }
990    
991        protected function view_form_json($in_field = false) {
992          //          //
993          if ($this->f->get_submitted_post_value('valid') === null) {          if ($this->f->get_submitted_post_value('valid') === null) {
994              // Liste des valeurs à afficher              // Liste des valeurs à afficher
# Line 662  class task extends task_gen { Line 1007  class task extends task_gen {
1007                  $val['dossier_autorisation_parcelle'] = $this->get_parcelles_data('dossier_autorisation', $val['dossier_autorisation']['dossier_autorisation']);                  $val['dossier_autorisation_parcelle'] = $this->get_parcelles_data('dossier_autorisation', $val['dossier_autorisation']['dossier_autorisation']);
1008                  $val_external_uid = array();                  $val_external_uid = array();
1009                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier_autorisation']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier_autorisation']['dossier_autorisation'], 'dossier_autorisation');
1010                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1011              }              }
1012              //              //
1013              if ($this->getVal('type') === 'creation_DI'              if ($this->getVal('type') === 'creation_DI'
# Line 678  class task extends task_gen { Line 1023  class task extends task_gen {
1023                  $val_external_uid = array();                  $val_external_uid = array();
1024                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1025                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1026                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1027              }              }
1028              //              //
1029              if ($this->getVal('type') === 'qualification_DI') {              if ($this->getVal('type') === 'qualification_DI') {
# Line 686  class task extends task_gen { Line 1031  class task extends task_gen {
1031                  $val_external_uid = array();                  $val_external_uid = array();
1032                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1033                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1034                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1035              }              }
1036              //              //
1037              if ($this->getVal('type') === 'ajout_piece') {              if ($this->getVal('type') === 'ajout_piece') {
# Line 696  class task extends task_gen { Line 1041  class task extends task_gen {
1041                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1042                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1043                  $val_external_uid['document_numerise'] = $this->get_external_uid($val['document_numerise']['document_numerise'], 'document_numerise');                  $val_external_uid['document_numerise'] = $this->get_external_uid($val['document_numerise']['document_numerise'], 'document_numerise');
1044                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1045              }              }
1046              //              //
1047              if ($this->getVal('type') === 'decision_DI') {              if ($this->getVal('type') === 'decision_DI') {
1048                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1049                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier']);                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1050                  $val_external_uid = array();                  $val_external_uid = array();
1051                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1052                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1053                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1054              }              }
1055              //              //
1056              if ($this->getVal('type') === 'incompletude_DI') {              if ($this->getVal('type') === 'incompletude_DI') {
1057                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1058                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'incompletude');                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1059                  $val_external_uid = array();                  $val_external_uid = array();
1060                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1061                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1062                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1063              }              }
1064              //              //
1065              if ($this->getVal('type') === 'completude_DI') {              if ($this->getVal('type') === 'completude_DI') {
1066                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1067                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'completude');                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1068                  $val_external_uid = array();                  $val_external_uid = array();
1069                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1070                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1071                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1072                }
1073                //
1074                if ($this->getVal('type') === 'pec_metier_consultation') {
1075                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1076                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1077                    $val_external_uid = array();
1078                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1079                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1080                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1081                    $val['external_uids'] = $val_external_uid;
1082                }
1083                //
1084                if ($this->getVal('type') === 'avis_consultation') {
1085                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1086                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1087                    $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1088                    if (isset($val['instruction']['signataire_arrete']) === true) {
1089                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1090                    }
1091                    $val_external_uid = array();
1092                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1093                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1094                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1095                    $val['external_uids'] = $val_external_uid;
1096              }              }
1097    
1098              // Liste des valeurs affichée en JSON              if ($in_field === true) {
1099              printf(json_encode($val, JSON_UNESCAPED_SLASHES));                  return json_encode($val, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
1100                } else {
1101                    // Liste des valeurs affichée en JSON
1102                    printf(json_encode($val, JSON_UNESCAPED_SLASHES));
1103                }
1104          }          }
1105      }      }
1106    
1107      protected function get_lien_objet_by_type($type) {      function post_update_task() {
1108            // Mise à jour des valeurs
1109          //          //
1110          $objet = '';          $params = array(
1111          if ($type === 'creation_DA') {              'val' => array(
1112              $objet = 'dossier_autorisation';                  'state' => $this->f->get_submitted_post_value('state')
1113          }              ),
1114          if ($type === 'creation_DI'          );
1115              || $type === 'depot_DI'          $update = $this->update_task($params);
1116              || $type === 'modification_DI'          $message_class = "valid";
1117              || $type === 'qualification_DI'          $message = $this->msg;
1118              || $type === 'decision_DI'          if ($update === false) {
1119              || $type === 'incompletude_DI'              $this->addToLog($this->msg, DEBUG_MODE);
1120              || $type === 'completude_DI') {              $message_class = "error";
1121                $message = sprintf(
1122                    '%s %s',
1123                    __('Impossible de mettre à jour la tâche.'),
1124                    __('Veuillez contacter votre administrateur.')
1125                );
1126            }
1127            $this->f->displayMessage($message_class, $message);
1128    
1129            // Sauvegarde des uid externes retournés s'ils ne le sont pas encore
1130            if (is_array($this->f->get_submitted_post_value('external_uids')) === true) {
1131              //              //
1132              $objet = 'dossier';              foreach ($this->f->get_submitted_post_value('external_uids') as $object => $external_uid) {
1133                    //
1134                    if (in_array($object, $this->get_objects_by_task_type($this->getVal('type'))) === true) {
1135                        //
1136                        $inst_lien = $this->f->get_inst__om_dbform(array(
1137                            "obj" => "lien_id_interne_uid_externe",
1138                            "idx" => ']',
1139                        ));
1140                        if ($inst_lien->is_exists($object, $document_numerise_id, $external_uid, $attachment_values['dossier']) === false) {
1141                            //
1142                            $valF = array(
1143                                'lien_id_interne_uid_externe' => '',
1144                                'object' => $object,
1145                                'object_id' => $this->getVal('object_id'),
1146                                'external_uid' => $external_uid,
1147                                'dossier' => $this->getVal('dossier'),
1148                            );
1149                            $add = $inst_lien->ajouter($valF);
1150                            $message_class = "valid";
1151                            $message = $inst_lien->msg;
1152                            if ($add === false) {
1153                                $this->addToLog($inst_lien->msg, DEBUG_MODE);
1154                                $message_class = "error";
1155                                $message = sprintf(
1156                                    '%s %s',
1157                                    __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),
1158                                    __('Veuillez contacter votre administrateur.')
1159                                );
1160                            }
1161                            $this->f->displayMessage($message_class, $message);
1162                        }
1163                    }
1164                }
1165            }
1166        }
1167    
1168        function post_add_task() {
1169            // TODO Tester de remplacer la ligne de json_payload par un $_POST
1170            $result = $this->add_task(array(
1171                'val' => array(
1172                    'stream' => 'input',
1173                    'json_payload' => html_entity_decode($this->f->get_submitted_post_value('json_payload')),
1174                    'type' => $this->f->get_submitted_post_value('type'),
1175                )
1176            ));
1177            $message = $this->msg;
1178            $message_class = "valid";
1179            if ($result === false){
1180                $this->addToLog($this->msg, DEBUG_MODE);
1181                $message_class = "error";
1182                $message = sprintf(
1183                    '%s %s',
1184                    __('Impossible d\'ajouter la tâche.'),
1185                    __('Veuillez contacter votre administrateur.')
1186                );
1187            }
1188            $this->f->displayMessage($message_class, $message);
1189        }
1190    
1191        function setLayout(&$form, $maj) {
1192    
1193            // Récupération du mode de l'action
1194            $crud = $this->get_action_crud($maj);
1195    
1196            // MODE different de CREER
1197            if ($maj != 0 || $crud != 'create') {
1198                $form->setBloc('json_payload', 'D', '', 'col_6');
1199                    $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");
1200                $form->setBloc('json_payload', 'F');
1201          }          }
1202          if ($type === 'ajout_piece') {          $form->setBloc('timestamp_log', 'DF', '', 'col_9');
1203              $objet = 'document_numerise';      }
1204    
1205        /**
1206         * [get_objects_by_task_type description]
1207         * @param  [type] $type [description]
1208         * @return [type]       [description]
1209         */
1210        function get_objects_by_task_type($type) {
1211            $objects = array();
1212            if (in_array($type, array('creation_DA', )) === true) {
1213                $objects = array('dossier_autorisation', );
1214            }
1215            if (in_array($type, array('creation_DI', 'depot_DI', 'notification_DI', 'qualification_DI', )) === true) {
1216                $objects = array('dossier', );
1217            }
1218            if (in_array($type, array('create_DI_for_consultation', )) === true) {
1219                $objects = array('dossier', 'dossier_consultation', );
1220          }          }
1221          return $objet;          if (in_array($type, array('decision_DI', 'incompletude_DI', 'completude_DI', )) === true) {
1222                $objects = array('instruction', );
1223            }
1224            if (in_array($type, array('pec_metier_consultation', )) === true) {
1225                $objects = array('pec_dossier_consultation', );
1226            }
1227            if (in_array($type, array('avis_consultation', )) === true) {
1228                $objects = array('avis_dossier_consultation', );
1229            }
1230            if (in_array($type, array('ajout_piece', 'add_piece', )) === true) {
1231                $objects = array('piece', );
1232            }
1233            return $objects;
1234      }      }
1235    
1236  }  }

Legend:
Removed from v.9594  
changed lines
  Added in v.9950

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26