/[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 9436 by softime, Tue Jul 21 10:31:15 2020 UTC trunk/obj/task.class.php revision 11057 by softime, Thu Dec 23 15:34:03 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        const STATUS_CANCELED = 'canceled';
17    
18        /**
19         * Liste des types de tâche concernant les services instructeurs
20         */
21        const TASK_TYPE_SI = array(
22            'creation_DA',
23            'creation_DI',
24            'depot_DI',
25            'modification_DI',
26            'qualification_DI',
27            'decision_DI',
28            'incompletude_DI',
29            'completude_DI',
30            'ajout_piece',
31            'add_piece',
32            'creation_consultation',
33            'modification_DA',
34            'create_DI',
35            'notification_recepisse',
36            'notification_instruction',
37            'notification_decision',
38        );
39    
40        /**
41         * Liste des types de tâche concernant les services consultés
42         */
43        const TASK_TYPE_SC = array(
44            'create_DI_for_consultation',
45            'avis_consultation',
46            'pec_metier_consultation',
47            'create_message',
48            'notification_recepisse',
49            'notification_instruction',
50            'notification_decision',
51            'prescription',
52        );
53    
54        /**
55         * Catégorie de la tâche
56         */
57        var $category = 'platau';
58    
59      /**      /**
60       * Définition des actions disponibles sur la classe.       * Définition des actions disponibles sur la classe.
61       *       *
# Line 19  class task extends task_gen { Line 69  class task extends task_gen {
69              "view" => "view_json_data",              "view" => "view_json_data",
70              "permission_suffix" => "consulter",              "permission_suffix" => "consulter",
71          );          );
72            $this->class_actions[997] = array(
73                "identifier" => "json_data",
74                "view" => "post_update_task",
75                "permission_suffix" => "modifier",
76            );
77            $this->class_actions[996] = array(
78                "identifier" => "json_data",
79                "view" => "post_add_task",
80                "permission_suffix" => "ajouter",
81            );
82        }
83    
84        public function setvalF($val = array()) {
85    
86            // // les guillets doubles sont remplacés automatiquement par des simples
87            // // dans core/om_formulaire.clasS.php::recupererPostvar()
88            // // voir le ticket https://dev.atreal.fr/projets/openmairie/tracker/209
89            // // ceci est un hack sale temporaire en attendant résolution du ticket
90            // foreach(array('json_payload', 'timestamp_log') as $key) {
91            //     if (isset($val[$key]) && ! empty($val[$key]) &&
92            //             isset($_POST[$key]) && ! empty($_POST[$key])) {
93            //         $submited_payload = $_POST[$key];
94            //         if (! empty($submited_payload)) {
95            //             $new_payload = str_replace("'", '"', $val[$key]);
96            //             if ($new_payload == $submited_payload ||
97            //                     strpos($submited_payload, '"') === false) {
98            //                 $val[$key] = $new_payload;
99            //             }
100            //             else {
101            //                 $error_msg = sprintf(
102            //                     __("La convertion des guillemets de la payload JSON '%s' ".
103            //                         "n'est pas idempotente (courante: %s, postée: %s, convertie: %s)"),
104            //                     $key, var_export($val[$key], true), var_export($submited_payload, true),
105            //                     var_export($new_payload, true));
106            //                 $this->correct = false;
107            //                 $this->addToMessage($error_msg);
108            //                 $this->addToLog(__METHOD__."() erreur : $error_msg", DEBUG_MODE);
109            //                 return false;
110            //             }
111            //         }
112            //     }
113            // }
114    
115            parent::setvalF($val);
116    
117            // XXX Ancien code : permet de ne pas avoir d'erreru lors de la modification d'une task
118            if (array_key_exists('timestamp_log', $val) === true) {
119                $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);
120            }
121    
122            // récupération de l'ID de l'objet existant
123            $id = property_exists($this, 'id') ? $this->id : null;
124            if(isset($val[$this->clePrimaire])) {
125                $id = $val[$this->clePrimaire];
126            } elseif(isset($this->valF[$this->clePrimaire])) {
127                $id = $this->valF[$this->clePrimaire];
128            }
129    
130            // MODE MODIFIER
131            if (! empty($id)) {
132    
133                // si aucune payload n'est fourni (devrait toujours être le cas)
134                if (! isset($val['json_payload']) || empty($val['json_payload'])) {
135    
136                    // récupère l'objet existant
137                    $existing = $this->f->findObjectById('task', $id);
138                    if (! empty($existing)) {
139    
140                        // récupère la payload de l'objet
141                        $val['json_payload'] = $existing->getVal('json_payload');
142                        $this->valF['json_payload'] = $existing->getVal('json_payload');
143                        $this->f->addToLog(__METHOD__."() récupère la payload de la tâche existante ".
144                            "'$id': ".$existing->getVal('json_payload'), EXTRA_VERBOSE_MODE);
145                    }
146                }
147            }
148    
149            if (array_key_exists('category', $val) === false
150                || $this->valF['category'] === ''
151                || $this->valF['category'] === null) {
152                //
153                $this->valF['category'] = $this->category;
154            }
155      }      }
156    
157      protected function task_exists(string $type, string $object_id) {      /**
158         *
159         * @return array
160         */
161        function get_var_sql_forminc__champs() {
162            return array(
163                "task",
164                "type",
165                "state",
166                "object_id",
167                "dossier",
168                "stream",
169                "json_payload",
170                "timestamp_log",
171                "category",
172            );
173        }
174    
175        function setType(&$form, $maj) {
176            parent::setType($form, $maj);
177    
178            // Récupération du mode de l'action
179            $crud = $this->get_action_crud($maj);
180    
181            // ALL
182            $form->setType("category", "hidden");
183    
184            // MODE CREER
185            if ($maj == 0 || $crud == 'create') {
186                $form->setType("state", "select");
187                $form->setType("stream", "select");
188                $form->setType("json_payload", "textarea");
189            }
190            // MDOE MODIFIER
191            if ($maj == 1 || $crud == 'update') {
192                $form->setType("state", "select");
193                $form->setType("stream", "select");
194                $form->setType("json_payload", "jsonprettyprint");
195            }
196            // MODE CONSULTER
197            if ($maj == 3 || $crud == 'read') {
198                $form->setType('dossier', 'link');
199                $form->setType('json_payload', 'jsonprettyprint');
200            }
201    
202        }
203    
204        /**
205         *
206         */
207        function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {
208            if($maj < 2) {
209    
210                $contenu = array();
211                foreach(array('DRAFT', 'NEW', 'PENDING', 'DONE', 'ERROR', 'DEBUG', 'ARCHIVED', 'CANCELED') as $key) {
212                    $const_name = 'STATUS_'.$key;
213                    $const_value = constant("self::$const_name");
214                    $contenu[0][] = $const_value;
215                    $contenu[1][] = __($const_value);
216                }
217    
218                $form->setSelect("state", $contenu);
219    
220                $contenu_stream =array();
221                $contenu_stream[0][0]="input";
222                $contenu_stream[1][0]=_('input');
223                $contenu_stream[0][1]="output";
224                $contenu_stream[1][1]=_('output');
225                $form->setSelect("stream", $contenu_stream);
226    
227            }
228    
229            if ($maj == 3) {
230                if ($this->getVal('stream') == 'output') {
231                    $inst_dossier = $this->f->get_inst__om_dbform(array(
232                        "obj" => "dossier",
233                        "idx" => $form->val['dossier'],
234                    ));
235    
236                    if($form->val['type'] == "creation_DA"
237                        || $form->val['type'] == "modification_DA"){
238                        //
239                        $obj_link = 'dossier_autorisation';
240                    } else {
241                        $obj_link = 'dossier_instruction';
242                    }
243    
244                    $params = array();
245                    $params['obj'] = $obj_link;
246                    $params['libelle'] = $inst_dossier->getVal('dossier');
247                    $params['title'] = "Consulter le dossier";
248                    $params['idx'] = $form->val['dossier'];
249                    $form->setSelect("dossier", $params);
250                }
251            }
252        }
253    
254        /**
255         * SETTER_FORM - setVal (setVal).
256         *
257         * @return void
258         */
259        function setVal(&$form, $maj, $validation, &$dnu1 = null, $dnu2 = null) {
260            // parent::setVal($form, $maj, $validation);
261            //
262            if ($this->getVal('stream') == "output") {
263                $form->setVal('json_payload', $this->view_form_json(true));
264            } else {
265                $form->setVal('json_payload', htmlentities($this->getVal('json_payload')));
266            }
267        }
268    
269        function setLib(&$form, $maj) {
270            parent::setLib($form, $maj);
271    
272            // Récupération du mode de l'action
273            $crud = $this->get_action_crud($maj);
274    
275            // MODE different de CREER
276            if ($maj != 0 || $crud != 'create') {
277                $form->setLib('json_payload', '');
278            }
279        }
280    
281        public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {
282            $ret = parent::verifier($val, $dnu1, $dnu2);
283    
284            // une tâche entrante doit avoir un type et une payload non-vide
285            if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
286                if (isset($this->valF['type']) === false) {
287                    $this->correct = false;
288                    $this->addToMessage(sprintf(
289                        __("Le champ %s est obligatoire pour une tâche entrante."),
290                        sprintf('<span class="bold">%s</span>', $this->getLibFromField('type'))
291                    ));
292                    $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
293                }
294                if (isset($this->valF['json_payload']) === false) {
295                    $this->correct = false;
296                    $this->addToMessage(sprintf(
297                        __("Le champ %s est obligatoire pour une tâche entrante."),
298                        sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
299                    ));
300                    $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
301                }
302            }
303    
304            // les JSONs doivent être décodables
305            foreach(array('json_payload', 'timestamp_log') as $key) {
306                if (isset($this->valF[$key]) && ! empty($this->valF[$key]) && (
307                        is_array(json_decode($this->valF[$key], true)) === false
308                        || json_last_error() !== JSON_ERROR_NONE)) {
309                    $this->correct = false;
310                    $champ_text = sprintf('<span class="bold">%s</span>', $this->getLibFromField($key));
311                    $this->addToMessage(sprintf(
312                        __("Le champ %s doit être dans un format JSON valide (erreur: %s).".
313                        "<p>%s valF:</br><pre>%s</pre></p>".
314                        "<p>%s val:</br><pre>%s</pre></p>".
315                        "<p>%s POST:</br><pre>%s</pre></p>".
316                        "<p>%s submitted POST value:</br><pre>%s</pre></p>"),
317                        $champ_text,
318                        json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'),
319                        $champ_text,
320                        $this->valF[$key],
321                        $champ_text,
322                        $val[$key],
323                        $champ_text,
324                        isset($_POST[$key]) ? $_POST[$key] : '',
325                        $champ_text,
326                        $this->f->get_submitted_post_value($key)
327                    ));
328                    $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);
329                }
330            }
331    
332            // une tâche entrante doit avoir une payload avec les clés requises
333            if ($this->correct && (isset($this->valF['stream']) === false ||
334                                   $this->valF['stream'] == 'input')) {
335    
336                // décode la payload JSON
337                $json_payload = json_decode($this->valF['json_payload'], true);
338    
339                // défini une liste de chemin de clés requises
340                $paths = array();
341                if ($this->valF['category'] === 'platau') {
342                    $paths = array(
343                        'external_uids/dossier'
344                    );
345                }
346    
347                // tâche de type création de DI/DA
348                if (isset($this->valF['type']) !== false && $this->valF['type'] == 'create_DI_for_consultation') {
349    
350                    $paths = array_merge($paths, array(
351                        'dossier/dossier',
352                        'dossier/dossier_autorisation_type_detaille_code',
353                        'dossier/date_demande',
354                        'dossier/depot_electronique',
355                    ));
356    
357                    // si l'option commune est activée (mode MC)
358                    if ($this->f->is_option_dossier_commune_enabled()) {
359                        $paths[] = 'dossier/insee';
360                    }
361    
362                    // présence d'un moyen d'identifier la collectivité/le service
363                    if (! isset($json_payload['external_uids']['acteur']) &&
364                            ! isset($json_payload['dossier']['om_collectivite'])) {
365                        $this->correct = false;
366                        $this->addToMessage(sprintf(
367                            __("L'une des clés %s ou %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
368                            sprintf('<span class="bold">%s</span>', 'external_uids/acteur'),
369                            sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),
370                            sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
371                        ));
372                        $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
373                    }
374                }
375    
376                // pas d'erreur déjà trouvée
377                if($this->correct) {
378    
379                    // pour chaque chemin
380                    foreach($paths as $path) {
381    
382                        // décompose le chemin
383                        $tokens = explode('/', $path);
384                        $cur_depth = $json_payload;
385    
386                        // descend au et à mesure dans l'arborescence du chemin
387                        foreach($tokens as $token) {
388    
389                            // en vérifiant que chaque élément du chemin est défini et non-nul
390                            if (isset($cur_depth[$token]) === false) {
391    
392                                // sinon on produit une erreur
393                                $this->correct = false;
394                                $this->addToMessage(sprintf(
395                                    __("La clé %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
396                                    sprintf('<span class="bold">%s</span>', $path),
397                                    sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
398                                ));
399                                $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
400                                break 2;
401                            }
402                            $cur_depth = $cur_depth[$token];
403                        }
404                    }
405                }
406            }
407    
408            return $ret && $this->correct;
409        }
410    
411        /**
412         * [task_exists description]
413         * @param  string $type      [description]
414         * @param  string $object_id [description]
415         * @param  bool   $is_not_done   [description]
416         * @return [type]            [description]
417         */
418        public function task_exists(string $type, string $object_id, string $dossier = null, bool $is_not_done = true) {
419          $query = sprintf('          $query = sprintf('
420              SELECT task              SELECT task
421              FROM %1$stask              FROM %1$stask
422              WHERE state != \'%2$s\'              WHERE %2$s
423              AND type = \'%3$s\'              type = \'%3$s\'
424              AND object_id = \'%4$s\'              AND (object_id = \'%4$s\'
425                %5$s)
426                AND state != \'%6$s\'
427              ',              ',
428              DB_PREFIXE,              DB_PREFIXE,
429              'done',              $is_not_done == true ? 'state != \''.self::STATUS_DONE.'\' AND' : '',
430              $type,              $type,
431              $object_id              $object_id,
432                $dossier !== null ? sprintf('OR dossier = \'%s\'', $dossier) : '',
433                self::STATUS_CANCELED
434          );          );
435          $res = $this->f->get_one_result_from_db_query($query);          $res = $this->f->get_one_result_from_db_query($query);
436          if ($res['result'] !== null && $res['result'] !== '') {          if ($res['result'] !== null && $res['result'] !== '') {
# Line 42  class task extends task_gen { Line 440  class task extends task_gen {
440      }      }
441    
442      /**      /**
443         * Permet la recherche multi-critères des tasks.
444         *
445         * @param  array  $search_values Chaque entrée du tableau est une ligne dans le WHERE
446         * @return mixed                 Retourne le résultat de la requête ou false
447         */
448        public function task_exists_multi_search(array $search_values) {
449            $query = sprintf('
450                SELECT task
451                FROM %1$stask
452                %2$s
453                %3$s
454                ',
455                DB_PREFIXE,
456                empty($search_values) === false ? ' WHERE ' : '',
457                implode(' AND ', $search_values)
458            );
459            $res = $this->f->get_all_results_from_db_query($query);
460            if (count($res['result']) > 0) {
461                return $res['result'];
462            }
463            return false;
464        }
465    
466        /**
467         * TRIGGER - triggerajouter.
468         *
469         * @param string $id
470         * @param null &$dnu1 @deprecated  Ne pas utiliser.
471         * @param array $val Tableau des valeurs brutes.
472         * @param null $dnu2 @deprecated  Ne pas utiliser.
473         *
474         * @return boolean
475         */
476        function triggerajouter($id, &$dnu1 = null, $val = array(), $dnu2 = null) {
477    
478            // tâche entrante
479            if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
480    
481                // décode la paylod JSON pour extraire les données métiers à ajouter
482                // en tant que métadonnées de la tâche
483                $json_payload = json_decode($this->valF['json_payload'], true);
484    
485                // si la tâche possède déjà une clé dossier
486                if (isset($json_payload['dossier']['dossier']) &&
487                        ! empty($json_payload['dossier']['dossier'])) {
488                    $this->valF["dossier"] = $json_payload['dossier']['dossier'];
489                }
490            }
491    
492            // gestion d'une tache de type notification et de category mail
493            if (isset($val['type'])
494                && (//$val['type'] === 'notification_recepisse'
495                    $val['type'] === 'notification_instruction'
496                    || $val['type'] === 'notification_decision')
497                && isset($val['category'])
498                && $val['category'] === 'mail') {
499                // Récupère la payload de la tache
500                $data = array();
501                $data['instruction_notification'] = $this->get_instruction_notification_data(
502                    $this->valF['category'],
503                    'with-id',
504                    array('with-id' => $this->valF['object_id'])
505                );
506                $data['dossier'] = $this->get_dossier_data($this->valF['dossier']);
507    
508                // Récupère l'instance de la notification
509                $inst_notif = $this->f->get_inst__om_dbform(array(
510                    "obj" => "instruction_notification",
511                    "idx" => $val['object_id'],
512                ));
513                // Envoi le mail et met à jour le suivi
514                $envoiMail = $inst_notif->send_mail_notification_demandeur($data);
515                // Passage de la tache à done si elle a réussi et à error
516                // si l'envoi a échoué
517                $this->valF['state'] = 'done';
518                if ($envoiMail === false) {
519                    $this->valF['state'] = 'error';
520                }
521            }
522        }
523    
524        /**
525         * TRIGGER - triggermodifierapres.
526         *
527         * @param string $id
528         * @param null &$dnu1 @deprecated  Ne pas utiliser.
529         * @param array $val Tableau des valeurs brutes.
530         * @param null $dnu2 @deprecated  Ne pas utiliser.
531         *
532         * @return boolean
533         */
534        public function triggermodifierapres($id, &$dnu1 = null, $val = array(), $dnu2 = null) {
535            parent::triggermodifierapres($id, $dnu1, $val, $dnu2);
536    
537            // Suivi des notificiations
538            if (isset($val['category']) === true
539                && $val['category'] === 'portal'
540                && isset($val['type']) === true
541                && ($val['type'] === 'notification_recepisse'
542                    || $val['type'] === 'notification_instruction'
543                    || $val['type'] === 'notification_decision')) {
544                //
545                if (isset($this->valF['state']) === true
546                    && $this->valF['state'] !== $this->getVal('state')) {
547                    //
548                    $inst_in = $this->f->get_inst__om_dbform(array(
549                        "obj" => "instruction_notification",
550                        "idx" => $val['object_id'],
551                    ));
552                    $valF_in = array();
553                    foreach ($inst_in->champs as $champ) {
554                        $valF_in[$champ] = $inst_in->getVal($champ);
555                    }
556                    $valF_in['date_envoi'] = null;
557                    $valF_in['date_premier_acces'] = null;
558                    //
559                    if ($this->valF['state'] === self::STATUS_DONE) {
560                        //
561                        $valF_in['statut'] = __("envoyé");
562                        $valF_in['commentaire'] = __("Notification traitée");
563                        $valF_in['date_envoi'] = date('d/m/Y H:i:s');
564                        //
565                        $inst_instruction = $this->f->get_inst__om_dbform(array(
566                            "obj" => "instruction",
567                            "idx" => $inst_in->getVal('instruction'),
568                        ));
569                        if ($inst_instruction->has_an_edition() === true) {
570                            $valF_instruction = array();
571                            foreach ($inst_instruction->champs as $champ) {
572                                $valF_instruction[$champ] = $inst_instruction->getVal($champ);
573                            }
574                            $valF_instruction['date_envoi_rar'] = date('d/m/Y');
575                            $valF_instruction['date_retour_rar'] = date('d/m/Y', strtotime('now + 1 day'));
576                            $inst_instruction->setParameter('maj', 1);
577                            $update_instruction = $inst_instruction->modifier($valF_instruction);
578                            if ($update_instruction === false) {
579                                $this->addToLog(__METHOD__."(): ".$inst_instruction->msg, DEBUG_MODE);
580                                return false;
581                            }
582                        }
583                    }
584                    if ($this->valF['state'] === self::STATUS_ERROR) {
585                        $valF_in['statut'] = __("échec");
586                        $valF_in['commentaire'] = __("Le traitement de la notification a échoué");
587                    }
588                    $inst_in->setParameter('maj', 1);
589                    $update_in = $inst_in->modifier($valF_in);
590                    if ($update_in === false) {
591                        $this->addToLog(__METHOD__."(): ".$inst_in->msg, DEBUG_MODE);
592                        return false;
593                    }
594                }
595            }
596    
597            //
598            return true;
599        }
600    
601        /**
602       * TREATMENT - add_task       * TREATMENT - add_task
603       * Ajoute un enregistrement.       * Ajoute un enregistrement.
604       *       *
# Line 50  class task extends task_gen { Line 607  class task extends task_gen {
607       */       */
608      public function add_task($params = array()) {      public function add_task($params = array()) {
609          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
610    
611            // Vérifie si la task doit être ajoutée en fonction du mode de l'application,
612            // seulement pour les tasks output
613            $task_types_si = self::TASK_TYPE_SI;
614            $task_types_sc = self::TASK_TYPE_SC;
615            $stream = isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output';
616            if ($stream === 'output'
617                && isset($params['val']['type']) === true
618                && $this->f->is_option_mode_service_consulte_enabled() === true
619                && in_array($params['val']['type'], $task_types_sc) === false) {
620                //
621                return $this->end_treatment(__METHOD__, true);
622            }
623            if ($stream === 'output'
624                && isset($params['val']['type']) === true
625                && $this->f->is_option_mode_service_consulte_enabled() === false
626                && in_array($params['val']['type'], $task_types_si) === false) {
627                //
628                return $this->end_treatment(__METHOD__, true);
629            }
630    
631            //
632          $timestamp_log = json_encode(array(          $timestamp_log = json_encode(array(
633              'creation_date' => date('Y-m-d H:i:s'),              'creation_date' => date('Y-m-d H:i:s'),
634          ));          ));
635    
636            //
637            $category = isset($params['val']['category']) === true ? $params['val']['category'] : $this->category;
638    
639            // Si la tâche est de type ajout_piece et de stream input alors on ajoute le fichier
640            // et on ajoute l'uid dans le champ json_payload avant l'ajout de la tâche
641            if (isset($params['val']['type'])
642                && ($params['val']['type'] == "add_piece" || $params['val']['type'] == "avis_consultation")
643                && isset($params['val']['stream'])
644                && $params['val']['stream'] == "input" ) {
645                //
646                $json_payload = json_decode($params['val']['json_payload'], true);
647                if (json_last_error() !== JSON_ERROR_NONE) {
648                    $this->addToMessage(__("Le contenu JSON de la tâche n'est pas valide."));
649                    return $this->end_treatment(__METHOD__, false);
650                }
651                if (isset($json_payload['document_numerise']) === true
652                    && empty($json_payload['document_numerise']) === false) {
653                    //
654                    $document_numerise = $json_payload['document_numerise'];
655                    $file_content = base64_decode($document_numerise["file_content"]);
656                    if ($file_content === false){
657                        $this->addToMessage(__("Le contenu du fichier lié à la tâche n'a pas pu etre recupere."));
658                        return $this->end_treatment(__METHOD__, false);
659                    }
660                    $metadata = array(
661                        "filename" => $document_numerise['nom_fichier'],
662                        "size" => strlen($file_content),
663                        "mimetype" => $document_numerise['file_content_type'],
664                        "date_creation" => isset($document_numerise['date_creation']) === true ? $document_numerise['date_creation'] : date("Y-m-d"),
665                    );
666                    $uid_fichier = $this->f->storage->create($file_content, $metadata, "from_content", "task.uid_fichier");
667                    if ($uid_fichier === OP_FAILURE) {
668                        $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));
669                        return $this->end_treatment(__METHOD__, false);
670                    }
671                    $json_payload["document_numerise"]["uid"] = $uid_fichier;
672                    // Le fichier a été ajouté nous n'avons plus besoin du champ file_content dans la payload
673                    unset($json_payload["document_numerise"]["file_content"]);
674                    $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
675                }
676            }
677    
678          // Mise à jour du DI          // Mise à jour du DI
679          $valF = array(          $valF = array(
680              'task' => '',              'task' => '',
681              'type' => $params['val']['type'],              'type' => $params['val']['type'],
682              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
683              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : 'new',              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,
684              'object_id' => $params['val']['object_id'],              'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',
685                'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',
686                'stream' => $stream,
687                'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',
688                'category' => $category,
689          );          );
690          $task_exists = $this->task_exists($valF['type'], $valF['object_id']);  
691          if ($task_exists !== false) {          // tâche sortante
692              $inst_task = $this->f->get_inst__om_dbform(array(          if ($valF["stream"] == "output"
693                  "obj" => "task",              && $valF['type'] !== 'notification_recepisse'
694                  "idx" => $task_exists,              && $valF['type'] !== 'notification_instruction'
695              ));              && $valF['type'] !== 'notification_decision') {
696              $update_state = $inst_task->getVal('state');  
697              if (isset($params['update_val']['state']) === true) {              // TODO expliquer ce code
698                  $update_state = $params['update_val']['state'];              $task_exists = $this->task_exists($valF['type'], $valF['object_id'], $valF['dossier']);
699                if ($valF['type'] === 'modification_DI' && $task_exists === false) {
700                    $task_exists = $this->task_exists('creation_DI', $valF['object_id']);
701                }
702                if ($valF['type'] === 'modification_DA' && $task_exists === false) {
703                    $task_exists = $this->task_exists('creation_DA', $valF['object_id']);
704                }
705                if ($valF['type'] === 'ajout_piece') {
706                    $task_exists = $this->task_exists('ajout_piece', $valF['object_id']);
707                }
708                if ($valF['type'] === 'creation_consultation') {
709                    $task_exists = $this->task_exists('creation_consultation', $valF['object_id']);
710                }
711                if ($task_exists !== false) {
712                    $inst_task = $this->f->get_inst__om_dbform(array(
713                        "obj" => "task",
714                        "idx" => $task_exists,
715                    ));
716                    $update_state = $inst_task->getVal('state');
717                    if (isset($params['update_val']['state']) === true) {
718                        $update_state = $params['update_val']['state'];
719                    }
720                    $update_params = array(
721                        'val' => array(
722                            'state' => $update_state,
723                        ),
724                    );
725                    return $inst_task->update_task($update_params);
726              }              }
             $update_params = array(  
                 'val' => array(  
                     'state' => $update_state,  
                 ),  
             );  
             return $inst_task->update_task($update_params);  
727          }          }
728          $add = $this->ajouter($valF);          $add = $this->ajouter($valF);
729            $this->addToLog(__METHOD__."(): retour de l'ajout de tâche: ".var_export($add, true), VERBOSE_MODE);
730          if ($add === false) {          if ($add === false) {
731              $this->addToLog($this->msg, DEBUG_MODE);              $this->addToLog(__METHOD__."(): ".$this->msg, DEBUG_MODE);
732              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
733          }          }
734          return $this->end_treatment(__METHOD__, true);          return $this->end_treatment(__METHOD__, true);
# Line 97  class task extends task_gen { Line 745  class task extends task_gen {
745          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
746          $timestamp_log = $this->get_timestamp_log();          $timestamp_log = $this->get_timestamp_log();
747          if ($timestamp_log === false) {          if ($timestamp_log === false) {
748              $this->addToLog(__('XXX'), DEBUG_MODE);              $this->addToLog(__METHOD__."(): erreur timestamp log", DEBUG_MODE);
749              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
750          }          }
751          array_push($timestamp_log, array(          array_push($timestamp_log, array(
# Line 111  class task extends task_gen { Line 759  class task extends task_gen {
759              'type' => $this->getVal('type'),              'type' => $this->getVal('type'),
760              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
761              'state' => $params['val']['state'],              'state' => $params['val']['state'],
762              'object_id' => $this->getVal('object_id'),              'object_id' => isset($params['object_id']) == true && $this->getVal('type') == 'create_DI' ? $params['object_id'] : $this->getVal('object_id'),
763                'stream' => $this->getVal('stream'),
764                'dossier' => $this->getVal('dossier'),
765                'json_payload' => $this->getVal('json_payload'),
766                'category' => $this->getVal('category'),
767          );          );
768          $update = $this->modifier($valF);          $update = $this->modifier($valF);
769          if ($update === false) {          if ($update === false) {
# Line 124  class task extends task_gen { Line 776  class task extends task_gen {
776      /**      /**
777       * 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
778       * l'enregistrement instancié.       * l'enregistrement instancié.
779       *       *
780       * @param  array  $params Tableau des paramètres       * @param  array  $params Tableau des paramètres
781       * @return array sinon false en cas d'erreur       * @return array sinon false en cas d'erreur
782       */       */
# Line 163  class task extends task_gen { Line 815  class task extends task_gen {
815          if ($this->f->get_submitted_get_value('state') !== null          if ($this->f->get_submitted_get_value('state') !== null
816              && $this->f->get_submitted_get_value('state') !== '') {              && $this->f->get_submitted_get_value('state') !== '') {
817              //              //
818              $where = sprintf(' WHERE state = \'%s\' ', $this->f->get_submitted_get_value('state'));              $where_or_and = 'WHERE';
819                if ($where !== '') {
820                    $where_or_and = 'AND';
821                }
822                $where .= sprintf(' %s state = \'%s\' ', $where_or_and, $this->f->get_submitted_get_value('state'));
823            }
824            if ($this->f->get_submitted_get_value('category') !== null
825                && $this->f->get_submitted_get_value('category') !== '') {
826                //
827                $where_or_and = 'WHERE';
828                if ($where !== '') {
829                    $where_or_and = 'AND';
830                }
831                $where .= sprintf(' %s category = \'%s\' ', $where_or_and, $this->f->get_submitted_get_value('category'));
832          }          }
833          $query = sprintf('          $query = sprintf('
834              SELECT              SELECT
835                  *                  *
836              FROM %1$stask              FROM %1$stask
837              %2$s              %2$s
838                ORDER BY task ASC
839              ',              ',
840              DB_PREFIXE,              DB_PREFIXE,
841              $where              $where
# Line 181  class task extends task_gen { Line 847  class task extends task_gen {
847          $list_tasks = array();          $list_tasks = array();
848          foreach ($res['result'] as $task) {          foreach ($res['result'] as $task) {
849              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);
850                $task['dossier'] = $task['dossier'];
851                if ($task['type'] === 'ajout_piece') {
852                    $val_dn = $this->get_document_numerise_data($task['object_id']);
853                }
854                if ($task['stream'] === 'output') {
855                    $task['external_uids'] = $this->get_all_external_uids($task['dossier']);
856                }
857              $list_tasks[$task['task']] = $task;              $list_tasks[$task['task']] = $task;
858          }          }
859          printf(json_encode($list_tasks));          printf(json_encode($list_tasks));
# Line 270  class task extends task_gen { Line 943  class task extends task_gen {
943          $particular_case = false;          $particular_case = false;
944          $fields_tab_crea_loc_hab = $inst_dt->get_fields_tab_crea_loc_hab();          $fields_tab_crea_loc_hab = $inst_dt->get_fields_tab_crea_loc_hab();
945          foreach ($fields_tab_crea_loc_hab as $field) {          foreach ($fields_tab_crea_loc_hab as $field) {
946              if (isset($field) === false              if (isset($val_dt[$field]) === false
947                  || (isset($field) === true                  || (isset($val_dt[$field]) === true
948                      && $field !== null                      && ($val_dt[$field] === null
949                      && $field !== '')) {                          || $val_dt[$field] === ''))) {
950                  //                  //
951                  $particular_case = true;                  $particular_case = true;
952              }              }
# Line 322  class task extends task_gen { Line 995  class task extends task_gen {
995          return $val_dt;          return $val_dt;
996      }      }
997    
998        /**
999         * Récupère la liste des objets distincts existants dans la table des liens
1000         * entre identifiants internes et identifiants externes.
1001         *
1002         * @return array
1003         */
1004        protected function get_list_distinct_objects_external_link() {
1005            $query = sprintf('
1006                SELECT
1007                    DISTINCT(object)
1008                FROM %1$slien_id_interne_uid_externe
1009                ORDER BY object ASC
1010                ',
1011                DB_PREFIXE
1012            );
1013            $res = $this->f->get_all_results_from_db_query($query, true);
1014            if ($res['code'] === 'KO') {
1015                return array();
1016            }
1017            $result = array();
1018            foreach ($res['result'] as $object) {
1019                $result[] = $object['object'];
1020            }
1021            return $result;
1022        }
1023    
1024      protected function get_external_uid($fk_idx, string $fk_idx_2) {      protected function get_external_uid($fk_idx, string $fk_idx_2) {
1025          $inst_external_uid = $this->f->get_inst__by_other_idx(array(          $inst_external_uid = $this->f->get_inst__by_other_idx(array(
1026              "obj" => "lien_id_interne_uid_externe",              "obj" => "lien_id_interne_uid_externe",
# Line 333  class task extends task_gen { Line 1032  class task extends task_gen {
1032          return $inst_external_uid->getVal('external_uid');          return $inst_external_uid->getVal('external_uid');
1033      }      }
1034    
1035        protected function get_all_external_uids($fk_idx, $link_objects = array()) {
1036            if (count($link_objects) == 0) {
1037                $link_objects = $this->get_list_distinct_objects_external_link();
1038            }
1039            $val_external_uid = array();
1040            foreach ($link_objects as $link_object) {
1041                $external_uid = $this->get_external_uid($fk_idx, $link_object);
1042                if ($external_uid !== '' && $external_uid !== null) {
1043                    $val_external_uid[$link_object] = $external_uid;
1044                }
1045            }
1046            return $val_external_uid;
1047        }
1048    
1049      protected function get_demandeurs_data(string $dossier) {      protected function get_demandeurs_data(string $dossier) {
1050          $val_demandeur = array();          $val_demandeur = array();
1051          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
# Line 365  class task extends task_gen { Line 1078  class task extends task_gen {
1078          return $val_architecte;          return $val_architecte;
1079      }      }
1080    
1081      protected function get_instruction_data(string $dossier) {      protected function get_instruction_data(string $dossier, $type = 'decision', $extra_params = array()) {
1082          $val_instruction = null;          $val_instruction = null;
1083          $instruction_with_doc = null;          $instruction_with_doc = null;
1084          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
1085              "obj" => "dossier",              "obj" => "dossier",
1086              "idx" => $dossier,              "idx" => $dossier,
1087          ));          ));
1088            $idx = null;
1089            if ($type === 'decision') {
1090                $idx = $inst_di->get_last_instruction_decision();
1091            }
1092            if ($type === 'incompletude') {
1093                $idx = $inst_di->get_last_instruction_incompletude();
1094            }
1095            // XXX Permet de récupérer l'instruction par son identifiant
1096            if ($type === 'with-id') {
1097                $idx = $extra_params['with-id'];
1098            }
1099          $inst_instruction = $this->f->get_inst__om_dbform(array(          $inst_instruction = $this->f->get_inst__om_dbform(array(
1100              "obj" => "instruction",              "obj" => "instruction",
1101              "idx" => $inst_di->get_last_instruction_decision(),              "idx" => $idx,
1102          ));          ));
1103          if (count($inst_instruction->val) > 0) {          if (count($inst_instruction->val) > 0) {
1104              $val_instruction = array();              $val_instruction = array();
# Line 409  class task extends task_gen { Line 1133  class task extends task_gen {
1133              }              }
1134              if ($instruction_with_doc !== null) {              if ($instruction_with_doc !== null) {
1135                  //                  //
1136                  $val_instruction['path'] = sprintf('%s/%s&snippet=%s&obj=%s&champ=%s&id=%s', $_SERVER['HTTP_HOST'], 'openads/app/index.php?module=form', 'file', 'instruction', 'om_fichier_instruction', $instruction_with_doc);                  $val_instruction['path'] = sprintf('%s&snippet=%s&obj=%s&champ=%s&id=%s', 'app/index.php?module=form', 'file', 'instruction', 'om_fichier_instruction', $instruction_with_doc);
1137              }              }
1138          }          }
1139          return $val_instruction;          return $val_instruction;
1140      }      }
1141    
1142        /**
1143         * Récupère les informations
1144        */
1145        protected function get_instruction_notification_data($category, $type = '', $extra_params = array()) {
1146            $val_in = array();
1147    
1148            $idx = null;
1149            if ($type === 'with-id') {
1150                $idx = $extra_params['with-id'];
1151            }
1152    
1153            // récupére les données à intégrer à la payload
1154            $inst_in = $this->f->get_inst__om_dbform(array(
1155                "obj" => "instruction_notification",
1156                "idx" => $idx,
1157            ));
1158            $val_in = $inst_in->get_json_data();
1159    
1160            $val_in['parametre_courriel_type_titre'] = '';
1161            $val_in['parametre_courriel_type_message'] = '';
1162            // Récupération du message et du titre
1163            if ($category === 'mail') {
1164                $inst_instruction = $this->f->get_inst__om_dbform(array(
1165                    "obj" => "instruction",
1166                    "idx" => $inst_in->getVal('instruction'),
1167                ));
1168                $collectivite_id = $inst_instruction->get_dossier_instruction_om_collectivite($inst_instruction->getVal('dossier'));
1169                $phrase_type_notification = array();
1170                $phrase_type_notification = $this->f->get_notification_parametre_courriel_type($collectivite_id);
1171                $val_in['parametre_courriel_type_titre'] = $phrase_type_notification['parametre_courriel_type_titre'];
1172                $val_in['parametre_courriel_type_message'] = $phrase_type_notification['parametre_courriel_type_message'];
1173            }
1174    
1175            // Récupération des liens vers les documents et de l'id de l'instruction
1176            // de l'annexe
1177            $infoDocNotif = $inst_in->getInfosDocumentsNotif($inst_in->getVal($inst_in->clePrimaire));
1178            $val_in['lien_telechargement_document'] = $infoDocNotif['document']['lien'];
1179            $val_in['lien_telechargement_annexe'] = $infoDocNotif['annexe']['lien'];
1180            $val_in['instruction_annexe'] = $infoDocNotif['annexe']['id_instruction'];
1181    
1182            return $val_in;
1183        }
1184    
1185      protected function sort_instruction_data(array $values, array $res) {      protected function sort_instruction_data(array $values, array $res) {
1186          $fields = array(          $fields = array(
1187                "date_evenement",
1188              "date_envoi_signature",              "date_envoi_signature",
1189              "date_retour_signature",              "date_retour_signature",
1190              "date_envoi_rar",              "date_envoi_rar",
# Line 426  class task extends task_gen { Line 1194  class task extends task_gen {
1194              "signataire_arrete",              "signataire_arrete",
1195              "om_fichier_instruction",              "om_fichier_instruction",
1196              "tacite",              "tacite",
1197                "lettretype",
1198                "commentaire",
1199                "complement_om_html",
1200          );          );
1201          foreach ($values as $key => $value) {          foreach ($values as $key => $value) {
1202              if (in_array($key, $fields) === true) {              if (in_array($key, $fields) === true) {
# Line 444  class task extends task_gen { Line 1215  class task extends task_gen {
1215          return $res;          return $res;
1216      }      }
1217    
1218        /**
1219         * Permet de définir si l'instruction passée en paramètre est une instruction
1220         * récépissé d'une demande et si la demande en question a générée un dossier d'instruction.
1221         *
1222         * @param  integer  $instruction Identifiant de l'instruction
1223         * @return boolean
1224         */
1225        protected function is_demande_instruction_recepisse_without_dossier($instruction) {
1226            $query = sprintf('
1227                SELECT demande_type.dossier_instruction_type
1228                FROM %1$sdemande
1229                    INNER JOIN %1$sdemande_type ON demande.demande_type = demande_type.demande_type
1230                WHERE demande.instruction_recepisse = %2$s
1231                ',
1232                DB_PREFIXE,
1233                $instruction
1234            );
1235            $res = $this->f->get_one_result_from_db_query(
1236                $query,
1237                true
1238            );
1239            if ($res['code'] === 'KO') {
1240                return null;
1241            }
1242            if ($res['result'] === '') {
1243                return true;
1244            }
1245            return false;
1246        }
1247    
1248      protected function get_document_numerise_data(string $dn) {      protected function get_document_numerise_data(string $dn) {
1249          $val_dn = array();          $val_dn = array();
1250          $inst_dn = $this->f->get_inst__om_dbform(array(          $inst_dn = $this->f->get_inst__om_dbform(array(
# Line 451  class task extends task_gen { Line 1252  class task extends task_gen {
1252              "idx" => $dn,              "idx" => $dn,
1253          ));          ));
1254          $val_dn = $inst_dn->get_json_data();          $val_dn = $inst_dn->get_json_data();
1255          $val_dn['path'] = sprintf('%s/%s&snippet=%s&obj=%s&champ=%s&id=%s', $_SERVER['HTTP_HOST'], 'openads/app/index.php?module=form', 'file', 'document_numerise', 'uid', $this->getVal('object_id'));          $val_dn['path'] = sprintf('%s&snippet=%s&obj=%s&champ=%s&id=%s', 'app/index.php?module=form', 'file', 'document_numerise', 'uid', $this->getVal('object_id'));
1256          // Correspond à la nomenclature Plat'AU NATURE_PIECE          // Correspond à la nomenclature Plat'AU NATURE_PIECE
1257          $val_dn['nature'] = 'Initiale';          $val_dn['nature'] = $val_dn['document_numerise_nature_libelle'];
1258          return $val_dn;          return $val_dn;
1259      }      }
1260    
# Line 476  class task extends task_gen { Line 1277  class task extends task_gen {
1277          return $val_dp;          return $val_dp;
1278      }      }
1279    
1280      protected function view_form_json() {      protected function get_avis_decision_data(string $dossier) {
1281          // Mise à jour des valeurs          $inst_di = $this->f->get_inst__om_dbform(array(
1282          if ($this->f->get_submitted_post_value('valid') === 'true'              "obj" => "dossier",
1283              && $this->f->get_submitted_post_value('state') !== null) {              "idx" => $dossier,
1284              //          ));
1285              $params = array(          $ad = $inst_di->getVal('avis_decision');
1286                  'val' => array(          $val_ad = array();
1287                      'state' => $this->f->get_submitted_post_value('state')          if ($ad !== null) {
1288                  ),              $inst_ad = $this->f->get_inst__om_dbform(array(
1289              );                  "obj" => "avis_decision",
1290              $update = $this->update_task($params);                  "idx" => $ad,
1291              $message_class = "valid";              ));
1292              $message = $this->msg;              $val_ad = $inst_ad->get_json_data();
1293              if ($update === false) {              $val_ad['txAvis'] = "Voir document joint";
1294                  $this->addToLog($this->msg, DEBUG_MODE);              if (isset($val_ad['tacite']) ===  true
1295                  $message_class = "error";                  && $val_ad['tacite'] === 't') {
1296                  $message = sprintf(                  //
1297                      '%s %s',                  $val_ad['txAvis'] = "Sans objet";
                     __('Impossible de mettre à jour la tâche.'),  
                     __('Veuillez contacter votre administrateur.')  
                 );  
1298              }              }
             $this->f->displayMessage($message_class, $message);  
1299          }          }
1300          //          return $val_ad;
1301          if ($this->f->get_submitted_post_value('valid') === 'true'      }
1302              && $this->f->get_submitted_post_value('external_uid') !== null) {  
1303        protected function get_signataire_arrete_data(string $sa) {
1304            $inst_sa = $this->f->get_inst__om_dbform(array(
1305                "obj" => "signataire_arrete",
1306                "idx" => $sa,
1307            ));
1308            $val_sa = array_combine($inst_sa->champs, $inst_sa->val);
1309            foreach ($val_sa as $key => $value) {
1310                $val_sa[$key] = strip_tags($value);
1311            }
1312            return $val_sa;
1313        }
1314    
1315        // XXX WIP
1316        protected function get_consultation_data(string $consultation) {
1317            $val_consultation = array();
1318            $inst_consultation = $this->f->get_inst__om_dbform(array(
1319                "obj" => "consultation",
1320                "idx" => $consultation,
1321            ));
1322            $val_consultation = $inst_consultation->get_json_data();
1323            if (isset($val_consultation['fichier']) === true
1324                && $val_consultation['fichier'] !== '') {
1325              //              //
1326              $inst_lien = $this->f->get_inst__om_dbform(array(              $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'));
                 "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);  
1327          }          }
1328            if (isset($val_consultation['om_fichier_consultation']) === true
1329                && $val_consultation['om_fichier_consultation'] !== '') {
1330                //
1331                $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'));
1332            }
1333            return $val_consultation;
1334        }
1335    
1336        // XXX WIP
1337        protected function get_service_data(string $service) {
1338            $val_service = array();
1339            $inst_service = $this->f->get_inst__om_dbform(array(
1340                "obj" => "service",
1341                "idx" => $service,
1342            ));
1343            $val_service = $inst_service->get_json_data();
1344            return $val_service;
1345        }
1346    
1347        protected function view_form_json($in_field = false) {
1348          //          //
1349          if ($this->f->get_submitted_post_value('valid') === null) {          if ($this->f->get_submitted_post_value('valid') === null
1350                && $this->getVal('state') !== self::STATUS_CANCELED) {
1351              // Liste des valeurs à afficher              // Liste des valeurs à afficher
1352              $val = array();              $val = array();
1353              //              //
# Line 541  class task extends task_gen { Line 1358  class task extends task_gen {
1358              $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);              $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);
1359              $val['task'] = $val_task;              $val['task'] = $val_task;
1360              //              //
1361              if ($this->getVal('type') === 'creation_DA') {              if ($this->getVal('type') === 'creation_DA'
1362                    || $this->getVal('type') === 'modification_DA') {
1363                    //
1364                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));
1365                  $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');
1366                  $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']);
1367                  $val_external_uid = array();                  $val_external_uid = array();
1368                  $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');
1369                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1370              }              }
1371              //              //
1372              if ($this->getVal('type') === 'creation_DI'              if ($this->getVal('type') === 'creation_DI'
# Line 563  class task extends task_gen { Line 1382  class task extends task_gen {
1382                  $val_external_uid = array();                  $val_external_uid = array();
1383                  $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');
1384                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1385                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1386              }              }
1387              //              //
1388              if ($this->getVal('type') === 'qualification_DI') {              if ($this->getVal('type') === 'qualification_DI') {
1389                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1390                  $val_external_uid = array();                  $val_external_uid = array();
1391                  $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');
1392                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1393                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1394              }              }
1395              //              //
1396              if ($this->getVal('type') === 'ajout_piece') {              if ($this->getVal('type') === 'ajout_piece') {
# Line 581  class task extends task_gen { Line 1400  class task extends task_gen {
1400                  $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');
1401                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1402                  $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');
1403                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1404              }              }
1405              //              //
1406              if ($this->getVal('type') === 'decision_DI') {              if ($this->getVal('type') === 'decision_DI') {
1407                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1408                  $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')));
1409                    $val['instruction']['final'] = 't';
1410                    if (isset($val['instruction']['signataire_arrete']) === true) {
1411                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1412                    }
1413                    $val_external_uid = array();
1414                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1415                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1416                    $val['external_uids'] = $val_external_uid;
1417                }
1418                //
1419                if ($this->getVal('type') === 'incompletude_DI') {
1420                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1421                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1422                    $val_external_uid = array();
1423                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1424                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1425                    $val['external_uids'] = $val_external_uid;
1426                }
1427                //
1428                if ($this->getVal('type') === 'completude_DI') {
1429                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1430                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1431                    $val_external_uid = array();
1432                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1433                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1434                    $val['external_uids'] = $val_external_uid;
1435                }
1436                //
1437                if ($this->getVal('type') === 'pec_metier_consultation') {
1438                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1439                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1440                    $val_external_uid = array();
1441                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1442                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1443                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1444                    $val['external_uids'] = $val_external_uid;
1445                }
1446                //
1447                if ($this->getVal('type') === 'avis_consultation') {
1448                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1449                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1450                    $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1451                    if (isset($val['instruction']['signataire_arrete']) === true) {
1452                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1453                    }
1454                    $val_external_uid = array();
1455                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1456                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1457                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1458                    $val['external_uids'] = $val_external_uid;
1459                }
1460                // XXX WIP
1461                if ($this->getVal('type') === 'creation_consultation') {
1462                    //
1463                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1464                    $val['consultation'] = $this->get_consultation_data($this->getVal('object_id'));
1465                    $val['service'] = $this->get_service_data($val['consultation']['service']);
1466                    $val_external_uid = array();
1467                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1468                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1469                    $val['external_uids'] = $val_external_uid;
1470                }
1471                //
1472                if ($this->getVal('type') === 'notification_instruction'
1473                    || $this->getVal('type') === 'notification_recepisse'
1474                    || $this->getVal('type') === 'notification_decision') {
1475                    //
1476                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1477                    $val['demandeur'] = $this->get_demandeurs_data($this->getVal('dossier'));
1478                    $val['instruction_notification'] = $this->get_instruction_notification_data($this->getVal('category'), 'with-id', array('with-id' => $this->getVal('object_id')));
1479                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $val['instruction_notification']['instruction']));
1480                    // Précise qu'il s'agit d'une instruction final si l'instruction est liée à une
1481                    // demande dont le type ne génère pas de dossier
1482                    if ($this->is_demande_instruction_recepisse_without_dossier($val['instruction_notification']['instruction']) === true) {
1483                        $val['instruction']['final'] = 't';
1484                    }
1485                    //
1486                    if ($val['instruction_notification']['instruction_annexe'] != '') {
1487                        $val['instruction_annexe'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $val['instruction_notification']['instruction_annexe']));
1488                    }
1489                    $val_external_uid = array();
1490                    // Affiche l'identifiant externe lié à l'instruction si cette combinaison existe, sinon celui lié au dossier
1491                    $val_external_uid['demande'] = $this->get_external_uid($val['instruction_notification']['instruction'], 'demande') !== '' ? $this->get_external_uid($val['instruction_notification']['instruction'], 'demande') : $this->get_external_uid($val['dossier']['dossier'], 'demande');
1492                    $val['external_uids'] = $val_external_uid;
1493                }
1494                //
1495                if ($this->getVal('type') === 'prescription') {
1496                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1497                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1498                    $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1499                    if (isset($val['instruction']['signataire_arrete']) === true) {
1500                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1501                    }
1502                  $val_external_uid = array();                  $val_external_uid = array();
1503                  $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');
1504                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1505                  $val['external_uid'] = $val_external_uid;                  $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1506                    $val['external_uids'] = $val_external_uid;
1507              }              }
1508    
1509              // Liste des valeurs affichée en JSON              if ($in_field === true) {
1510              printf(json_encode($val));                  return json_encode($val, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
1511                } else {
1512                    // Liste des valeurs affichée en JSON
1513                    echo(json_encode($val, JSON_UNESCAPED_SLASHES));
1514                }
1515          }          }
1516      }      }
1517    
1518      protected function get_lien_objet_by_type($type) {      function post_update_task() {
1519          //          // Mise à jour des valeurs
1520          $objet = '';  
1521          if ($type === 'creation_DA') {          // Modification de l'état de la tâche
1522              $objet = 'dossier_autorisation';          if ($this->f->get_submitted_post_value('state') !== null) {
1523          }              $params = array(
1524          if ($type === 'creation_DI'                  'val' => array(
1525              || $type === 'depot_DI'                      'state' => $this->f->get_submitted_post_value('state')
1526              || $type === 'modification_DI'                  ),
1527              || $type === 'qualification_DI'              );
1528              || $type === 'decision_DI') {              $update = $this->update_task($params);
1529                $message_class = "valid";
1530                $message = $this->msg;
1531                if ($update === false) {
1532                    $this->addToLog($this->msg, DEBUG_MODE);
1533                    $message_class = "error";
1534                    $message = sprintf(
1535                        '%s %s',
1536                        __('Impossible de mettre à jour la tâche.'),
1537                        __('Veuillez contacter votre administrateur.')
1538                    );
1539                }
1540                $this->f->displayMessage($message_class, $message);
1541            }
1542    
1543            // Sauvegarde de l'uid externe retourné
1544            if ($this->f->get_submitted_post_value('external_uid') !== null) {
1545              //              //
1546              $objet = 'dossier';              $objects = $this->get_objects_by_task_type($this->getVal('type'), $this->getVal('stream'));
1547                foreach ($objects as $object) {
1548                    $inst_lien = $this->f->get_inst__om_dbform(array(
1549                        "obj" => "lien_id_interne_uid_externe",
1550                        "idx" => ']',
1551                    ));
1552                    if ($inst_lien->is_exists($object, $this->getVal('object_id'), $this->f->get_submitted_post_value('external_uid'), $this->getVal('dossier')) === false) {
1553                        $valF = array(
1554                            'lien_id_interne_uid_externe' => '',
1555                            'object' => $object,
1556                            'object_id' => $this->getVal('object_id'),
1557                            'external_uid' => $this->f->get_submitted_post_value('external_uid'),
1558                            'dossier' => $this->getVal('dossier'),
1559                            'category' => $this->getVal('category'),
1560                        );
1561                        $add = $inst_lien->ajouter($valF);
1562                        $message_class = "valid";
1563                        $message = $inst_lien->msg;
1564                        if ($add === false) {
1565                            $this->addToLog($inst_lien->msg, DEBUG_MODE);
1566                            $message_class = "error";
1567                            $message = sprintf(
1568                                '%s %s',
1569                                __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),
1570                                __('Veuillez contacter votre administrateur.')
1571                            );
1572                        }
1573                        $this->f->displayMessage($message_class, $message);
1574                    }
1575                }
1576            }
1577        }
1578    
1579        function post_add_task() {
1580            // TODO Tester de remplacer la ligne de json_payload par un $_POST
1581            $result = $this->add_task(array(
1582                'val' => array(
1583                    'stream' => 'input',
1584                    'json_payload' => html_entity_decode($this->f->get_submitted_post_value('json_payload')),
1585                    'type' => $this->f->get_submitted_post_value('type'),
1586                    'category' => $this->f->get_submitted_post_value('category'),
1587                )
1588            ));
1589            $message = sprintf(
1590                __("Tâche %s ajoutée avec succès"),
1591                $this->getVal($this->clePrimaire)).
1592                '<br/><br/>'.
1593                $this->msg;
1594            $message_class = "valid";
1595            if ($result === false){
1596                $this->addToLog($this->msg, DEBUG_MODE);
1597                $message_class = "error";
1598                $message = sprintf(
1599                    '%s %s',
1600                    __('Impossible d\'ajouter la tâche.'),
1601                    __('Veuillez contacter votre administrateur.')
1602                );
1603            }
1604            $this->f->displayMessage($message_class, $message);
1605        }
1606    
1607        function setLayout(&$form, $maj) {
1608    
1609            // Récupération du mode de l'action
1610            $crud = $this->get_action_crud($maj);
1611    
1612            // MODE different de CREER
1613            if ($maj != 0 || $crud != 'create') {
1614                $form->setBloc('json_payload', 'D', '', 'col_6');
1615                    $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");
1616                $form->setBloc('json_payload', 'F');
1617            }
1618            $form->setBloc('timestamp_log', 'DF', '', 'col_9');
1619        }
1620    
1621        /**
1622         * [get_objects_by_task_type description]
1623         * @param  [type] $type [description]
1624         * @return [type]       [description]
1625         */
1626        function get_objects_by_task_type($type, $stream = 'all') {
1627            $objects = array();
1628            if (in_array($type, array('creation_DA', 'modification_DA', )) === true) {
1629                $objects = array('dossier_autorisation', );
1630            }
1631            if (in_array($type, array('creation_DI', 'depot_DI', 'notification_DI', 'qualification_DI', )) === true) {
1632                $objects = array('dossier', );
1633          }          }
1634          if ($type === 'ajout_piece') {          if (in_array($type, array('create_DI_for_consultation', )) === true) {
1635              $objet = 'document_numerise';              $objects = array('dossier', 'dossier_consultation', );
1636          }          }
1637          return $objet;          if (in_array($type, array('create_DI', )) === true
1638                && $stream === 'input') {
1639                $objects = array('dossier', 'dossier_autorisation', 'demande', );
1640            }
1641            if (in_array($type, array('decision_DI', 'incompletude_DI', 'completude_DI', )) === true) {
1642                $objects = array('instruction', );
1643            }
1644            if (in_array($type, array('pec_metier_consultation', )) === true
1645                && $stream === 'output') {
1646                $objects = array('pec_dossier_consultation', );
1647            }
1648            if (in_array($type, array('avis_consultation', )) === true
1649                && $stream === 'output') {
1650                $objects = array('avis_dossier_consultation', );
1651            }
1652            if (in_array($type, array('prescription', )) === true
1653                && $stream === 'output') {
1654                $objects = array('prescription', );
1655            }
1656            if (in_array($type, array('ajout_piece', 'add_piece', )) === true) {
1657                $objects = array('piece', );
1658            }
1659            if (in_array($type, array('creation_consultation', )) === true) {
1660                $objects = array('consultation', );
1661            }
1662            if (in_array($type, array('pec_metier_consultation', )) === true
1663                && $stream === 'input') {
1664                $objects = array('pec_metier_consultation', );
1665            }
1666            if (in_array($type, array('avis_consultation', )) === true
1667                && $stream === 'input') {
1668                $objects = array('avis_consultation', );
1669            }
1670            if (in_array($type, array('create_message', )) === true
1671                && $stream === 'input') {
1672                $objects = array('dossier_message', );
1673            }
1674            if (in_array($type, array('notification_recepisse', 'notification_instruction', 'notification_decision' )) === true) {
1675                $objects = array('instruction_notification', );
1676            }
1677            return $objects;
1678      }      }
1679    
1680  }  }

Legend:
Removed from v.9436  
changed lines
  Added in v.11057

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26