/[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 9746 by gmalvolti, Tue Dec 8 12:47:25 2020 UTC branches/5.0.0-develop/obj/task.class.php revision 10362 by cgarcin, Thu Sep 2 15:00:31 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         * Liste des types de tâche concernant les services instructeurs
19         */
20        const TASK_TYPE_SI = array(
21            'creation_DA',
22            'creation_DI',
23            'depot_DI',
24            'modification_DI',
25            'qualification_DI',
26            'decision_DI',
27            'incompletude_DI',
28            'completude_DI',
29            'ajout_piece',
30            'add_piece',
31            'creation_consultation',
32            'modification_DA',
33            'create_DI',
34        );
35    
36        /**
37         * Liste des types de tâche concernant les services consultés
38         */
39        const TASK_TYPE_SC = array(
40            'create_DI_for_consultation',
41            'avis_consultation',
42            'pec_metier_consultation',
43            'create_message',
44        );
45    
46      /**      /**
47       * Définition des actions disponibles sur la classe.       * Définition des actions disponibles sur la classe.
48       *       *
# Line 21  class task extends task_gen { Line 58  class task extends task_gen {
58          );          );
59          $this->class_actions[997] = array(          $this->class_actions[997] = array(
60              "identifier" => "json_data",              "identifier" => "json_data",
61              "view" => "view_update_json_data",              "view" => "post_update_task",
62              "permission_suffix" => "modifier",              "permission_suffix" => "modifier",
63          );          );
64          $this->class_actions[996] = array(          $this->class_actions[996] = array(
65              "identifier" => "json_data",              "identifier" => "json_data",
66              "view" => "view_add_json_data",              "view" => "post_add_task",
67              "permission_suffix" => "ajouter",              "permission_suffix" => "ajouter",
68          );          );
69      }      }
70    
71      public function setvalF($val = array()) {      public function setvalF($val = array()) {
72    
73            // // les guillets doubles sont remplacés automatiquement par des simples
74            // // dans core/om_formulaire.clasS.php::recupererPostvar()
75            // // voir le ticket https://dev.atreal.fr/projets/openmairie/tracker/209
76            // // ceci est un hack sale temporaire en attendant résolution du ticket
77            // foreach(array('json_payload', 'timestamp_log') as $key) {
78            //     if (isset($val[$key]) && ! empty($val[$key]) &&
79            //             isset($_POST[$key]) && ! empty($_POST[$key])) {
80            //         $submited_payload = $_POST[$key];
81            //         if (! empty($submited_payload)) {
82            //             $new_payload = str_replace("'", '"', $val[$key]);
83            //             if ($new_payload == $submited_payload ||
84            //                     strpos($submited_payload, '"') === false) {
85            //                 $val[$key] = $new_payload;
86            //             }
87            //             else {
88            //                 $error_msg = sprintf(
89            //                     __("La convertion des guillemets de la payload JSON '%s' ".
90            //                         "n'est pas idempotente (courante: %s, postée: %s, convertie: %s)"),
91            //                     $key, var_export($val[$key], true), var_export($submited_payload, true),
92            //                     var_export($new_payload, true));
93            //                 $this->correct = false;
94            //                 $this->addToMessage($error_msg);
95            //                 $this->addToLog(__METHOD__."() erreur : $error_msg", DEBUG_MODE);
96            //                 return false;
97            //             }
98            //         }
99            //     }
100            // }
101    
102          parent::setvalF($val);          parent::setvalF($val);
103          //  
104            // XXX Ancien code : permet de ne pas avoir d'erreru lors de la modification d'une task
105          if (array_key_exists('timestamp_log', $val) === true) {          if (array_key_exists('timestamp_log', $val) === true) {
106              $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);              $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);
107          }          }
108    
109            // récupération de l'ID de l'objet existant
110            $id = property_exists($this, 'id') ? $this->id : null;
111            if(isset($val[$this->clePrimaire])) {
112                $id = $val[$this->clePrimaire];
113            } elseif(isset($this->valF[$this->clePrimaire])) {
114                $id = $this->valF[$this->clePrimaire];
115            }
116    
117            // MODE MODIFIER
118            if (! empty($id)) {
119    
120                // si aucune payload n'est fourni (devrait toujours être le cas)
121                if (! isset($val['json_payload']) || empty($val['json_payload'])) {
122    
123                    // récupère l'objet existant
124                    $existing = $this->f->findObjectById(get_class($this), $id);
125                    if (! empty($existing)) {
126    
127                        // récupère la payload de l'objet
128                        $val['json_payload'] = $existing->getVal('json_payload');
129                        $this->valF['json_payload'] = $existing->getVal('json_payload');
130                        $this->f->addToLog(__METHOD__."() récupère la payload de la tâche existante ".
131                            "'$id': ".$existing->getVal('json_payload'), EXTRA_VERBOSE_MODE);
132                    }
133                }
134            }
135      }      }
136    
137      /**      /**
# Line 58  class task extends task_gen { Line 153  class task extends task_gen {
153    
154      function setType(&$form, $maj) {      function setType(&$form, $maj) {
155          parent::setType($form, $maj);          parent::setType($form, $maj);
156    
157          // Récupération du mode de l'action          // Récupération du mode de l'action
158          $crud = $this->get_action_crud($maj);          $crud = $this->get_action_crud($maj);
159    
160          if ($maj < 2) {          // MODE CREER
161            if ($maj == 0 || $crud == 'create') {
162                $form->setType("state", "select");
163                $form->setType("stream", "select");
164                $form->setType("json_payload", "textarea");
165            }
166            // MDOE MODIFIER
167            if ($maj == 1 || $crud == 'update') {
168              $form->setType("state", "select");              $form->setType("state", "select");
169              $form->setType("stream", "select");              $form->setType("stream", "select");
170              $form->setType("json_payload", "jsonprettyprint");              $form->setType("json_payload", "jsonprettyprint");
171          }          }
172          if ($maj == 3){          // MODE CONSULTER
173            if ($maj == 3 || $crud == 'read') {
174              $form->setType('dossier', 'link');              $form->setType('dossier', 'link');
175              $form->setType('json_payload', 'jsonprettyprint');              $form->setType('json_payload', 'jsonprettyprint');
176          }          }
# Line 78  class task extends task_gen { Line 182  class task extends task_gen {
182       */       */
183      function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {      function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {
184          if($maj < 2) {          if($maj < 2) {
             $contenu=array();  
185    
186              $contenu[0][0]="draft";              $contenu = array();
187              $contenu[1][0]=_('draft');              foreach(array('DRAFT', 'NEW', 'PENDING', 'DONE', 'ERROR', 'DEBUG') as $key) {
188              $contenu[0][1]="new";                  $const_name = 'STATUS_'.$key;
189              $contenu[1][1]=_('new');                  $const_value = constant("self::$const_name");
190              $contenu[0][2]="pending";                  $contenu[0][] = $const_value;
191              $contenu[1][2]=_('pending');                  $contenu[1][] = __($const_value);
192              $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');  
193    
194              $form->setSelect("state", $contenu);              $form->setSelect("state", $contenu);
195    
# Line 112  class task extends task_gen { Line 208  class task extends task_gen {
208                      "obj" => "dossier",                      "obj" => "dossier",
209                      "idx" => $form->val['dossier'],                      "idx" => $form->val['dossier'],
210                  ));                  ));
211                    
212                  if($form->val['type'] == "creation_DA"){                  if($form->val['type'] == "creation_DA"
213                        || $form->val['type'] == "modification_DA"){
214                        //
215                      $obj_link = 'dossier_autorisation';                      $obj_link = 'dossier_autorisation';
216                  } else {                  } else {
217                      $obj_link = 'dossier_instruction';                      $obj_link = 'dossier_instruction';
# Line 140  class task extends task_gen { Line 238  class task extends task_gen {
238          if ($this->getVal('stream') == "output") {          if ($this->getVal('stream') == "output") {
239              $form->setVal('json_payload', $this->view_form_json(true));              $form->setVal('json_payload', $this->view_form_json(true));
240          } else {          } else {
241              if ($this->getVal('type') == 'ajout_piece'){              $form->setVal('json_payload', htmlentities($this->getVal('json_payload')));
                 // On modifie la valeur du champ "file_content" afin de tronquer le base64  
                 $json_payload = json_decode($this->getVal("json_payload"), true);  
                 $json_payload["document_numerise"]["file_content"] = substr($json_payload["document_numerise"]["file_content"], 0, 64)."[...]";  
                 $json_payload_result = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES );  
                 $form->setVal('json_payload', htmlentities($json_payload_result));  
             } else {  
                 //  
                 $form->setVal('json_payload', htmlentities($this->getVal('json_payload')));  
             }  
242          }          }
243      }      }
244    
245      function setLib(&$form, $maj) {      function setLib(&$form, $maj) {
246          parent::setLib($form, $maj);          parent::setLib($form, $maj);
247          $form->setLib('json_payload', '');  
248            // Récupération du mode de l'action
249            $crud = $this->get_action_crud($maj);
250    
251            // MODE different de CREER
252            if ($maj != 0 || $crud != 'create') {
253                $form->setLib('json_payload', '');
254            }
255      }      }
256    
257      public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {      public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {
258          parent::verifier($val, $dnu1, $dnu2);          $ret = parent::verifier($val, $dnu1, $dnu2);
259          //  
260          if (array_key_exists('timestamp_log', $this->valF) === true          // une tâche entrante doit avoir un type et une payload non-vide
261              && is_array(json_decode($this->valF['timestamp_log'], true)) === false) {          if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
262              //              if (isset($this->valF['type']) === false) {
263              $this->correct = false;                  $this->correct = false;
264              $this->addToMessage(sprintf(                  $this->addToMessage(sprintf(
265                  __("Le champ %s doit être dans un format JSON valide."),                      __("Le champ %s est obligatoire pour une tâche entrante."),
266                  sprintf('<span class="bold">%s</span>', $this->getLibFromField('timestamp_log'))                      sprintf('<span class="bold">%s</span>', $this->getLibFromField('type'))
267              ));                  ));
268                    $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
269                }
270                if (isset($this->valF['json_payload']) === false) {
271                    $this->correct = false;
272                    $this->addToMessage(sprintf(
273                        __("Le champ %s est obligatoire pour une tâche entrante."),
274                        sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
275                    ));
276                    $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
277                }
278            }
279    
280            // les JSONs doivent être décodables
281            foreach(array('json_payload', 'timestamp_log') as $key) {
282                if (isset($this->valF[$key]) && ! empty($this->valF[$key]) && (
283                        is_array(json_decode($this->valF[$key], true)) === false
284                        || json_last_error() !== JSON_ERROR_NONE)) {
285                    $this->correct = false;
286                    $champ_text = sprintf('<span class="bold">%s</span>', $this->getLibFromField($key));
287                    $this->addToMessage(sprintf(
288                        __("Le champ %s doit être dans un format JSON valide (erreur: %s).".
289                        "<p>%s valF:</br><pre>%s</pre></p>".
290                        "<p>%s val:</br><pre>%s</pre></p>".
291                        "<p>%s POST:</br><pre>%s</pre></p>".
292                        "<p>%s submitted POST value:</br><pre>%s</pre></p>"),
293                        $champ_text,
294                        json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'),
295                        $champ_text,
296                        $this->valF[$key],
297                        $champ_text,
298                        $val[$key],
299                        $champ_text,
300                        isset($_POST[$key]) ? $_POST[$key] : '',
301                        $champ_text,
302                        $this->f->get_submitted_post_value($key)
303                    ));
304                    $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);
305                }
306            }
307    
308            // une tâche entrante doit avoir une payload avec les clés requises
309            if ($this->correct && (isset($this->valF['stream']) === false ||
310                                   $this->valF['stream'] == 'input')) {
311    
312                // décode la payload JSON
313                $json_payload = json_decode($this->valF['json_payload'], true);
314    
315                // défini une liste de chemin de clés requises
316                $paths = array(
317                    'external_uids/dossier'
318                );
319    
320                // tâche de type création de DI/DA
321                if (isset($this->valF['type']) !== false && $this->valF['type'] == 'create_DI_for_consultation') {
322    
323                    $paths = array_merge($paths, array(
324                        'dossier/dossier',
325                        'dossier/dossier_autorisation_type_detaille_code',
326                        'dossier/date_demande',
327                        'dossier/depot_electronique',
328                    ));
329    
330                    // si l'option commune est activée (mode MC)
331                    if ($this->f->is_option_dossier_commune_enabled()) {
332                        $paths[] = 'dossier/insee';
333                    }
334    
335                    // présence d'un moyen d'identifier la collectivité/le service
336                    if (! isset($json_payload['external_uids']['acteur']) &&
337                            ! isset($json_payload['dossier']['om_collectivite'])) {
338                        $this->correct = false;
339                        $this->addToMessage(sprintf(
340                            __("L'une des clés %s ou %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
341                            sprintf('<span class="bold">%s</span>', 'external_uids/acteur'),
342                            sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),
343                            sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
344                        ));
345                        $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
346                    }
347                }
348    
349                // pas d'erreur déjà trouvée
350                if($this->correct) {
351    
352                    // pour chaque chemin
353                    foreach($paths as $path) {
354    
355                        // décompose le chemin
356                        $tokens = explode('/', $path);
357                        $cur_depth = $json_payload;
358    
359                        // descend au et à mesure dans l'arborescence du chemin
360                        foreach($tokens as $token) {
361    
362                            // en vérifiant que chaque élément du chemin est défini et non-nul
363                            if (isset($cur_depth[$token]) === false) {
364    
365                                // sinon on produit une erreur
366                                $this->correct = false;
367                                $this->addToMessage(sprintf(
368                                    __("La clé %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
369                                    sprintf('<span class="bold">%s</span>', $path),
370                                    sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
371                                ));
372                                $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
373                                break 2;
374                            }
375                            $cur_depth = $cur_depth[$token];
376                        }
377                    }
378                }
379          }          }
380    
381            return $ret && $this->correct;
382      }      }
383    
384      protected function task_exists(string $type, string $object_id) {      /**
385         * [task_exists description]
386         * @param  string $type      [description]
387         * @param  string $object_id [description]
388         * @return [type]            [description]
389         */
390        public function task_exists(string $type, string $object_id) {
391          $query = sprintf('          $query = sprintf('
392              SELECT task              SELECT task
393              FROM %1$stask              FROM %1$stask
# Line 181  class task extends task_gen { Line 396  class task extends task_gen {
396              AND object_id = \'%4$s\'              AND object_id = \'%4$s\'
397              ',              ',
398              DB_PREFIXE,              DB_PREFIXE,
399              'done',              self::STATUS_DONE,
400              $type,              $type,
401              $object_id              $object_id
402          );          );
# Line 193  class task extends task_gen { Line 408  class task extends task_gen {
408      }      }
409    
410      /**      /**
411         * TRIGGER - triggerajouter.
412         *
413         * @param string $id
414         * @param null &$dnu1 @deprecated  Ne pas utiliser.
415         * @param array $val Tableau des valeurs brutes.
416         * @param null $dnu2 @deprecated  Ne pas utiliser.
417         *
418         * @return boolean
419         */
420        function triggerajouter($id, &$dnu1 = null, $val = array(), $dnu2 = null) {
421    
422            // tâche entrante
423            if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
424    
425                // décode la paylod JSON pour extraire les données métiers à ajouter
426                // en tant que métadonnées de la tâche
427                $json_payload = json_decode($this->valF['json_payload'], true);
428    
429                // si la tâche possède déjà une clé dossier
430                if (isset($json_payload['dossier']['dossier']) &&
431                        ! empty($json_payload['dossier']['dossier'])) {
432                    $this->valF["dossier"] = $json_payload['dossier']['dossier'];
433                }
434            }
435        }
436    
437        /**
438       * TREATMENT - add_task       * TREATMENT - add_task
439       * Ajoute un enregistrement.       * Ajoute un enregistrement.
440       *       *
# Line 201  class task extends task_gen { Line 443  class task extends task_gen {
443       */       */
444      public function add_task($params = array()) {      public function add_task($params = array()) {
445          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
446    
447            // Vérifie si la task doit être ajoutée en fonction du mode de l'application,
448            // seulement pour les tasks output
449            $task_types_si = self::TASK_TYPE_SI;
450            $task_types_sc = self::TASK_TYPE_SC;
451            $stream = isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output';
452            if ($stream === 'output'
453                && isset($params['val']['type']) === true
454                && $this->f->is_option_mode_service_consulte_enabled() === true
455                && in_array($params['val']['type'], $task_types_sc) === false) {
456                //
457                return $this->end_treatment(__METHOD__, true);
458            }
459            if ($stream === 'output'
460                && isset($params['val']['type']) === true
461                && $this->f->is_option_mode_service_consulte_enabled() === false
462                && in_array($params['val']['type'], $task_types_si) === false) {
463                //
464                return $this->end_treatment(__METHOD__, true);
465            }
466    
467          $timestamp_log = json_encode(array(          $timestamp_log = json_encode(array(
468              'creation_date' => date('Y-m-d H:i:s'),              'creation_date' => date('Y-m-d H:i:s'),
469          ));          ));
470    
471            // Si la tâche est de type ajout_piece et de stream input alors on ajoute le fichier
472            // et on ajoute l'uid dans le champ json_payload avant l'ajout de la tâche
473            if (isset($params['val']['type'])
474                && ($params['val']['type'] == "add_piece" || $params['val']['type'] == "avis_consultation")
475                && isset($params['val']['stream'])
476                && $params['val']['stream'] == "input" ) {
477                //
478                $json_payload = json_decode($params['val']['json_payload'], true);
479                if (json_last_error() !== JSON_ERROR_NONE) {
480                    $this->addToMessage(__("Le contenu JSON de la tâche n'est pas valide."));
481                    return $this->end_treatment(__METHOD__, false);
482                }
483                if (isset($json_payload['document_numerise']) === true
484                    && empty($json_payload['document_numerise']) === false) {
485                    //
486                    $document_numerise = $json_payload['document_numerise'];
487                    $file_content = base64_decode($document_numerise["file_content"]);
488                    if ($file_content === false){
489                        $this->addToMessage(__("Le contenu du fichier lié à la tâche n'a pas pu etre recupere."));
490                        return $this->end_treatment(__METHOD__, false);
491                    }
492                    $metadata = array(
493                        "filename" => $document_numerise['nom_fichier'],
494                        "size" => strlen($file_content),
495                        "mimetype" => $document_numerise['file_content_type'],
496                        "date_creation" => isset($document_numerise['date_creation']) === true ? $document_numerise['date_creation'] : date("Y-m-d"),
497                    );
498                    $uid_fichier = $this->f->storage->create($file_content, $metadata, "from_content", "task.uid_fichier");
499                    if ($uid_fichier === OP_FAILURE) {
500                        $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));
501                        return $this->end_treatment(__METHOD__, false);
502                    }
503                    $json_payload["document_numerise"]["uid"] = $uid_fichier;
504                    // Le fichier a été ajouté nous n'avons plus besoin du champ file_content dans la payload
505                    unset($json_payload["document_numerise"]["file_content"]);
506                    $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
507                }
508            }
509    
510          // Mise à jour du DI          // Mise à jour du DI
511          $valF = array(          $valF = array(
512              'task' => '',              'task' => '',
513              'type' => $params['val']['type'],              'type' => $params['val']['type'],
514              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
515              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : 'new',              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,
516              'object_id' => $params['val']['object_id'],              'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',
517              'dossier' => $params['val']['dossier'],              'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',
518              'stream' => isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output',              'stream' => $stream,
519              'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',              'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',
520          );          );
521          if($valF["stream"] != "input"){  
522            // tâche sortante
523            if($valF["stream"] == "output"){
524    
525                // TODO expliquer ce code
526              $task_exists = $this->task_exists($valF['type'], $valF['object_id']);              $task_exists = $this->task_exists($valF['type'], $valF['object_id']);
527              if ($valF['type'] === 'modification_DI' && $task_exists === false) {              if ($valF['type'] === 'modification_DI' && $task_exists === false) {
528                  $task_exists = $this->task_exists('creation_DI', $valF['object_id']);                  $task_exists = $this->task_exists('creation_DI', $valF['object_id']);
529              }              }
530                if ($valF['type'] === 'modification_DA' && $task_exists === false) {
531                    $task_exists = $this->task_exists('creation_DA', $valF['object_id']);
532                }
533              if ($task_exists !== false) {              if ($task_exists !== false) {
534                  $inst_task = $this->f->get_inst__om_dbform(array(                  $inst_task = $this->f->get_inst__om_dbform(array(
535                      "obj" => "task",                      "obj" => "task",
# Line 237  class task extends task_gen { Line 547  class task extends task_gen {
547                  return $inst_task->update_task($update_params);                  return $inst_task->update_task($update_params);
548              }              }
549          }          }
550    
551          $add = $this->ajouter($valF);          $add = $this->ajouter($valF);
552            $this->addToLog(__METHOD__."(): retour de l'ajout de tâche: ".var_export($add, true), VERBOSE_MODE);
553          if ($add === false) {          if ($add === false) {
554              $this->addToLog($this->msg, DEBUG_MODE);              $this->addToLog(__METHOD__."(): ".$this->msg, DEBUG_MODE);
555              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
556          }          }
557          return $this->end_treatment(__METHOD__, true);          return $this->end_treatment(__METHOD__, true);
# Line 256  class task extends task_gen { Line 568  class task extends task_gen {
568          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
569          $timestamp_log = $this->get_timestamp_log();          $timestamp_log = $this->get_timestamp_log();
570          if ($timestamp_log === false) {          if ($timestamp_log === false) {
571              $this->addToLog(__('XXX'), DEBUG_MODE);              $this->addToLog(__METHOD__."(): erreur timestamp log", DEBUG_MODE);
572              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
573          }          }
574          array_push($timestamp_log, array(          array_push($timestamp_log, array(
# Line 286  class task extends task_gen { Line 598  class task extends task_gen {
598      /**      /**
599       * 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
600       * l'enregistrement instancié.       * l'enregistrement instancié.
601       *       *
602       * @param  array  $params Tableau des paramètres       * @param  array  $params Tableau des paramètres
603       * @return array sinon false en cas d'erreur       * @return array sinon false en cas d'erreur
604       */       */
# Line 344  class task extends task_gen { Line 656  class task extends task_gen {
656          $list_tasks = array();          $list_tasks = array();
657          foreach ($res['result'] as $task) {          foreach ($res['result'] as $task) {
658              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);
659              $task['dossier'] = $task['object_id'];              $task['dossier'] = $task['dossier'];
660              if ($this->get_lien_objet_by_type($task['type']) === 'document_numerise') {              if ($task['type'] === 'ajout_piece') {
661                  $val_dn = $this->get_document_numerise_data($task['object_id']);                  $val_dn = $this->get_document_numerise_data($task['object_id']);
662                  $task['dossier'] = $val_dn['dossier'];              }
663                if ($task['stream'] === 'output') {
664                    $task['external_uids'] = $this->get_all_external_uids($task['dossier']);
665              }              }
666              $list_tasks[$task['task']] = $task;              $list_tasks[$task['task']] = $task;
667          }          }
# Line 490  class task extends task_gen { Line 804  class task extends task_gen {
804          return $val_dt;          return $val_dt;
805      }      }
806    
807        /**
808         * Récupère la liste des objets distincts existants dans la table des liens
809         * entre identifiants internes et identifiants externes.
810         *
811         * @return array
812         */
813        protected function get_list_distinct_objects_external_link() {
814            $query = sprintf('
815                SELECT
816                    DISTINCT(object)
817                FROM %1$slien_id_interne_uid_externe
818                ORDER BY object ASC
819                ',
820                DB_PREFIXE
821            );
822            $res = $this->f->get_all_results_from_db_query($query, true);
823            if ($res['code'] === 'KO') {
824                return array();
825            }
826            $result = array();
827            foreach ($res['result'] as $object) {
828                $result[] = $object['object'];
829            }
830            return $result;
831        }
832    
833      protected function get_external_uid($fk_idx, string $fk_idx_2) {      protected function get_external_uid($fk_idx, string $fk_idx_2) {
834          $inst_external_uid = $this->f->get_inst__by_other_idx(array(          $inst_external_uid = $this->f->get_inst__by_other_idx(array(
835              "obj" => "lien_id_interne_uid_externe",              "obj" => "lien_id_interne_uid_externe",
# Line 501  class task extends task_gen { Line 841  class task extends task_gen {
841          return $inst_external_uid->getVal('external_uid');          return $inst_external_uid->getVal('external_uid');
842      }      }
843    
844        protected function get_all_external_uids($fk_idx, $link_objects = array()) {
845            if (count($link_objects) == 0) {
846                $link_objects = $this->get_list_distinct_objects_external_link();
847            }
848            $val_external_uid = array();
849            foreach ($link_objects as $link_object) {
850                $external_uid = $this->get_external_uid($fk_idx, $link_object);
851                if ($external_uid !== '' && $external_uid !== null) {
852                    $val_external_uid[$link_object] = $external_uid;
853                }
854            }
855            return $val_external_uid;
856        }
857    
858      protected function get_demandeurs_data(string $dossier) {      protected function get_demandeurs_data(string $dossier) {
859          $val_demandeur = array();          $val_demandeur = array();
860          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
# Line 533  class task extends task_gen { Line 887  class task extends task_gen {
887          return $val_architecte;          return $val_architecte;
888      }      }
889    
890      protected function get_instruction_data(string $dossier, $type = 'decision') {      protected function get_instruction_data(string $dossier, $type = 'decision', $extra_params = array()) {
891          $val_instruction = null;          $val_instruction = null;
892          $instruction_with_doc = null;          $instruction_with_doc = null;
893          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
# Line 547  class task extends task_gen { Line 901  class task extends task_gen {
901          if ($type === 'incompletude') {          if ($type === 'incompletude') {
902              $idx = $inst_di->get_last_instruction_incompletude();              $idx = $inst_di->get_last_instruction_incompletude();
903          }          }
904            // XXX Permet de récupérer l'instruction par son identifiant
905            if ($type === 'with-id') {
906                $idx = $extra_params['with-id'];
907            }
908          $inst_instruction = $this->f->get_inst__om_dbform(array(          $inst_instruction = $this->f->get_inst__om_dbform(array(
909              "obj" => "instruction",              "obj" => "instruction",
910              "idx" => $idx,              "idx" => $idx,
# Line 592  class task extends task_gen { Line 950  class task extends task_gen {
950    
951      protected function sort_instruction_data(array $values, array $res) {      protected function sort_instruction_data(array $values, array $res) {
952          $fields = array(          $fields = array(
953                "date_evenement",
954              "date_envoi_signature",              "date_envoi_signature",
955              "date_retour_signature",              "date_retour_signature",
956              "date_envoi_rar",              "date_envoi_rar",
# Line 652  class task extends task_gen { Line 1011  class task extends task_gen {
1011          return $val_dp;          return $val_dp;
1012      }      }
1013    
1014        protected function get_avis_decision_data(string $dossier) {
1015            $inst_di = $this->f->get_inst__om_dbform(array(
1016                "obj" => "dossier",
1017                "idx" => $dossier,
1018            ));
1019            $ad = $inst_di->getVal('avis_decision');
1020            $val_ad = array();
1021            if ($ad !== null) {
1022                $inst_ad = $this->f->get_inst__om_dbform(array(
1023                    "obj" => "avis_decision",
1024                    "idx" => $ad,
1025                ));
1026                $val_ad = $inst_ad->get_json_data();
1027                $val_ad['txAvis'] = "Voir document joint";
1028                if (isset($val_ad['tacite']) ===  true
1029                    && $val_ad['tacite'] === 't') {
1030                    //
1031                    $val_ad['txAvis'] = "Sans objet";
1032                }
1033            }
1034            return $val_ad;
1035        }
1036    
1037        protected function get_signataire_arrete_data(string $sa) {
1038            $inst_sa = $this->f->get_inst__om_dbform(array(
1039                "obj" => "signataire_arrete",
1040                "idx" => $sa,
1041            ));
1042            $val_sa = array_combine($inst_sa->champs, $inst_sa->val);
1043            foreach ($val_sa as $key => $value) {
1044                $val_sa[$key] = strip_tags($value);
1045            }
1046            return $val_sa;
1047        }
1048    
1049        // XXX WIP
1050        protected function get_consultation_data(string $consultation) {
1051            $val_consultation = array();
1052            $inst_consultation = $this->f->get_inst__om_dbform(array(
1053                "obj" => "consultation",
1054                "idx" => $consultation,
1055            ));
1056            $val_consultation = $inst_consultation->get_json_data();
1057            if (isset($val_consultation['fichier']) === true
1058                && $val_consultation['fichier'] !== '') {
1059                //
1060                $val_consultation['path_fichier'] = sprintf('%s&snippet=%s&obj=%s&champ=%s&id=%s', 'app/index.php?module=form', 'file', 'consultation', 'fichier', $this->getVal('object_id'));
1061            }
1062            if (isset($val_consultation['om_fichier_consultation']) === true
1063                && $val_consultation['om_fichier_consultation'] !== '') {
1064                //
1065                $val_consultation['path_om_fichier_consultation'] = sprintf('%s&snippet=%s&obj=%s&champ=%s&id=%s', 'app/index.php?module=form', 'file', 'consultation', 'om_fichier_consultation', $this->getVal('object_id'));
1066            }
1067            return $val_consultation;
1068        }
1069    
1070        // XXX WIP
1071        protected function get_service_data(string $service) {
1072            $val_service = array();
1073            $inst_service = $this->f->get_inst__om_dbform(array(
1074                "obj" => "service",
1075                "idx" => $service,
1076            ));
1077            $val_service = $inst_service->get_json_data();
1078            return $val_service;
1079        }
1080    
1081      protected function view_form_json($in_field = false) {      protected function view_form_json($in_field = false) {
1082          //          //
1083          if ($this->f->get_submitted_post_value('valid') === null) {          if ($this->f->get_submitted_post_value('valid') === null
1084                && $this->getVal('state') !== self::STATUS_DRAFT) {
1085              // Liste des valeurs à afficher              // Liste des valeurs à afficher
1086              $val = array();              $val = array();
1087              //              //
# Line 665  class task extends task_gen { Line 1092  class task extends task_gen {
1092              $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);              $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);
1093              $val['task'] = $val_task;              $val['task'] = $val_task;
1094              //              //
1095              if ($this->getVal('type') === 'creation_DA') {              if ($this->getVal('type') === 'creation_DA'
1096                    || $this->getVal('type') === 'modification_DA') {
1097                    //
1098                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));
1099                  $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_autorisation');                  $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_autorisation');
1100                  $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']);
1101                  $val_external_uid = array();                  $val_external_uid = array();
1102                  $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');
1103                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1104              }              }
1105              //              //
1106              if ($this->getVal('type') === 'creation_DI'              if ($this->getVal('type') === 'creation_DI'
# Line 687  class task extends task_gen { Line 1116  class task extends task_gen {
1116                  $val_external_uid = array();                  $val_external_uid = array();
1117                  $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');
1118                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1119                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1120              }              }
1121              //              //
1122              if ($this->getVal('type') === 'qualification_DI') {              if ($this->getVal('type') === 'qualification_DI') {
1123                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1124                  $val_external_uid = array();                  $val_external_uid = array();
1125                  $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');
1126                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1127                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1128              }              }
1129              //              //
1130              if ($this->getVal('type') === 'ajout_piece') {              if ($this->getVal('type') === 'ajout_piece') {
# Line 705  class task extends task_gen { Line 1134  class task extends task_gen {
1134                  $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');
1135                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1136                  $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');
1137                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1138              }              }
1139              //              //
1140              if ($this->getVal('type') === 'decision_DI') {              if ($this->getVal('type') === 'decision_DI') {
1141                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1142                  $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')));
1143                  $val_external_uid = array();                  $val_external_uid = array();
1144                  $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');
1145                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1146                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1147              }              }
1148              //              //
1149              if ($this->getVal('type') === 'incompletude_DI') {              if ($this->getVal('type') === 'incompletude_DI') {
1150                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1151                  $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')));
1152                  $val_external_uid = array();                  $val_external_uid = array();
1153                  $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');
1154                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1155                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1156              }              }
1157              //              //
1158              if ($this->getVal('type') === 'completude_DI') {              if ($this->getVal('type') === 'completude_DI') {
1159                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1160                  $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')));
1161                  $val_external_uid = array();                  $val_external_uid = array();
1162                  $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');
1163                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1164                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1165                }
1166                //
1167                if ($this->getVal('type') === 'pec_metier_consultation') {
1168                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1169                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1170                    $val_external_uid = array();
1171                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1172                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1173                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1174                    $val['external_uids'] = $val_external_uid;
1175                }
1176                //
1177                if ($this->getVal('type') === 'avis_consultation') {
1178                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1179                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1180                    $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1181                    if (isset($val['instruction']['signataire_arrete']) === true) {
1182                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1183                    }
1184                    $val_external_uid = array();
1185                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1186                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1187                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1188                    $val['external_uids'] = $val_external_uid;
1189                }
1190                // XXX WIP
1191                if ($this->getVal('type') === 'creation_consultation') {
1192                    //
1193                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1194                    $val['consultation'] = $this->get_consultation_data($this->getVal('object_id'));
1195                    $val['service'] = $this->get_service_data($val['consultation']['service']);
1196                    $val_external_uid = array();
1197                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1198                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1199                    $val['external_uids'] = $val_external_uid;
1200              }              }
1201    
1202              if ($in_field === true) {              if ($in_field === true) {
# Line 744  class task extends task_gen { Line 1208  class task extends task_gen {
1208          }          }
1209      }      }
1210    
1211      function view_update_json_data() {      function post_update_task() {
1212          // Mise à jour des valeurs          // Mise à jour des valeurs
1213          //  
1214          $params = array(          // Modification de l'état de la tâche
1215              'val' => array(          if ($this->f->get_submitted_post_value('state') !== null) {
1216                  'state' => $this->f->get_submitted_post_value('state')              $params = array(
1217              ),                  'val' => array(
1218          );                      'state' => $this->f->get_submitted_post_value('state')
1219          $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.')  
1220              );              );
1221                $update = $this->update_task($params);
1222                $message_class = "valid";
1223                $message = $this->msg;
1224                if ($update === false) {
1225                    $this->addToLog($this->msg, DEBUG_MODE);
1226                    $message_class = "error";
1227                    $message = sprintf(
1228                        '%s %s',
1229                        __('Impossible de mettre à jour la tâche.'),
1230                        __('Veuillez contacter votre administrateur.')
1231                    );
1232                }
1233                $this->f->displayMessage($message_class, $message);
1234          }          }
1235          $this->f->displayMessage($message_class, $message);  
1236          //          // Sauvegarde de l'uid externe retourné
1237          $inst_lien = $this->f->get_inst__om_dbform(array(          if ($this->f->get_submitted_post_value('external_uid') !== null) {
1238              "obj" => "lien_id_interne_uid_externe",              //
1239              "idx" => ']',              $objects = $this->get_objects_by_task_type($this->getVal('type'), $this->getVal('stream'));
1240                foreach ($objects as $object) {
1241                    $inst_lien = $this->f->get_inst__om_dbform(array(
1242                        "obj" => "lien_id_interne_uid_externe",
1243                        "idx" => ']',
1244                    ));
1245                    if ($inst_lien->is_exists($object, $this->getVal('object_id'), $this->f->get_submitted_post_value('external_uid'), $this->getVal('dossier')) === false) {
1246                        $valF = array(
1247                            'lien_id_interne_uid_externe' => '',
1248                            'object' => $object,
1249                            'object_id' => $this->getVal('object_id'),
1250                            'external_uid' => $this->f->get_submitted_post_value('external_uid'),
1251                            'dossier' => $this->getVal('dossier'),
1252                        );
1253                        $add = $inst_lien->ajouter($valF);
1254                        $message_class = "valid";
1255                        $message = $inst_lien->msg;
1256                        if ($add === false) {
1257                            $this->addToLog($inst_lien->msg, DEBUG_MODE);
1258                            $message_class = "error";
1259                            $message = sprintf(
1260                                '%s %s',
1261                                __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),
1262                                __('Veuillez contacter votre administrateur.')
1263                            );
1264                        }
1265                        $this->f->displayMessage($message_class, $message);
1266                    }
1267                }
1268            }
1269        }
1270    
1271        function post_add_task() {
1272            // TODO Tester de remplacer la ligne de json_payload par un $_POST
1273            $result = $this->add_task(array(
1274                'val' => array(
1275                    'stream' => 'input',
1276                    'json_payload' => html_entity_decode($this->f->get_submitted_post_value('json_payload')),
1277                    'type' => $this->f->get_submitted_post_value('type'),
1278                )
1279          ));          ));
1280          $valF = array(          $message = sprintf(
1281              'lien_id_interne_uid_externe' => '',              __("Tâche %s ajoutée avec succès"),
1282              'object' => $this->get_lien_objet_by_type($this->getVal('type')),              $this->getVal($this->clePrimaire)).
1283              'object_id' => $this->getVal('object_id'),              '<br/><br/>'.
1284              'external_uid' => $this->f->get_submitted_post_value('external_uid'),              $this->msg;
         );  
         $add = $inst_lien->ajouter($valF);  
1285          $message_class = "valid";          $message_class = "valid";
1286          $message = $inst_lien->msg;          if ($result === false){
1287          if ($add === false) {              $this->addToLog($this->msg, DEBUG_MODE);
             $this->addToLog($inst_lien->msg, DEBUG_MODE);  
1288              $message_class = "error";              $message_class = "error";
1289              $message = sprintf(              $message = sprintf(
1290                  '%s %s',                  '%s %s',
1291                  __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),                  __('Impossible d\'ajouter la tâche.'),
1292                  __('Veuillez contacter votre administrateur.')                  __('Veuillez contacter votre administrateur.')
1293              );              );
1294          }          }
1295          $this->f->displayMessage($message_class, $message);          $this->f->displayMessage($message_class, $message);
1296      }      }
1297    
1298      function view_add_json_data() {      function setLayout(&$form, $maj) {
1299          $params = array();  
1300          $params['val']['stream'] = 'input';          // Récupération du mode de l'action
1301          $params['val']['json_payload'] = $this->f->get_submitted_post_value('json_payload');          $crud = $this->get_action_crud($maj);
1302          $json_payload = json_decode($params['val']['json_payload'], true);  
1303          $params['val']['type'] = $json_payload['task']['type'];          // MODE different de CREER
1304          $params['val']['dossier'] = $json_payload['task']['dossier'];          if ($maj != 0 || $crud != 'create') {
1305          $params['val']['object_id'] = "";              $form->setBloc('json_payload', 'D', '', 'col_6');
1306          if ($params['val']['type'] == 'ajout_piece') {                  $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");
1307              $document_numerise = $json_payload['document_numerise'];              $form->setBloc('json_payload', 'F');
             $file_content = base64_decode($document_numerise["file_content"]);  
             if ($file_content === false){  
                 $this->addToMessage(__("Le contenu du fichier lié à la tâche n'a pas pu etre recupere."));  
                 return false;  
             }  
             $metadata = array(  
                 "filename" => $document_numerise['nom_fichier'],  
                 "size" => strlen($file_content),  
                 "mimetype" => $document_numerise['file_content_type'],  
                 "date_creation" => $document_numerise['date_creation'],  
             );  
             $uid_fichier = $this->f->storage->create($file_content, $metadata, "from_content");  
             if ($uid_fichier === OP_FAILURE) {  
                 $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));  
                 return false;  
             }  
             $json_payload["document_numerise"]["uid"] = $uid_fichier;  
             $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);  
1308          }          }
1309          $this->add_task($params);          $form->setBloc('timestamp_log', 'DF', '', 'col_9');
1310      }      }
1311    
1312      protected function get_lien_objet_by_type($type) {      /**
1313          //       * [get_objects_by_task_type description]
1314          $objet = '';       * @param  [type] $type [description]
1315          if ($type === 'creation_DA') {       * @return [type]       [description]
1316              $objet = 'dossier_autorisation';       */
1317          }      function get_objects_by_task_type($type, $stream = 'all') {
1318          if ($type === 'creation_DI'          $objects = array();
1319              || $type === 'depot_DI'          if (in_array($type, array('creation_DA', 'modification_DA', )) === true) {
1320              || $type === 'modification_DI'              $objects = array('dossier_autorisation', );
             || $type === 'qualification_DI'  
             || $type === 'decision_DI'  
             || $type === 'incompletude_DI'  
             || $type === 'completude_DI') {  
             //  
             $objet = 'dossier';  
1321          }          }
1322          if ($type === 'ajout_piece') {          if (in_array($type, array('creation_DI', 'depot_DI', 'notification_DI', 'qualification_DI', )) === true) {
1323              $objet = 'document_numerise';              $objects = array('dossier', );
1324          }          }
1325          return $objet;          if (in_array($type, array('create_DI_for_consultation', )) === true) {
1326      }              $objects = array('dossier', 'dossier_consultation', );
1327            }
1328      function setLayout(&$form, $maj) {          if (in_array($type, array('create_DI', )) === true
1329          $form->setBloc('json_payload', 'D', '', 'col_6');              && $stream === 'input') {
1330              $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");              $objects = array('dossier', 'dossier_autorisation', );
1331          $form->setBloc('json_payload', 'F');          }
1332          $form->setBloc('timestamp_log', 'DF', '', 'col_9');          if (in_array($type, array('decision_DI', 'incompletude_DI', 'completude_DI', )) === true) {
1333                $objects = array('instruction', );
1334            }
1335            if (in_array($type, array('pec_metier_consultation', )) === true
1336                && $stream === 'output') {
1337                $objects = array('pec_dossier_consultation', );
1338            }
1339            if (in_array($type, array('avis_consultation', )) === true
1340                && $stream === 'output') {
1341                $objects = array('avis_dossier_consultation', );
1342            }
1343            if (in_array($type, array('ajout_piece', 'add_piece', )) === true) {
1344                $objects = array('piece', );
1345            }
1346            if (in_array($type, array('creation_consultation', )) === true) {
1347                $objects = array('consultation', );
1348            }
1349            if (in_array($type, array('pec_metier_consultation', )) === true
1350                && $stream === 'input') {
1351                $objects = array('pec_metier_consultation', );
1352            }
1353            if (in_array($type, array('avis_consultation', )) === true
1354                && $stream === 'input') {
1355                $objects = array('avis_consultation', );
1356            }
1357            if (in_array($type, array('create_message', )) === true
1358                && $stream === 'input') {
1359                $objects = array('dossier_message', );
1360            }
1361            return $objects;
1362      }      }
1363    
1364  }  }

Legend:
Removed from v.9746  
changed lines
  Added in v.10362

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26