Blame view

src/Controller/EmpruntsController.php 12.2 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
<?php
namespace App\Controller;

use App\Controller\AppController;
19798ef9   Alexandre   Mode_install, maj...
5
6
use Cake\ORM\TableRegistry;

6c4edfa3   Alexandre   First Commit LabI...
7
8
9
10
11
12
13
14
15

/**
 * Emprunts Controller
 *
 * @property \App\Model\Table\EmpruntsTable $Emprunts
 */
class EmpruntsController extends AppController
{

63a22db6   Alexandre   Version: 2.2.5.0
16
17
18
	// "l'" emprunt (et non pas "le emprunt")
	protected function getArticle() { return "L'"; }
	
04a6b875   Alexandre   Version: 2.4.2.0
19
20
21
22
23
24
25
26
27
	/**
	 * @param $user
	 *
	 * Give authorization for emprunts
	 *
	 * @return boolean
	 */
	public function isAuthorized($user)
	{
aaf7558a   Thibaud Ajas   modifications de ...
28
		$configuration = $this->confLabinvent;
04a6b875   Alexandre   Version: 2.4.2.0
29
30
		$role = TableRegistry::get('Users')->find()->where(['username' => $user[$configuration->authentificationType_ldap][0]])->first()['role'];
		 
a0fefb3d   Thibaud Ajas   bugfixes suite au...
31
		$action = $this->request->getAttribute('params')['action'];
04a6b875   Alexandre   Version: 2.4.2.0
32
		 
8b90af53   Alexandre   Version: 2.4.2.12
33
		if($this->userHasRole('Responsable')) return true;
04a6b875   Alexandre   Version: 2.4.2.0
34
35
36
	
		//Pour un "utilisateur"
		if (in_array($action, ['edit', 'delete'])) {
a0fefb3d   Thibaud Ajas   bugfixes suite au...
37
			$id = (int)$this->request->getAttribute('params')['pass'][0];
3f179b66   Alexandre   Version: 2.5.4.2
38
			if($this->isOwnedBy($id, $user['sn'][0].' '.$user['givenname'][0])) return true;
04a6b875   Alexandre   Version: 2.4.2.0
39
40
41
42
43
44
45
46
47
48
49
		}
		 
		return parent::isAuthorized($user);
	}
	
	
	public function isOwnedBy($id, $nomCreateur)
	{
		return ($this->Emprunts->exists(['id' => $id, 'nom_createur' => $nomCreateur]) || $this->Emprunts->exists(['id' => $id, 'nom_emprunteur' => $nomCreateur]));
	}
	
6c4edfa3   Alexandre   First Commit LabI...
50
51
52
53
54
55
56
57
    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
        $this->paginate = [
ebe38bef   Alexandre   #3586 Ajout assoc...
58
            'contain' => ['Materiels', 'Sites']
6c4edfa3   Alexandre   First Commit LabI...
59
60
        ];
        $emprunts = $this->paginate($this->Emprunts);
0e5846aa   Alexandre   Css bouton valide...
61
        
0e5846aa   Alexandre   Css bouton valide...
62
        
183ce554   Alexandre   Ajout de test, su...
63
64
        $this->set('nbEmprunts', $this->Emprunts->find('all')->count());
        
ebe38bef   Alexandre   #3586 Ajout assoc...
65
        $this->set(compact('emprunts'));
6c4edfa3   Alexandre   First Commit LabI...
66
67
68
69
70
71
72
73
74
75
76
77
78
        $this->set('_serialize', ['emprunts']);
    }

    /**
     * View method
     *
     * @param string|null $id Emprunt id.
     * @return \Cake\Network\Response|null
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
    public function view($id = null)
    {
        $emprunt = $this->Emprunts->get($id, [
ebe38bef   Alexandre   #3586 Ajout assoc...
79
            'contain' => ['Materiels', 'Sites']
6c4edfa3   Alexandre   First Commit LabI...
80
        ]);
0e5846aa   Alexandre   Css bouton valide...
81
        
6c4edfa3   Alexandre   First Commit LabI...
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
        $this->set('emprunt', $emprunt);
        $this->set('_serialize', ['emprunt']);
    }

    /**
     * Add method
     *
     * @return \Cake\Network\Response|void Redirects on successful add, renders view otherwise.
     */
    public function add()
    {
        $emprunt = $this->Emprunts->newEntity();
        if ($this->request->is('post')) {
            $emprunt = $this->Emprunts->patchEntity($emprunt, $this->request->data);
            if ($this->Emprunts->save($emprunt)) {
3601f4f5   Alexandre   Traduction messag...
97
                $this->Flash->success(__('L\'emprunt a bien été ajouté.'));
a0fefb3d   Thibaud Ajas   bugfixes suite au...
98
                return $this->redirect(['controller' => 'Materiels', 'action' => 'view', $this->request->getAttribute('params')['pass'][0]]);
6c4edfa3   Alexandre   First Commit LabI...
99
            } else {
3601f4f5   Alexandre   Traduction messag...
100
                $this->Flash->error(__('L\'emprunt n\'a pas pu être ajouté..'));
6c4edfa3   Alexandre   First Commit LabI...
101
102
            }
        }
19798ef9   Alexandre   Mode_install, maj...
103
        $materiels = $this->Emprunts->Materiels->find('list');
a0fefb3d   Thibaud Ajas   bugfixes suite au...
104
        $numMateriel = $this->Emprunts->Materiels->find()->select('numero_laboratoire')->where(['id =' => $this->request->getAttribute('params')['pass'][0]])->first()['numero_laboratoire'];
19798ef9   Alexandre   Mode_install, maj...
105
106
107
108
109
        
        // Gestion du lieu de stockage : soit on cache la DIV 'interne' et on affiche la DIV 'externe', soit on fait l'inverse (par defaut, interne)
        $disp_interne = 'display:block';
        $disp_externe = 'display:none';
        $interne = $emprunt->get('emprunt_interne');
a0fefb3d   Thibaud Ajas   bugfixes suite au...
110
        if ($interne !== null) {
19798ef9   Alexandre   Mode_install, maj...
111
112
113
114
115
116
117
118
        	if ($emprunt->get('emprunt_interne') == 1) {
        		$disp_interne = 'display:block';
        		$disp_externe = 'display:none';
        	} else {
        		$disp_interne = 'display:none';
        		$disp_externe = 'display:block';
        	}
        }
3f179b66   Alexandre   Version: 2.5.4.2
119
        $nom_emprunteur_int = $this->LdapAuth->user('sn')[0].' '.$this->LdapAuth->user('givenname')[0];
e1f6c5b7   Alexandre   Version: 2.3.0.0
120
        $mail_emprunteur_int = TableRegistry::get('Users')->find()->select('email')->where(['username =' => $this->LdapAuth->user($this->request->session()->read('authType'))[0]])->first()['email'];
19798ef9   Alexandre   Mode_install, maj...
121
122
123
124
        
        $nom_emprunteur_ext = '';
        $mail_emprunteur_ext = '';
      
e1f6c5b7   Alexandre   Version: 2.3.0.0
125
        $utilisateurs = TableRegistry::get('LdapConnections')->getListUsers();
19798ef9   Alexandre   Mode_install, maj...
126
        
ebe38bef   Alexandre   #3586 Ajout assoc...
127
        $sites = $this->Emprunts->Sites->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
19798ef9   Alexandre   Mode_install, maj...
128
129
        
        $this->set(compact('emprunt', 'materiels', 'numMateriel', 'disp_externe', 'disp_interne', 'nom_emprunteur_int', 'mail_emprunteur_int', 'nom_emprunteur_ext', 'mail_emprunteur_ext', 'utilisateurs', 'sites'));
6c4edfa3   Alexandre   First Commit LabI...
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
        $this->set('_serialize', ['emprunt']);
    }

    /**
     * Edit method
     *
     * @param string|null $id Emprunt id.
     * @return \Cake\Network\Response|void Redirects on successful edit, renders view otherwise.
     * @throws \Cake\Network\Exception\NotFoundException When record not found.
     */
    public function edit($id = null)
    {
        $emprunt = $this->Emprunts->get($id, [
            'contain' => []
        ]);
        if ($this->request->is(['patch', 'post', 'put'])) {
            $emprunt = $this->Emprunts->patchEntity($emprunt, $this->request->data);
            if ($this->Emprunts->save($emprunt)) {
3601f4f5   Alexandre   Traduction messag...
148
                $this->Flash->success(__('L\'emprunt a bien été édité.'));
d40786f0   Alexandre   Version: 2.4.2.3
149
                return $this->redirect(['action' => 'view', $id]);
6c4edfa3   Alexandre   First Commit LabI...
150
            } else {
3601f4f5   Alexandre   Traduction messag...
151
                $this->Flash->error(__('L\'emprunt n\'a pas pu être édité.'));
6c4edfa3   Alexandre   First Commit LabI...
152
153
            }
        }
19798ef9   Alexandre   Mode_install, maj...
154
155
156
157
158
159
160
        $materiels = $this->Emprunts->Materiels->find('list');
        $numMateriel = $this->Emprunts->Materiels->find()->select('numero_laboratoire')->where(['id =' => $emprunt->get('materiel_id')])->first()['numero_laboratoire'];

        // Gestion du lieu de stockage : soit on cache la DIV 'interne' et on affiche la DIV 'externe', soit on fait l'inverse (par defaut, interne)
        $disp_interne = 'display:block';
        $disp_externe = 'display:none';
        $interne = $emprunt->get('emprunt_interne');
a0fefb3d   Thibaud Ajas   bugfixes suite au...
161
        if ($interne !== null) {
19798ef9   Alexandre   Mode_install, maj...
162
163
164
165
166
167
168
169
        	if ($emprunt->get('emprunt_interne') == 1) {
        		$disp_interne = 'display:block';
        		$disp_externe = 'display:none';
        	} else {
        		$disp_interne = 'display:none';
        		$disp_externe = 'display:block';
        	}
        }
3f179b66   Alexandre   Version: 2.5.4.2
170
        $nom_emprunteur_int = $this->LdapAuth->user('sn')[0].' '.$this->LdapAuth->user('givenname')[0];
e1f6c5b7   Alexandre   Version: 2.3.0.0
171
        $mail_emprunteur_int = TableRegistry::get('Users')->find()->select('email')->where(['username =' => $this->LdapAuth->user($this->request->session()->read('authType'))[0]])->first()['email'];
19798ef9   Alexandre   Mode_install, maj...
172
173
174
175
        
        $nom_emprunteur_ext = '';
        $mail_emprunteur_ext = '';
        
e1f6c5b7   Alexandre   Version: 2.3.0.0
176
        $utilisateurs = TableRegistry::get('LdapConnections')->getListUsers();
19798ef9   Alexandre   Mode_install, maj...
177
        
ebe38bef   Alexandre   #3586 Ajout assoc...
178
        $sites = $this->Emprunts->Sites->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
19798ef9   Alexandre   Mode_install, maj...
179
180
        
        $this->set(compact('emprunt', 'materiels', 'numMateriel', 'disp_externe', 'disp_interne', 'nom_emprunteur_int', 'mail_emprunteur_int', 'nom_emprunteur_ext', 'mail_emprunteur_ext', 'utilisateurs', 'sites'));
6c4edfa3   Alexandre   First Commit LabI...
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
        $this->set('_serialize', ['emprunt']);
    }

    /**
     * Delete method
     *
     * @param string|null $id Emprunt id.
     * @return \Cake\Network\Response|null Redirects to index.
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
    public function delete($id = null)
    {
        $this->request->allowMethod(['post', 'delete']);
        $emprunt = $this->Emprunts->get($id);
        if ($this->Emprunts->delete($emprunt)) {
3601f4f5   Alexandre   Traduction messag...
196
            $this->Flash->success(__('L\'emprunt a bien été supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
197
        } else {
3601f4f5   Alexandre   Traduction messag...
198
            $this->Flash->error(__('L\'emprunt n\'a pas pu être supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
199
200
201
        }
        return $this->redirect(['action' => 'index']);
    }
5973ba4e   Alexis Proust   mise a jour fichier
202
203
204
205
206
207
208
209
210
211
212
	
	
	
    /**
     * GetConditionForField method
     *
     * @param unknown $fieldName
     * @return string[]|NULL
     */
    private function getConditionForField($fieldName) {
    	$searchFieldName = 's_' . $fieldName;
a0fefb3d   Thibaud Ajas   bugfixes suite au...
213
    	if ( $this->request->getData($searchFieldName) !== null && ($this->request->getData($searchFieldName) != '')) return ["Suivis.$fieldName LIKE" => '%'.$this->request->getData($searchFieldName).'%'];
5973ba4e   Alexis Proust   mise a jour fichier
214
215
216
217
218
    	return NULL;
    }
	
	 public function find() {		
		
5973ba4e   Alexis Proust   mise a jour fichier
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
    	$s_site = $this->Emprunts->Sites->find('list', [ 'keyField' => 'id', 'valueField' => 'nom', 'order' => 'Sites.nom']);
    	$s_nomEmprunteur = $this->Emprunts->find('list', [ 'keyField' => 'nom_emprunteur', 'valueField' => 'nom_emprunteur', 'order' => 'nom_emprunteur']);
    	$s_e_lieu_detail = $this->Emprunts->find('list', [ 'keyField' => 'e_lieu_detail' , 'valueField' => 'e_lieu_detail', 'order' => 'e_lieu_detail', 'conditions' => array('emprunt_interne =' => '1')]);
    	$materiels = $this->Emprunts->Materiels;
    	$nom_emprunteur_ext = $this->Emprunts->find('list', [ 'keyField' => 'nom_emprunteur' , 'valueField' => 'nom_emprunteur', 'order' => 'nom_emprunteur', 'conditions' => ['emprunt_interne =' => '0' ]]);
    	$nom_emprunteur_int = $this->Emprunts->find('list', [ 'keyField' => 'nom_emprunteur' , 'valueField' => 'nom_emprunteur', 'order' => 'nom_emprunteur', 'conditions' => array('emprunt_interne =' => '1' )]);
    	$s_laboratoire =$this->Emprunts->find('list', [ 'keyField' => 'laboratoire' , 'valueField' => 'laboratoire', 'order' => 'laboratoire' , 'conditions' => array('emprunt_interne =' => '0')]);
		$sites = $this->Emprunts->Sites;
		
		$this->set(compact('s_site','s_nomEmprunteur', 'materiels','s_e_lieu_detail', 'nom_emprunteur_int','nom_emprunteur_ext','s_laboratoire','sites'));
    	 
    	$resultTri = $this->request->session()->read("resultTri");
    	 
    	if ($this->request->is('post')) {
    		$specificFieldsConditions = NULL;
			$nom_emprunteur = NULL;
    		$periode_interventionRequest = NULL;
a0fefb3d   Thibaud Ajas   bugfixes suite au...
236
237
238
    		if ($this->request->getData('s_date_emprunt') != '') $periode_interventionRequest['Emprunts.date_emprunt >='] = date('Y-m-d', strtotime(str_replace('/', '-', $this->request->getData('s_date_emprunt'))));
    		if ($this->request->getData('s_date_retour_emprunt') != '') $periode_interventionRequest['Emprunts.date_retour_emprunt <='] = date('Y-m-d', strtotime(str_replace('/', '-', $this->request->getData('s_date_retour_emprunt'))));
	 		if($this->request->getData('emprunt_interne') == true){
5973ba4e   Alexis Proust   mise a jour fichier
239
				$nom_emprunteur['Emprunts.emprunt_interne =']= true;
a0fefb3d   Thibaud Ajas   bugfixes suite au...
240
241
242
243
244
245
				if($this->request->getData('nom_emprunteur_int') != '')
				$nom_emprunteur['Emprunts.nom_emprunteur =']= $this->request->getData('nom_emprunteur_int');
				if($this->request->getData('e_lieu_detail') != '')
				$nom_emprunteur['Emprunts.e_lieu_detail =']= $this->request->getData('e_lieu_detail');
				if($this->request->getData('site') != '')
				$nom_emprunteur['Emprunts.site_id =']= $this->request->getData('site');
5973ba4e   Alexis Proust   mise a jour fichier
246
247
248
			}else {
				$nom_emprunteur['Emprunts.emprunt_interne =']= false;
				
a0fefb3d   Thibaud Ajas   bugfixes suite au...
249
250
251
252
				if($this->request->getData('nom_emprunteur_ext') != '')
				$nom_emprunteur['Emprunts.nom_emprunteur =']= $this->request->getData('nom_emprunteur_ext');
				if($this->request->getData('laboratoire') != '')
				$nom_emprunteur['Emprunts.laboratoire =']= $this->request->getData('laboratoire');
5973ba4e   Alexis Proust   mise a jour fichier
253
254
			}
		
a0fefb3d   Thibaud Ajas   bugfixes suite au...
255
			/*if($this->request->getData('emprunt_interne') == true)
5973ba4e   Alexis Proust   mise a jour fichier
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
			$nom_emprunteur['Emprunts.emprunt_interne =']= true;
			else
			$nom_emprunteur['Emprunts.emprunt_interne =']= false;*/
    		$specificFieldsConditions = [
				$periode_interventionRequest,
    			$nom_emprunteur					
    		];
    
    		// CONSTRUCTION DE LA REQUETE SQL COMPLETE = $specificFieldsConditions
    		// by default, no sort
			//
    		$lastResults = $this->Emprunts->find('all' , ['conditions' => $specificFieldsConditions]);
    
    		$this->paginate = ['limit' => 1000];
    		$_results = $this->paginate($lastResults);
    		$this->set(compact('_results'));
    
    	} // end if()
a0fefb3d   Thibaud Ajas   bugfixes suite au...
274
    	else if ($resultTri !== null && strstr($this->request->here(), 'sort') != false && strstr($this->request->here(), 'direction') != false) {
5973ba4e   Alexis Proust   mise a jour fichier
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
    		$findedEmprunts = [];
    
    		foreach($resultTri as $r) {
    			array_push($findedEmprunts, $r->id);
    		}
    		$res = $this->Emprunts->find('all', ['limit' => 1000]);
    		for($i = 0; $i < sizeof($findedEmprunts); $i++) {
    			$res->orWhere(['id =' => $findedEmprunts[$i]]);
    		}
    
    		$this->paginate = ['limit' => 1000];
    		$_results = $this->paginate($res);
    		$this->set(compact('_results'));

    	}
    }
6c4edfa3   Alexandre   First Commit LabI...
291
}