Blame view

src/Controller/EmpruntsController.php 7.61 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
28
29
30
31
32
	/**
	 * @param $user
	 *
	 * Give authorization for emprunts
	 *
	 * @return boolean
	 */
	public function isAuthorized($user)
	{
		$configuration = TableRegistry::get('Configurations')->find()->where(['id =' => 1])->first();
		$role = TableRegistry::get('Users')->find()->where(['username' => $user[$configuration->authentificationType_ldap][0]])->first()['role'];
		 
		$action = $this->request->params['action'];
		 
8b90af53   Alexandre   Version: 2.4.2.12
33
		if($this->userHasRole('Responsable')) return true;
04a6b875   Alexandre   Version: 2.4.2.0
34
35
36
37
	
		//Pour un "utilisateur"
		if (in_array($action, ['edit', 'delete'])) {
			$id = (int)$this->request->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é.'));
63a22db6   Alexandre   Version: 2.2.5.0
98
                return $this->redirect(['controller' => 'Materiels', 'action' => 'view', $this->passedArgs[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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
        $materiels = $this->Emprunts->Materiels->find('list');
        $numMateriel = $this->Emprunts->Materiels->find()->select('numero_laboratoire')->where(['id =' => $this->passedArgs[0]])->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');
        if (isset($interne)) {
        	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
161
162
163
164
165
166
167
168
169
        $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');
        if (isset ($interne)) {
        	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
202
        }
        return $this->redirect(['action' => 'index']);
    }
}