/[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 9667 by gmalvolti, Thu Nov 5 16:04:34 2020 UTC branches/4.14.0-develop/obj/task.class.php revision 9838 by softime, Wed Jan 6 11:53:04 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          if (array_key_exists('timestamp_log', $val) === true) {          // récupération de l'ID de l'objet existant
76              $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);          $id = property_exists($this, 'id') ? $this->id : null;
77            if(isset($val[$this->clePrimaire])) {
78                $id = $val[$this->clePrimaire];
79            } elseif(isset($this->valF[$this->clePrimaire])) {
80                $id = $this->valF[$this->clePrimaire];
81            }
82    
83            // MODE MODIFIER
84            if (! empty($id)) {
85    
86                // si aucune payload n'est fourni (devrait toujours être le cas)
87                if (! isset($val['json_payload']) || empty($val['json_payload'])) {
88    
89                    // récupère l'objet existant
90                    $existing = $this->f->findObjectById(get_class($this), $id);
91                    if (! empty($existing)) {
92    
93                        // récupère la payload de l'objet
94                        $val['json_payload'] = $existing->getVal('json_payload');
95                        $this->valF['json_payload'] = $existing->getVal('json_payload');
96                        $this->f->addToLog(__METHOD__."() récupère la payload de la tâche existante ".
97                            "'$id': ".$existing->getVal('json_payload'), EXTRA_VERBOSE_MODE);
98                    }
99                }
100          }          }
101      }      }
102    
# Line 40  class task extends task_gen { Line 111  class task extends task_gen {
111              "state",              "state",
112              "object_id",              "object_id",
113              "dossier",              "dossier",
114                "stream",
115              "json_payload",              "json_payload",
116              "timestamp_log",              "timestamp_log",
117          );          );
# Line 47  class task extends task_gen { Line 119  class task extends task_gen {
119    
120      function setType(&$form, $maj) {      function setType(&$form, $maj) {
121          parent::setType($form, $maj);          parent::setType($form, $maj);
122    
123          // Récupération du mode de l'action          // Récupération du mode de l'action
124          $crud = $this->get_action_crud($maj);          $crud = $this->get_action_crud($maj);
125    
126          if ($maj < 2) {          // MODE CREER
127            if ($maj == 0 || $crud == 'create') {
128              $form->setType("state", "select");              $form->setType("state", "select");
129                $form->setType("stream", "select");
130              $form->setType("json_payload", "textarea");              $form->setType("json_payload", "textarea");
131          }          }
132          if ($maj == 3){          // MDOE MODIFIER
133            if ($maj == 1 || $crud == 'update') {
134                $form->setType("state", "select");
135                $form->setType("stream", "select");
136                $form->setType("json_payload", "jsonprettyprint");
137            }
138            // MODE CONSULTER
139            if ($maj == 3 || $crud == 'read') {
140              $form->setType('dossier', 'link');              $form->setType('dossier', 'link');
141              $form->setType('json_payload', 'jsonprettyprint');              $form->setType('json_payload', 'jsonprettyprint');
142          }          }
# Line 66  class task extends task_gen { Line 148  class task extends task_gen {
148       */       */
149      function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {      function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {
150          if($maj < 2) {          if($maj < 2) {
             $contenu=array();  
151    
152              $contenu[0][0]="draft";              $contenu = array();
153              $contenu[1][0]=_('draft');              foreach(array('DRAFT', 'NEW', 'PENDING', 'DONE', 'ERROR', 'DEBUG') as $key) {
154              $contenu[0][1]="new";                  $const_name = 'STATUS_'.$key;
155              $contenu[1][1]=_('new');                  $const_value = constant("self::$const_name");
156              $contenu[0][2]="pending";                  $contenu[0][] = $const_value;
157              $contenu[1][2]=_('pending');                  $contenu[1][] = __($const_value);
158              $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');  
159    
160              $form->setSelect("state", $contenu);              $form->setSelect("state", $contenu);
161    
162                $contenu_stream =array();
163                $contenu_stream[0][0]="input";
164                $contenu_stream[1][0]=_('input');
165                $contenu_stream[0][1]="output";
166                $contenu_stream[1][1]=_('output');
167                $form->setSelect("stream", $contenu_stream);
168    
169          }          }
170    
171          if ($maj == 3) {          if ($maj == 3) {
172              $inst_dossier = $this->f->get_inst__om_dbform(array(              if ($this->getVal('stream') == 'output') {
173                  "obj" => "dossier",                  $inst_dossier = $this->f->get_inst__om_dbform(array(
174                  "idx" => $form->val['dossier'],                      "obj" => "dossier",
175              ));                      "idx" => $form->val['dossier'],
176                                ));
177              if($form->val['type'] == "creation_DA"){  
178                  $obj_link = 'dossier_autorisation';                  if($form->val['type'] == "creation_DA"){
179              } else {                      $obj_link = 'dossier_autorisation';
180                  $obj_link = 'dossier_instruction';                  } else {
181              }                      $obj_link = 'dossier_instruction';
182                    }
183    
184              $params = array();                  $params = array();
185              $params['obj'] = $obj_link;                  $params['obj'] = $obj_link;
186              $params['libelle'] = $inst_dossier->getVal('dossier');                  $params['libelle'] = $inst_dossier->getVal('dossier');
187              $params['title'] = "Consulter le dossier";                  $params['title'] = "Consulter le dossier";
188              $params['idx'] = $form->val['dossier'];                  $params['idx'] = $form->val['dossier'];
189              $form->setSelect("dossier", $params);                  $form->setSelect("dossier", $params);
190                }
191          }          }
192      }      }
193    
# Line 115  class task extends task_gen { Line 199  class task extends task_gen {
199      function setVal(&$form, $maj, $validation, &$dnu1 = null, $dnu2 = null) {      function setVal(&$form, $maj, $validation, &$dnu1 = null, $dnu2 = null) {
200          // parent::setVal($form, $maj, $validation);          // parent::setVal($form, $maj, $validation);
201          //          //
202          $form->setVal('json_payload', $this->view_form_json(true));          if ($this->getVal('stream') == "output") {
203                $form->setVal('json_payload', $this->view_form_json(true));
204            } else {
205                $form->setVal('json_payload', htmlentities($this->getVal('json_payload')));
206            }
207        }
208    
209        function setLib(&$form, $maj) {
210            parent::setLib($form, $maj);
211    
212            // Récupération du mode de l'action
213            $crud = $this->get_action_crud($maj);
214    
215            // MODE different de CREER
216            if ($maj != 0 || $crud != 'create') {
217                $form->setLib('json_payload', '');
218            }
219      }      }
220    
221      public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {      public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {
222          parent::verifier($val, $dnu1, $dnu2);          $ret = parent::verifier($val, $dnu1, $dnu2);
223          //  
224          if (array_key_exists('timestamp_log', $this->valF) === true          // une tâche entrante doit avoir un type et une payload non-vide
225              && is_array(json_decode($this->valF['timestamp_log'], true)) === false) {          if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
226              //              if (isset($this->valF['type']) === false) {
227              $this->correct = false;                  $this->correct = false;
228              $this->addToMessage(sprintf(                  $this->addToMessage(sprintf(
229                  __("Le champ %s doit être dans un format JSON valide."),                      __("Le champ %s est obligatoire pour une tâche entrante."),
230                  sprintf('<span class="bold">%s</span>', $this->getLibFromField('timestamp_log'))                      sprintf('<span class="bold">%s</span>', $this->getLibFromField('type'))
231              ));                  ));
232                    $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
233                }
234                if (isset($this->valF['json_payload']) === false) {
235                    $this->correct = false;
236                    $this->addToMessage(sprintf(
237                        __("Le champ %s est obligatoire pour une tâche entrante."),
238                        sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
239                    ));
240                    $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
241                }
242            }
243    
244            // les JSONs doivent être décodables
245            foreach(array('json_payload', 'timestamp_log') as $key) {
246                if (isset($this->valF[$key]) && ! empty($this->valF[$key]) && (
247                        is_array(json_decode($this->valF[$key], true)) === false
248                        || json_last_error() !== JSON_ERROR_NONE)) {
249                    $this->correct = false;
250                    $champ_text = sprintf('<span class="bold">%s</span>', $this->getLibFromField($key));
251                    $this->addToMessage(sprintf(
252                        __("Le champ %s doit être dans un format JSON valide (erreur: %s).".
253                        "<p>%s valF:</br><pre>%s</pre></p>".
254                        "<p>%s val:</br><pre>%s</pre></p>".
255                        "<p>%s POST:</br><pre>%s</pre></p>".
256                        "<p>%s submitted POST value:</br><pre>%s</pre></p>"),
257                        $champ_text,
258                        json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'),
259                        $champ_text,
260                        $this->valF[$key],
261                        $champ_text,
262                        $val[$key],
263                        $champ_text,
264                        isset($_POST[$key]) ? $_POST[$key] : '',
265                        $champ_text,
266                        $this->f->get_submitted_post_value($key)
267                    ));
268                    $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);
269                }
270            }
271    
272            // une tâche entrante doit avoir une payload avec les clés requises
273            if ($this->correct && (isset($this->valF['stream']) === false ||
274                                   $this->valF['stream'] == 'input')) {
275    
276                // décode la payload JSON
277                $json_payload = json_decode($this->valF['json_payload'], true);
278    
279                // défini une liste de chemin de clés requises
280                $paths = array(
281                    'external_uids/dossier'
282                );
283    
284                // tâche de type création de DI/DA
285                if (isset($this->valF['type']) !== false && $this->valF['type'] == 'create_DI_for_consultation') {
286    
287                    $paths = array_merge($paths, array(
288                        'dossier/dossier',
289                        'dossier/dossier_autorisation_type_detaille_code',
290                        'dossier/date_demande',
291                        'dossier/depot_electronique',
292                    ));
293    
294                    // si l'option commune est activée (mode MC)
295                    if ($this->f->is_option_dossier_commune_enabled()) {
296                        $paths[] = 'dossier/insee';
297                    }
298    
299                    // présence d'un moyen d'identifier la collectivité/le service
300                    if (! isset($json_payload['dossier']['acteur']) &&
301                            ! isset($json_payload['dossier']['om_collectivite'])) {
302                        $this->correct = false;
303                        $this->addToMessage(sprintf(
304                            __("L'une des clés %s ou %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
305                            sprintf('<span class="bold">%s</span>', 'dossier/acteur'),
306                            sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),
307                            sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
308                        ));
309                        $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
310                    }
311                }
312    
313                // pas d'erreur déjà trouvée
314                if($this->correct) {
315    
316                    // pour chaque chemin
317                    foreach($paths as $path) {
318    
319                        // décompose le chemin
320                        $tokens = explode('/', $path);
321                        $cur_depth = $json_payload;
322    
323                        // descend au et à mesure dans l'arborescence du chemin
324                        foreach($tokens as $token) {
325    
326                            // en vérifiant que chaque élément du chemin est défini et non-nul
327                            if (isset($cur_depth[$token]) === false) {
328    
329                                // sinon on produit une erreur
330                                $this->correct = false;
331                                $this->addToMessage(sprintf(
332                                    __("La clé %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
333                                    sprintf('<span class="bold">%s</span>', $path),
334                                    sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
335                                ));
336                                $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
337                                break 2;
338                            }
339                            $cur_depth = $cur_depth[$token];
340                        }
341                    }
342                }
343          }          }
344    
345            return $ret && $this->correct;
346      }      }
347    
348      protected function task_exists(string $type, string $object_id) {      protected function task_exists(string $type, string $object_id) {
# Line 141  class task extends task_gen { Line 354  class task extends task_gen {
354              AND object_id = \'%4$s\'              AND object_id = \'%4$s\'
355              ',              ',
356              DB_PREFIXE,              DB_PREFIXE,
357              'done',              self::STATUS_DONE,
358              $type,              $type,
359              $object_id              $object_id
360          );          );
# Line 153  class task extends task_gen { Line 366  class task extends task_gen {
366      }      }
367    
368      /**      /**
369         * TRIGGER - triggerajouter.
370         *
371         * @param string $id
372         * @param null &$dnu1 @deprecated  Ne pas utiliser.
373         * @param array $val Tableau des valeurs brutes.
374         * @param null $dnu2 @deprecated  Ne pas utiliser.
375         *
376         * @return boolean
377         */
378        function triggerajouter($id, &$dnu1 = null, $val = array(), $dnu2 = null) {
379    
380            // tâche entrante
381            if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
382    
383                // décode la paylod JSON pour extraire les données métiers à ajouter
384                // en tant que métadonnées de la tâche
385                $json_payload = json_decode($this->valF['json_payload'], true);
386    
387                // si la tâche possède déjà une clé dossier
388                if (isset($json_payload['dossier']['dossier']) &&
389                        ! empty($json_payload['dossier']['dossier'])) {
390                    $this->valF["dossier"] = $json_payload['dossier']['dossier'];
391                }
392    
393                /**
394                 * Puisque le dossier n'a potentiellement pas encore été créé
395                 * alors il faut ne faut chercher à récupérer le numéro de dossier openADS
396                 * à partir de l'external_uids (en passant par la table de liens)
397                // sinon si la tâche possède une clé external_uids/dossier
398                elseif(isset($json_payload['external_uids']['dossier']) &&
399                        ! empty($json_payload['external_uids']['dossier'])) {
400    
401                    // instancie l'objet lien_id_interne_uid_externe
402                    $inst_lien = $this->f->get_inst__om_dbform(array(
403                        "obj" => "lien_id_interne_uid_externe",
404                        "idx" => ']',
405                    ));
406                    if(! $dossier = $inst_lien->get_id_dossier_from_external_uid(
407                            $json_payload['external_uids']['dossier'])){
408                        $error_msg = sprintf(
409                            __("Aucune correspondance de dossier pour l'external_uid.dossier '%s'."),
410                            $json_payload['external_uids']['dossier']);
411                        $this->addToLog(__METHOD__."() : erreur : $error_msg", DEBUG_MODE);
412                        $this->addToMessage($error_msg);
413                        $this->correct = false;
414                        return false;
415                    }
416                    $this->valF["dossier"] = $dossier;
417                }*/
418            }
419        }
420    
421        /**
422       * TREATMENT - add_task       * TREATMENT - add_task
423       * Ajoute un enregistrement.       * Ajoute un enregistrement.
424       *       *
# Line 164  class task extends task_gen { Line 430  class task extends task_gen {
430          $timestamp_log = json_encode(array(          $timestamp_log = json_encode(array(
431              'creation_date' => date('Y-m-d H:i:s'),              'creation_date' => date('Y-m-d H:i:s'),
432          ));          ));
433    
434            // Si la tâche est de type ajout_piece et de stream input alors on ajoute le fichier
435            // et on ajoute l'uid dans le champ json_payload avant l'ajout de la tâche
436            if (isset($params['val']['type'])
437                && $params['val']['type'] == "add_piece"
438                && isset($params['val']['stream'])
439                && $params['val']['stream'] == "input" ) {
440                //
441                $json_payload = json_decode($params['val']['json_payload'], true);
442                $document_numerise = $json_payload['document_numerise'];
443                $file_content = base64_decode($document_numerise["file_content"]);
444                if ($file_content === false){
445                    $this->addToMessage(__("Le contenu du fichier lié à la tâche n'a pas pu etre recupere."));
446                    return $this->end_treatment(__METHOD__, false);
447                }
448                $metadata = array(
449                    "filename" => $document_numerise['nom_fichier'],
450                    "size" => strlen($file_content),
451                    "mimetype" => $document_numerise['file_content_type'],
452                    "date_creation" => $document_numerise['date_creation'],
453                );
454                $uid_fichier = $this->f->storage->create($file_content, $metadata, "from_content");
455                if ($uid_fichier === OP_FAILURE) {
456                    $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));
457                    return $this->end_treatment(__METHOD__, false);
458                }
459                $json_payload["document_numerise"]["uid"] = $uid_fichier;
460                // Le fichier a été ajouté nous n'avons plus besoin du champ file_content dans la payload
461                unset($json_payload["document_numerise"]["file_content"]);
462                $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
463            }
464    
465          // Mise à jour du DI          // Mise à jour du DI
466          $valF = array(          $valF = array(
467              'task' => '',              'task' => '',
468              'type' => $params['val']['type'],              'type' => $params['val']['type'],
469              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
470              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : 'new',              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,
471              'object_id' => $params['val']['object_id'],              'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',
472              'dossier' => $params['val']['dossier'],              'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',
473              'json_payload' => '{}',              'stream' => isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output',
474          );              'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',
475          $task_exists = $this->task_exists($valF['type'], $valF['object_id']);          );
476          if ($valF['type'] === 'modification_DI' && $task_exists === false) {  
477              $task_exists = $this->task_exists('creation_DI', $valF['object_id']);          // tâche sortante
478          }          if($valF["stream"] == "output"){
479          if ($task_exists !== false) {  
480              $inst_task = $this->f->get_inst__om_dbform(array(              // TODO expliquer ce code
481                  "obj" => "task",              $task_exists = $this->task_exists($valF['type'], $valF['object_id']);
482                  "idx" => $task_exists,              if ($valF['type'] === 'modification_DI' && $task_exists === false) {
483              ));                  $task_exists = $this->task_exists('creation_DI', $valF['object_id']);
484              $update_state = $inst_task->getVal('state');              }
485              if (isset($params['update_val']['state']) === true) {              if ($task_exists !== false) {
486                  $update_state = $params['update_val']['state'];                  $inst_task = $this->f->get_inst__om_dbform(array(
487              }                      "obj" => "task",
488              $update_params = array(                      "idx" => $task_exists,
489                  'val' => array(                  ));
490                      'state' => $update_state,                  $update_state = $inst_task->getVal('state');
491                  ),                  if (isset($params['update_val']['state']) === true) {
492              );                      $update_state = $params['update_val']['state'];
493              return $inst_task->update_task($update_params);                  }
494                    $update_params = array(
495                        'val' => array(
496                            'state' => $update_state,
497                        ),
498                    );
499                    return $inst_task->update_task($update_params);
500                }
501          }          }
502    
503          $add = $this->ajouter($valF);          $add = $this->ajouter($valF);
504            $this->addToLog(__METHOD__."(): retour de l'ajout de tâche: ".var_export($add, true), VERBOSE_MODE);
505          if ($add === false) {          if ($add === false) {
506              $this->addToLog($this->msg, DEBUG_MODE);              $this->addToLog(__METHOD__."(): ".$this->msg, DEBUG_MODE);
507              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
508          }          }
509          return $this->end_treatment(__METHOD__, true);          return $this->end_treatment(__METHOD__, true);
# Line 213  class task extends task_gen { Line 520  class task extends task_gen {
520          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
521          $timestamp_log = $this->get_timestamp_log();          $timestamp_log = $this->get_timestamp_log();
522          if ($timestamp_log === false) {          if ($timestamp_log === false) {
523              $this->addToLog(__('XXX'), DEBUG_MODE);              $this->addToLog(__METHOD__."(): erreur timestamp log", DEBUG_MODE);
524              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
525          }          }
526          array_push($timestamp_log, array(          array_push($timestamp_log, array(
# Line 228  class task extends task_gen { Line 535  class task extends task_gen {
535              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
536              'state' => $params['val']['state'],              'state' => $params['val']['state'],
537              'object_id' => $this->getVal('object_id'),              'object_id' => $this->getVal('object_id'),
538                'stream' => $this->getVal('stream'),
539              'dossier' => $this->getVal('dossier'),              'dossier' => $this->getVal('dossier'),
540              'json_payload' => $this->getVal('json_payload'),              'json_payload' => $this->getVal('json_payload'),
541          );          );
# Line 242  class task extends task_gen { Line 550  class task extends task_gen {
550      /**      /**
551       * 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
552       * l'enregistrement instancié.       * l'enregistrement instancié.
553       *       *
554       * @param  array  $params Tableau des paramètres       * @param  array  $params Tableau des paramètres
555       * @return array sinon false en cas d'erreur       * @return array sinon false en cas d'erreur
556       */       */
# Line 489  class task extends task_gen { Line 797  class task extends task_gen {
797          return $val_architecte;          return $val_architecte;
798      }      }
799    
800      protected function get_instruction_data(string $dossier, $type = 'decision') {      protected function get_instruction_data(string $dossier, $type = 'decision', $extra_params = array()) {
801          $val_instruction = null;          $val_instruction = null;
802          $instruction_with_doc = null;          $instruction_with_doc = null;
803          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
# Line 503  class task extends task_gen { Line 811  class task extends task_gen {
811          if ($type === 'incompletude') {          if ($type === 'incompletude') {
812              $idx = $inst_di->get_last_instruction_incompletude();              $idx = $inst_di->get_last_instruction_incompletude();
813          }          }
814            // XXX Permet de récupérer l'instruction par son identifiant
815            if ($type === 'with-id') {
816                $idx = $extra_params['with-id'];
817            }
818          $inst_instruction = $this->f->get_inst__om_dbform(array(          $inst_instruction = $this->f->get_inst__om_dbform(array(
819              "obj" => "instruction",              "obj" => "instruction",
820              "idx" => $idx,              "idx" => $idx,
# Line 548  class task extends task_gen { Line 860  class task extends task_gen {
860    
861      protected function sort_instruction_data(array $values, array $res) {      protected function sort_instruction_data(array $values, array $res) {
862          $fields = array(          $fields = array(
863                "date_evenement",
864              "date_envoi_signature",              "date_envoi_signature",
865              "date_retour_signature",              "date_retour_signature",
866              "date_envoi_rar",              "date_envoi_rar",
# Line 609  class task extends task_gen { Line 922  class task extends task_gen {
922      }      }
923    
924      protected function view_form_json($in_field = false) {      protected function view_form_json($in_field = false) {
         // Mise à jour des valeurs  
         if ($this->f->get_submitted_post_value('valid') === 'true'  
             && $this->f->get_submitted_post_value('state') !== null) {  
             //  
             $params = array(  
                 '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);  
         }  
         //  
         if ($this->f->get_submitted_post_value('valid') === 'true'  
             && $this->f->get_submitted_post_value('external_uid') !== null) {  
             //  
             $inst_lien = $this->f->get_inst__om_dbform(array(  
                 "obj" => "lien_id_interne_uid_externe",  
                 "idx" => ']',  
             ));  
             $valF = array(  
                 'lien_id_interne_uid_externe' => '',  
                 'object' => $this->get_lien_objet_by_type($this->getVal('type')),  
                 '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);  
         }  
   
925          //          //
926          if ($this->f->get_submitted_post_value('valid') === null) {          if ($this->f->get_submitted_post_value('valid') === null) {
927              // Liste des valeurs à afficher              // Liste des valeurs à afficher
# Line 679  class task extends task_gen { Line 940  class task extends task_gen {
940                  $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']);
941                  $val_external_uid = array();                  $val_external_uid = array();
942                  $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');
943                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
944              }              }
945              //              //
946              if ($this->getVal('type') === 'creation_DI'              if ($this->getVal('type') === 'creation_DI'
# Line 695  class task extends task_gen { Line 956  class task extends task_gen {
956                  $val_external_uid = array();                  $val_external_uid = array();
957                  $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');
958                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
959                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
960              }              }
961              //              //
962              if ($this->getVal('type') === 'qualification_DI') {              if ($this->getVal('type') === 'qualification_DI') {
# Line 703  class task extends task_gen { Line 964  class task extends task_gen {
964                  $val_external_uid = array();                  $val_external_uid = array();
965                  $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');
966                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
967                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
968              }              }
969              //              //
970              if ($this->getVal('type') === 'ajout_piece') {              if ($this->getVal('type') === 'ajout_piece') {
# Line 713  class task extends task_gen { Line 974  class task extends task_gen {
974                  $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');
975                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
976                  $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');
977                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
978              }              }
979              //              //
980              if ($this->getVal('type') === 'decision_DI') {              if ($this->getVal('type') === 'decision_DI') {
# Line 722  class task extends task_gen { Line 983  class task extends task_gen {
983                  $val_external_uid = array();                  $val_external_uid = array();
984                  $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');
985                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
986                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
987              }              }
988              //              //
989              if ($this->getVal('type') === 'incompletude_DI') {              if ($this->getVal('type') === 'incompletude_DI') {
# Line 731  class task extends task_gen { Line 992  class task extends task_gen {
992                  $val_external_uid = array();                  $val_external_uid = array();
993                  $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');
994                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
995                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
996              }              }
997              //              //
998              if ($this->getVal('type') === 'completude_DI') {              if ($this->getVal('type') === 'completude_DI') {
# Line 740  class task extends task_gen { Line 1001  class task extends task_gen {
1001                  $val_external_uid = array();                  $val_external_uid = array();
1002                  $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');
1003                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1004                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1005                }
1006                //
1007                if ($this->getVal('type') === 'pec_metier_consultation') {
1008                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1009                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1010                    $val_external_uid = array();
1011                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1012                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1013                    $val_external_uid['consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'consultation');
1014                    $val['external_uids'] = $val_external_uid;
1015              }              }
1016    
1017              if ($in_field === true) {              if ($in_field === true) {
1018                  return json_encode($val, JSON_PRETTY_PRINT ,JSON_UNESCAPED_SLASHES);                  return json_encode($val, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
1019              } else {              } else {
1020                  // Liste des valeurs affichée en JSON                  // Liste des valeurs affichée en JSON
1021                  printf(json_encode($val, JSON_UNESCAPED_SLASHES));                  printf(json_encode($val, JSON_UNESCAPED_SLASHES));
# Line 752  class task extends task_gen { Line 1023  class task extends task_gen {
1023          }          }
1024      }      }
1025    
1026      protected function get_lien_objet_by_type($type) {      function post_update_task() {
1027            // Mise à jour des valeurs
1028            //
1029            $params = array(
1030                'val' => array(
1031                    'state' => $this->f->get_submitted_post_value('state')
1032                ),
1033            );
1034            $update = $this->update_task($params);
1035            $message_class = "valid";
1036            $message = $this->msg;
1037            if ($update === false) {
1038                $this->addToLog($this->msg, DEBUG_MODE);
1039                $message_class = "error";
1040                $message = sprintf(
1041                    '%s %s',
1042                    __('Impossible de mettre à jour la tâche.'),
1043                    __('Veuillez contacter votre administrateur.')
1044                );
1045            }
1046            $this->f->displayMessage($message_class, $message);
1047            //
1048            $inst_lien = $this->f->get_inst__om_dbform(array(
1049                "obj" => "lien_id_interne_uid_externe",
1050                "idx" => ']',
1051            ));
1052            $valF = array(
1053                'lien_id_interne_uid_externe' => '',
1054                'object' => $this->get_lien_objet_by_type($this->getVal('type')),
1055                'object_id' => $this->getVal('object_id'),
1056                'external_uid' => $this->f->get_submitted_post_value('external_uid'),
1057            );
1058            $add = $inst_lien->ajouter($valF);
1059            $message_class = "valid";
1060            $message = $inst_lien->msg;
1061            if ($add === false) {
1062                $this->addToLog($inst_lien->msg, DEBUG_MODE);
1063                $message_class = "error";
1064                $message = sprintf(
1065                    '%s %s',
1066                    __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),
1067                    __('Veuillez contacter votre administrateur.')
1068                );
1069            }
1070            $this->f->displayMessage($message_class, $message);
1071        }
1072    
1073        function post_add_task() {
1074            // TODO Tester de remplacer la ligne de json_payload par un $_POST
1075            $result = $this->add_task(array(
1076                'val' => array(
1077                    'stream' => 'input',
1078                    'json_payload' => html_entity_decode($this->f->get_submitted_post_value('json_payload')),
1079                    'type' => $this->f->get_submitted_post_value('type'),
1080                )
1081            ));
1082            $message = $this->msg;
1083            $message_class = "valid";
1084            if ($result === false){
1085                $this->addToLog($this->msg, DEBUG_MODE);
1086                $message_class = "error";
1087                $message = sprintf(
1088                    '%s %s',
1089                    __('Impossible d\'ajouter la tâche.'),
1090                    __('Veuillez contacter votre administrateur.')
1091                );
1092            }
1093            $this->f->displayMessage($message_class, $message);
1094        }
1095    
1096        function get_lien_objet_by_type($type) {
1097          //          //
1098          $objet = '';          $objet = '';
1099          if ($type === 'creation_DA') {          if ($type === 'creation_DA') {
1100              $objet = 'dossier_autorisation';              $objet = 'dossier_autorisation';
1101          }          }
1102          if ($type === 'creation_DI'          if ($type === 'creation_DI'
1103                || $type === 'create_DI_for_consultation'
1104              || $type === 'depot_DI'              || $type === 'depot_DI'
1105              || $type === 'modification_DI'              || $type === 'modification_DI'
1106              || $type === 'qualification_DI'              || $type === 'qualification_DI'
1107              || $type === 'decision_DI'              || $type === 'decision_DI'
1108              || $type === 'incompletude_DI'              || $type === 'incompletude_DI'
1109              || $type === 'completude_DI') {              || $type === 'completude_DI'
1110                || $type === 'pec_metier_consultation') {
1111              //              //
1112              $objet = 'dossier';              $objet = 'dossier';
1113          }          }
1114          if ($type === 'ajout_piece') {          if ($type === 'ajout_piece') {
1115              $objet = 'document_numerise';              $objet = 'document_numerise';
1116          }          }
1117            // La tâche entrante se nomme add_piece
1118            if ($type === 'add_piece') {
1119                $objet = 'piece';
1120            }
1121          return $objet;          return $objet;
1122      }      }
1123    
1124      function setLayout(&$form, $maj) {      function setLayout(&$form, $maj) {
1125          $form->setBloc('json_payload', 'D', '', 'col_6');  
1126              $form->setFieldset('json_payload', 'DF', _("json_payload"), "collapsible, startClosed");          // Récupération du mode de l'action
1127          $form->setBloc('json_payload', 'F');          $crud = $this->get_action_crud($maj);
1128    
1129            // MODE different de CREER
1130            if ($maj != 0 || $crud != 'create') {
1131                $form->setBloc('json_payload', 'D', '', 'col_6');
1132                    $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");
1133                $form->setBloc('json_payload', 'F');
1134            }
1135          $form->setBloc('timestamp_log', 'DF', '', 'col_9');          $form->setBloc('timestamp_log', 'DF', '', 'col_9');
1136      }      }
1137    

Legend:
Removed from v.9667  
changed lines
  Added in v.9838

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26