Blame view

src/Controller/ConfigurationFieldsController.php 13.6 KB
3c4f9138   Etienne Pallier   BIG NEW FEATURE: ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
<?php 
namespace App\Controller;

use App\Controller\AppController;
use App\Form\ConfigurationFieldsForm;
use Cake\Core\Configure;

use Symfony\Component\Yaml\Yaml;


// modelless form : voir https://book.cakephp.org/3/en/core-libraries/form.html
class ConfigurationFieldsController extends AppController
{
    
    /*
     * @Override
     *
     * Initialisation des autorisations pour les actions spécifiques à ce controleur
     *
     */
    protected function setAuthorizations() {
        
        // On supprime les autres actions par défaut (add, view, index, find)
        //foreach (array_keys($this->is_authorized_action[]) as $a) if ($a != 'display') unset($this->is_authorized_action[$a]);
        $this->is_authorized_action = [];

        // admin (+) only
        $this->setAuthorizationsForAction('index', -1, ['admin'=>0, 'super'=>0]);
        $this->setAuthorizationsForAction('view', -1, ['admin'=>0, 'super'=>0]);
        $this->setAuthorizationsForAction('edit', -1, ['admin'=>0, 'super'=>0]);
        $this->setAuthorizationsForAction('resetToDefault', -1, ['admin'=>0, 'super'=>0]);
        // tous
        //$this->setAuthorizationsForAction('index', 0);
        // Superadmin only :
        //$this->setAuthorizationsForAction('index', -1, ['super'=>0]);
        
    }
    
    public function index() {
        $this->view();
    }
    
    public function view() {
        
        $this->edit(true);
        // Lecteurs configurés : 'default', 'yaml'
        //debug(Configure::configured());
        
        //$fields = Configure::readOrFail('MANDATORY_FIELDS_FOR_LOT'.$lot_num);
        /*
        $fields = Configure::readOrFail('MANDATORY_AND_READONLY_FIELDS');
        $this->set(compact('fields'));
        */
    }
    
    public function resetToDefault() {
        $config_mandatory_fields_file_name = CONFIG.DS.CONFIG_MATERIEL_FIELDS_FILE_NAME.'.yml';
        $config_mandatory_fields_file_name_default = CONFIG.DS.CONFIG_MATERIEL_FIELDS_FILE_NAME.'.default.yml';
        
        $config_default = Yaml::parse(file_get_contents($config_mandatory_fields_file_name_default)); //parse le fichier
        $config_default_as_yaml = Yaml::dump($config_default); //remet en yaml
        if (! file_put_contents($config_mandatory_fields_file_name, $config_default_as_yaml) )
            throw new \ErrorException("Impossible de remettre la configuration des champs de matériel aux valeurs par défaut - le fichier de config $config_mandatory_fields_file_name n'est pas accessible en écriture");
            
        $this->Flash->success("La configuration des champs de matériel a bien été réinitialisée aux valeurs par défaut");
        return $this->redirect(['action' => 'view']);
    }
        
    
    public function edit($READONLY=false) {
        
        $contact = new ConfigurationFieldsForm();
        //debug($contact);
        
        // - En mode POST
        if ($this->request->is('post')) {
            /*
             * We use the execute() method to run our form’s _execute() method only when the data is valid,
             * and set flash messages accordingly.
             * We could have also used the validate() method to only validate the request data:
             *      $isValid = $form->validate($this->request->getData());
             */
            //debug($this->request->getData());
            
            // - OK
            if ($contact->execute($this->request->getData())) {
                $fieldsets = $this->request->getData();
                //debug($data);
                $contact->setData($fieldsets);
                
                // On sauvegarde le contenu de $fieldsets dans le fichier de config (array => yaml)
                
                //debug($contact);
                // See : https://book.cakephp.org/3/en/development/configuration.html#writing-configuration-data
                /*
                 Configure::write('Company.name','Pizza, Inc.');
                 Configure::write('Company.slogan','Pizza for your body and soul');
                 // idem :
                 Configure::write('Company', [
                 'name' => 'Pizza, Inc.',
                 'slogan' => 'Pizza for your body and soul'
                 ]);
                 */
                //$data1 = Configure::read('MANDATORY_AND_READONLY_FIELDS');
                //debug($data1);
                /*
                 Configure::write('MANDATORY_AND_READONLY_FIELDS',$data);
                 $data2 = Configure::read('MANDATORY_AND_READONLY_FIELDS');
                 */
                //debug($data2);
                //$name = $contact->getData('name');
                /* NE MARCHE PAS, WHY ???
                 $config_mandatory_fields_file_name = 'app_labinvent_mandatory_fields';
                 if ( Configure::dump($config_mandatory_fields_file_name, 'my_yaml', ['MANDATORY_AND_READONLY_FIELDS']) )
                 $this->Flash->success("La configuration des champs matériels a bien été sauvegardée");
                 */
                 //$config_mandatory_fields_file_name = CONFIG.DS.'app_labinvent_mandatory_fields'.'.yml';
                 $config_mandatory_fields_file_name = CONFIG.DS.CONFIG_MATERIEL_FIELDS_FILE_NAME.'.yml';
                 // Symfony YAML component : https://symfony.com/doc/current/components/yaml.html
                 /*
                  $array = Yaml::parse(file_get_contents($config_mandatory_fields_file_name)); //parse le fichier
                  debug($array);
                  $res = Yaml::dump($array); //remet en yaml
                  */
                 $fieldsets_new = [];
                 $fieldsets_new['MANDATORY_AND_READONLY_FIELDS']=$fieldsets;
                 //debug($fieldsets_new);
                 
                 $fieldsets_as_yaml = Yaml::dump($fieldsets_new); //remet en yaml
                 //debug($res); exit;
                 if (! file_put_contents($config_mandatory_fields_file_name, $fieldsets_as_yaml) )
                     throw new \ErrorException("Impossible d'enregistrer la configuration des champs de matériel - le fichier de config $config_mandatory_fields_file_name n'est pas accessible en écriture"); 
                 $this->Flash->success("La configuration des champs de matériel a bien été sauvegardée");
                 return $this->redirect(['action' => 'view']);
            }
            
            // - KO
            else {
                // Once a form has been validated you can retrieve the errors from it:
                $errors = $form->getErrors(); // $form->errors(); // prior to 3.7.0
                debug($errors);
                /* $errors contains
                 [
                 'email' => ['A valid email address is required']
                 ]
                 */
                $this->Flash->error("La configuration n'a pas pu être enregistrée");
            }
        }
        
        // - En mode GET (ou POST avec erreur)
        
        if ($this->request->is('get')) {
            /*
             $contact->setData([
             'name' => 'John Doe',
             'email' => 'john.doe@example.com'
             ]);
             */
        }
        
        $this->set('contact', $contact);
        
        $fieldsets = Configure::readOrFail('MANDATORY_AND_READONLY_FIELDS');
        $this->set(compact('READONLY', 'fieldsets'));
        
    } // edit()
    
    
    public function OLD_edit($READONLY=false)
    {
        $contact = new ConfigurationFieldsForm();
        //debug($contact);
        
        // - En mode POST
        if ($this->request->is('post')) {
            /* 
             * We use the execute() method to run our form’s _execute() method only when the data is valid, 
             * and set flash messages accordingly. 
             * We could have also used the validate() method to only validate the request data:
             *      $isValid = $form->validate($this->request->getData());
             */
            //debug($this->request->getData());
            
            // - OK
            if ($contact->execute($this->request->getData())) {
                $fieldsets = $this->request->getData();
                //debug($data);
                $contact->setData($fieldsets);

                /* 
                 * 1) On retouche $fieldsets pour qu'il puisse être sauvegardé au format fichier texte (yaml) :
                 * 
                 * Ex:
            		'designation' => [
            			'selected' => '0',
            			'labl' => 'commentaire',
            			'roles' => [
            				(int) 0 => 'Responsable',
            				(int) 1 => 'Administration'
            			]
            		],
                 * 
                 * - '.selected' : si = 0 => on préfixe le nom du champ par "OFF_" 
                 *      => 'OFF_designation'
                 * - '.labl' : on l'ajoute entre parenthèse à la suite du nom du champ 
                 *      => 'OFF_designation (commentaire)'
                 * - '.roles' : on les ajoute entre parenthèse à la fin du nom du champ => 
                 *      => 'OFF_designation (commentaire) (sauf Responsable, Administration)'
                 */
                $fieldsets_new = [];
                $fieldsets_new['MANDATORY_AND_READONLY_FIELDS']=[];
                //$fn = &$fieldsets_new['MANDATORY_AND_READONLY_FIELDS'];
                foreach ($fieldsets as $fieldset_name=>$fields) {
                    $fieldsets_new['MANDATORY_AND_READONLY_FIELDS'][$fieldset_name] = [];
                    foreach ($fields as $field_name=>$attributes) {
                        $field_name_new = $field_name;
                        // - selected
                        if (! $attributes['selected'] )
                            $field_name_new = 'OFF_'.$field_name_new;
                        // - labl
                        if ($attributes['labl'])
                            $field_name_new .= ' ('. $attributes['labl'] .')';
                        // - roles
                        if (isset($attributes['except_roles']) && $attributes['except_roles'])
                            $field_name_new .= ' (sauf '. implode(',',$attributes['except_roles']) .')';
                        //debug($field_name_new);
                        $fieldsets_new['MANDATORY_AND_READONLY_FIELDS'][$fieldset_name][] = $field_name_new;
                    }
                }
                //debug($fieldsets_new); exit;
                
                // 2) On sauvegarde le contenu de $fieldsets dans le fichier de config (array => yaml)
                
                //debug($contact);
                // See : https://book.cakephp.org/3/en/development/configuration.html#writing-configuration-data
                /*
                Configure::write('Company.name','Pizza, Inc.');
                Configure::write('Company.slogan','Pizza for your body and soul');
                // idem :
                Configure::write('Company', [
                    'name' => 'Pizza, Inc.',
                    'slogan' => 'Pizza for your body and soul'
                ]);
                */
                //$data1 = Configure::read('MANDATORY_AND_READONLY_FIELDS');
                //debug($data1);
                /*
                Configure::write('MANDATORY_AND_READONLY_FIELDS',$data);
                $data2 = Configure::read('MANDATORY_AND_READONLY_FIELDS');
                */
                //debug($data2);
                //$name = $contact->getData('name');
                /* NE MARCHE PAS, WHY ???
                $config_mandatory_fields_file_name = 'app_labinvent_mandatory_fields';
                if ( Configure::dump($config_mandatory_fields_file_name, 'my_yaml', ['MANDATORY_AND_READONLY_FIELDS']) )
                    $this->Flash->success("La configuration des champs matériels a bien été sauvegardée");
                */
                //$config_mandatory_fields_file_name = CONFIG.DS.'app_labinvent_mandatory_fields'.'.yml';
                $config_mandatory_fields_file_name = CONFIG.DS.CONFIG_MATERIEL_FIELDS_FILE_NAME.'.yml';
                // Symfony YAML component : https://symfony.com/doc/current/components/yaml.html
                /*
                $array = Yaml::parse(file_get_contents($config_mandatory_fields_file_name)); //parse le fichier
                debug($array);
                $res = Yaml::dump($array); //remet en yaml
                */
                $fieldsets_new_as_yaml = Yaml::dump($fieldsets_new); //remet en yaml
                //debug($res); exit;
                if ( file_put_contents($config_mandatory_fields_file_name, $fieldsets_new_as_yaml) ) 
                    $this->Flash->success("La configuration des champs matériels a bien été sauvegardée");
                return $this->redirect(['action' => 'view']);
            }
            
            // - KO
            else {
                // Once a form has been validated you can retrieve the errors from it:
                $errors = $form->getErrors(); // $form->errors(); // prior to 3.7.0
                debug($errors);
                /* $errors contains
                 [
                 'email' => ['A valid email address is required']
                 ]
                 */
                $this->Flash->error("La configuration n'a pas pu être enregistrée");
            }
        }

        // - En mode GET (ou POST avec erreur)
        
        if ($this->request->is('get')) {
            /*
            $contact->setData([
                'name' => 'John Doe',
                'email' => 'john.doe@example.com'
            ]);
            */
        }

        $this->set('contact', $contact);
        
        $fieldsets = Configure::readOrFail('MANDATORY_AND_READONLY_FIELDS');
        $this->set(compact('READONLY', 'fieldsets'));
        
    } // edit()
    
    
    
} // end of class