Blame view

src/Model/Table/DocumentsTable.php 7.04 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
<?php
namespace App\Model\Table;

6c4edfa3   Alexandre   First Commit LabI...
4
5
6
use Cake\ORM\RulesChecker;
use Cake\ORM\Table;
use Cake\Validation\Validator;
4dae83a2   Alexandre   Version: 2.5.1.0
7
use Cake\ORM\TableRegistry;
6c4edfa3   Alexandre   First Commit LabI...
8
9
10
11
12
13
14

/**
 * Documents Model
 *
 * @property \Cake\ORM\Association\BelongsTo $Materiels
 * @property \Cake\ORM\Association\BelongsTo $Suivis
 */
0e5846aa   Alexandre   Css bouton valide...
15
class DocumentsTable extends AppTable
6c4edfa3   Alexandre   First Commit LabI...
16
17
18
19
20
{

    /**
     * Initialize method
     *
63c3cb16   epallier   Nombreux petits b...
21
22
     * @param array $config
     *            The configuration for the Table.
6c4edfa3   Alexandre   First Commit LabI...
23
24
25
26
27
     * @return void
     */
    public function initialize(array $config)
    {
        parent::initialize($config);
63c3cb16   epallier   Nombreux petits b...
28
        
6c4edfa3   Alexandre   First Commit LabI...
29
30
31
        $this->table('documents');
        $this->displayField('id');
        $this->primaryKey('id');
63c3cb16   epallier   Nombreux petits b...
32
        
6c4edfa3   Alexandre   First Commit LabI...
33
34
35
36
37
38
39
40
        $this->belongsTo('Materiels', [
            'foreignKey' => 'materiel_id',
            'joinType' => 'INNER'
        ]);
        $this->belongsTo('Suivis', [
            'foreignKey' => 'suivi_id',
            'joinType' => 'INNER'
        ]);
9b4da83b   Alexandre   Version: 2.5.0.0
41
42
        
        $this->belongsTo('TypeDocuments', [
63c3cb16   epallier   Nombreux petits b...
43
            'foreignKey' => 'type_document_id'
9b4da83b   Alexandre   Version: 2.5.0.0
44
        ]);
6c4edfa3   Alexandre   First Commit LabI...
45
46
47
48
49
    }

    /**
     * Default validation rules.
     *
63c3cb16   epallier   Nombreux petits b...
50
51
     * @param \Cake\Validation\Validator $validator
     *            Validator instance.
6c4edfa3   Alexandre   First Commit LabI...
52
53
54
55
     * @return \Cake\Validation\Validator
     */
    public function validationDefault(Validator $validator)
    {
63c3cb16   epallier   Nombreux petits b...
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
        $validator->integer('id')->allowEmpty('id', 'create');
        
        $validator->allowEmpty('type_doc');
        
        $validator->allowEmpty('chemin_file');
        
        $validator->notEmpty('nom');
        
        $validator->allowEmpty('type_document_id');
        
        $validator->allowEmpty('description');
        
        $validator->allowEmpty('materiel_id');
        
        $validator->allowEmpty('photo');
        
        $validator->allowEmpty('suivi_id');
        
b584227a   Malik Imelhaine   Dernier Update + ...
74
75
76
77
        //Mi regex pour mettre la règle alphaNumericDashUnderscore
        $validator->add('nom', 'alphaNumericDashUnderscore', [
        		'rule' => ['custom', '|^[0-9a-zA-Z_-]*$|'],
        		'message' => __('Le nom du document ne doit contenir que des chiffres, des lettres, des tirets, ou des tirets.'),
5b54a286   mimelhaine   Version master pe...
78
        ]);
727b4dd0   mimelhaine   Merge branch 'mas...
79

6c4edfa3   Alexandre   First Commit LabI...
80
        return $validator;
63c3cb16   epallier   Nombreux petits b...
81
82
    }

b584227a   Malik Imelhaine   Dernier Update + ...
83
84
    
    
6c4edfa3   Alexandre   First Commit LabI...
85
86
87
88
    /**
     * Returns a rules checker object that will be used for validating
     * application integrity.
     *
63c3cb16   epallier   Nombreux petits b...
89
90
     * @param \Cake\ORM\RulesChecker $rules
     *            The rules object to be modified.
6c4edfa3   Alexandre   First Commit LabI...
91
     * @return \Cake\ORM\RulesChecker
9b4da83b   Alexandre   Version: 2.5.0.0
92
     */
6c4edfa3   Alexandre   First Commit LabI...
93
94
    public function buildRules(RulesChecker $rules)
    {
63c3cb16   epallier   Nombreux petits b...
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
        $config = TableRegistry::get('Configurations')->find()
            ->where([
            'id =' => 1
        ])
            ->first();
        
        $checkSizeDoc = function ($entity) {
            if (! empty($entity->get('chemin_file')['tmp_name'])) {
                $config = TableRegistry::get('Configurations')->find()
                    ->where([
                    'id =' => 1
                ])
                    ->first();
                $size = $entity->get('chemin_file')['size'];
                if ($size !== null) {
                    if ($size > $config->taille_max_doc)
                        return false;
                    else
                        return true;
                } else
                    return false;
            } else
                return true;
        };
        
        $checkPhoto = function ($entity) {
            if (! empty($entity->get('chemin_file')['tmp_name'])) {
                if ($entity->get('photo')) {
                    $extension = strtolower(pathinfo($entity->get('chemin_file')['name'], PATHINFO_EXTENSION));
                    return in_array($extension, [
                        'png',
                        'jpg',
                        'jpeg'
                    ]);
                } else
                    return true;
            } else
                return true;
        };
        
        $checkEditFile = function ($entity) {
            if (! $entity->get('edit')) {
                if (empty($entity->get('chemin_file')['tmp_name'])) {
                    return false;
                } else {
                    return true;
                }
            } else {
                return true;
            }
        };
        
        $rules->add($checkSizeDoc, [
            'errorField' => 'chemin_file',
            'message' => 'Le fichier ne peut pas avoir une taille supérieur à ' . substr($config->taille_max_doc / (1024 * 1024), 0, 4) . ' Mo.'
        ]);
        
        $rules->add($checkPhoto, [
            'errorField' => 'chemin_file',
            'message' => 'La photo doit etre au format png, jpg (ou jpeg).'
        ]);
        
        $rules->add($checkEditFile, [
            'errorField' => 'chemin_file',
            'message' => 'Un fichier doit être présent.'
        ]);
        
6c4edfa3   Alexandre   First Commit LabI...
162
        return $rules;
9b4da83b   Alexandre   Version: 2.5.0.0
163
164
    }

9b4da83b   Alexandre   Version: 2.5.0.0
165
166
167
    /**
     * Custom Validation Rules
     */
63c3cb16   epallier   Nombreux petits b...
168
169
170
171
172
173
174
175
    public function fileExtension($check, $extensions, $allowEmpty = false)
    {
        $file = current($check);
        if ($allowEmpty && empty($file['tmp_name'])) {
            return true;
        }
        $extension = strtolower(pathinfo($file['name'], PATHINFO_EXTENSION));
        return in_array($extension, $extensions);
9b4da83b   Alexandre   Version: 2.5.0.0
176
    }
63c3cb16   epallier   Nombreux petits b...
177

9b4da83b   Alexandre   Version: 2.5.0.0
178
179
    /**
     * CakePHP Model Functions
63c3cb16   epallier   Nombreux petits b...
180
     */
9b4da83b   Alexandre   Version: 2.5.0.0
181
182
    public function beforeSave($event, $entity, $options)
    {
63c3cb16   epallier   Nombreux petits b...
183
184
185
186
187
188
189
        $file = $entity->get('chemin_file');
        if (! empty($file['tmp_name'])) {
            $extension = strtolower(pathinfo($file['name'], PATHINFO_EXTENSION));
            $entity->set('type_doc', $extension);
        }
        
        return true;
9b4da83b   Alexandre   Version: 2.5.0.0
190
    }
63c3cb16   epallier   Nombreux petits b...
191

9b4da83b   Alexandre   Version: 2.5.0.0
192
193
    /**
     * CakePHP Model Functions
63c3cb16   epallier   Nombreux petits b...
194
195
196
197
198
199
     */
    public function afterSave($event, $entity, $options)
    {
        $file = $entity->get('chemin_file');
        if (! empty($file['tmp_name'])) {
            $extension = strtolower(pathinfo($file['name'], PATHINFO_EXTENSION));
b584227a   Malik Imelhaine   Dernier Update + ...
200
201
            // MI nouvelle norme pour les noms de documents uploadés
            // id(du matériel ou suivi associé)_NomDoc_id(Doc).extension
ed4c8419   mimelhaine   Test avant merge
202
203
204
205
206
207
            if(!$entity->get('materiel_id')== Null ) {
            	$id=$entity->get('materiel_id');
            } else {
            	$id=$entity->get('suivi_id');
            }
            $nom=$id."_".$entity->get('nom')."_".$entity->get('id'). '.' . $extension;
63c3cb16   epallier   Nombreux petits b...
208
            if ($entity->get('photo')) {
ed4c8419   mimelhaine   Test avant merge
209
            	move_uploaded_file($file['tmp_name'], 'img' . DS . 'photos' . DS . $nom );
63c3cb16   epallier   Nombreux petits b...
210
            } else {
ed4c8419   mimelhaine   Test avant merge
211
            	move_uploaded_file($file['tmp_name'], 'files' . DS . $nom );
63c3cb16   epallier   Nombreux petits b...
212
213
            }
        }
9b4da83b   Alexandre   Version: 2.5.0.0
214
    }
63c3cb16   epallier   Nombreux petits b...
215

9b4da83b   Alexandre   Version: 2.5.0.0
216
217
    /**
     * CakePHP Model Functions
63c3cb16   epallier   Nombreux petits b...
218
219
220
     */
    public function afterDelete($event, $entity, $options)
    {
b584227a   Malik Imelhaine   Dernier Update + ...
221
222
    	// MI nouvelle norme pour les noms de documents uploadés
    	// id(du matériel ou suivi associé)_NomDoc_id(Doc).extension
ed4c8419   mimelhaine   Test avant merge
223
224
225
226
227
228
    	if(!$entity->get('materiel_id')== Null ) {
    		$id=$entity->get('materiel_id');
    	} else {
    		$id=$entity->get('suivi_id');
    	}
    	$nomFichier=$id."_".$entity->get('nom')."_".$entity->get('id').'.' . $entity->get('type_doc');
63c3cb16   epallier   Nombreux petits b...
229
        if ($entity->get('photo')) {
6c90374e   Malik Imelhaine   Partie III - Mail...
230
        	unlink('img' . DS . 'photos' . DS . $nomFichier);
63c3cb16   epallier   Nombreux petits b...
231
        } else {
6c90374e   Malik Imelhaine   Partie III - Mail...
232
        	unlink('files' . DS . $nomFichier);
63c3cb16   epallier   Nombreux petits b...
233
        }
9b4da83b   Alexandre   Version: 2.5.0.0
234
    }
6c4edfa3   Alexandre   First Commit LabI...
235
}