Blame view

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

use App\Controller\AppController;
64fba1a2   Alexandre   Base du projet : ...
5
use Cake\Event\Event;
e1f6c5b7   Alexandre   Version: 2.3.0.0
6
use Cake\ORM\TableRegistry;
6c4edfa3   Alexandre   First Commit LabI...
7
8

/**
64fba1a2   Alexandre   Base du projet : ...
9
 * Users Controller
6c4edfa3   Alexandre   First Commit LabI...
10
 *
64fba1a2   Alexandre   Base du projet : ...
11
 * @property \App\Model\Table\UsersTable $Users
6c4edfa3   Alexandre   First Commit LabI...
12
 */
64fba1a2   Alexandre   Base du projet : ...
13
class UsersController extends AppController
6c4edfa3   Alexandre   First Commit LabI...
14
{
63a22db6   Alexandre   Version: 2.2.5.0
15
16
17
18
19
	// "l'" utilisateur (et non pas "le utilisateur")
	protected function getArticle() {
		return "L'";
	}
	
04a6b875   Alexandre   Version: 2.4.2.0
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
	
	/**
	 * @param $user
	 *
	 * Give authorization for users
	 *
	 * @return boolean
	 */
	public function isAuthorized($user)
	{
		$configuration = TableRegistry::get('Configurations')->find()->where(['id =' => 1])->first();
		$role = $this->Users->find()->where(['username' => $user[$configuration->authentificationType_ldap][0]])->first()['role'];
		 
		$action = $this->request->params['action'];
		 
    	// Super-Admin peut accéder à chaque action
    	if($role == 'Super Administrateur') return true;
		
		//Pour tout le monde
		if (in_array($action, ['index', 'view', 'getLdapLogin', 'getLdapEmail'])) return true;
		 
		 
		// Par défaut refuser
		return false;
	}
	
	
64fba1a2   Alexandre   Base du projet : ...
47
48
49
	public function beforeFilter(Event $event)
	{
		parent::beforeFilter($event);
e1f6c5b7   Alexandre   Version: 2.3.0.0
50
		$this->LdapAuth->allow(['logout']);
64fba1a2   Alexandre   Base du projet : ...
51
52
53
54
55
	}
	
	public function login()
	{
		if ($this->request->is('post')) {
e1f6c5b7   Alexandre   Version: 2.3.0.0
56
57
58
59
60
61
62

			$user = $this->LdapAuth->connection();
			
			if ($user != FALSE) {
				$this->LdapAuth->setUser($user);	

				return $this->redirect($this->LdapAuth->redirectUrl());
64fba1a2   Alexandre   Base du projet : ...
63
64
65
66
67
68
69
			}
			$this->Flash->error(__('Login ou mot de passe invalide, réessayez'));
		}
	}
	
	public function logout()
	{
e1f6c5b7   Alexandre   Version: 2.3.0.0
70
		return $this->redirect($this->LdapAuth->logout());
64fba1a2   Alexandre   Base du projet : ...
71
72
73
	}
	
	
6c4edfa3   Alexandre   First Commit LabI...
74
75
76
77
78
79
80
81
    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
        $this->paginate = [
3367192b   Alexandre   Version: 2.4.3.13
82
            'contain' => ['GroupesMetiers', 'GroupesThematiques']
6c4edfa3   Alexandre   First Commit LabI...
83
        ];
64fba1a2   Alexandre   Base du projet : ...
84
        $users = $this->paginate($this->Users);
6c4edfa3   Alexandre   First Commit LabI...
85

54a38102   Alexandre   Version: 2.4.3.8
86
87
88
        //Affichage informations disponible pour l'utilisateur connecté
        $this->myDebug($this->LdapAuth->user());
        
64fba1a2   Alexandre   Base du projet : ...
89
90
        $this->set(compact('users'));
        $this->set('_serialize', ['users']);
6c4edfa3   Alexandre   First Commit LabI...
91
92
93
94
95
    }

    /**
     * View method
     *
64fba1a2   Alexandre   Base du projet : ...
96
     * @param string|null $id User id.
6c4edfa3   Alexandre   First Commit LabI...
97
98
99
100
101
     * @return \Cake\Network\Response|null
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
    public function view($id = null)
    {
64fba1a2   Alexandre   Base du projet : ...
102
        $user = $this->Users->get($id, [
3367192b   Alexandre   Version: 2.4.3.13
103
            'contain' => ['GroupesMetiers', 'GroupesThematiques']
6c4edfa3   Alexandre   First Commit LabI...
104
105
        ]);

64fba1a2   Alexandre   Base du projet : ...
106
107
        $this->set('user', $user);
        $this->set('_serialize', ['user']);
6c4edfa3   Alexandre   First Commit LabI...
108
109
110
111
112
113
114
115
116
    }

    /**
     * Add method
     *
     * @return \Cake\Network\Response|void Redirects on successful add, renders view otherwise.
     */
    public function add()
    {
64fba1a2   Alexandre   Base du projet : ...
117
        $user = $this->Users->newEntity();
6c4edfa3   Alexandre   First Commit LabI...
118
        if ($this->request->is('post')) {
64fba1a2   Alexandre   Base du projet : ...
119
120
            $user = $this->Users->patchEntity($user, $this->request->data);
            if ($this->Users->save($user)) {
3601f4f5   Alexandre   Traduction messag...
121
                $this->Flash->success(__('L\'utilisateur a bien été ajouté.'));
d40786f0   Alexandre   Version: 2.4.2.3
122
                return $this->redirect(['action' => 'view', $user->id]);
6c4edfa3   Alexandre   First Commit LabI...
123
            } else {
3601f4f5   Alexandre   Traduction messag...
124
                $this->Flash->error(__('L\utilisateur n\'a pas pu être ajouté.'));
6c4edfa3   Alexandre   First Commit LabI...
125
126
            }
        }
19798ef9   Alexandre   Mode_install, maj...
127
        $groupesMetiers = $this->Users->GroupesMetiers->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
3367192b   Alexandre   Version: 2.4.3.13
128
        $groupesThematiques = $this->Users->GroupesThematiques->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
e1f6c5b7   Alexandre   Version: 2.3.0.0
129
       
1f42188e   Alexandre   Version: 2.4.4.4
130
131
132
133
134
135
136
        $users = TableRegistry::get('LdapConnections')->getListUsers();
        //tri des utilisateurs par nom
        sort($users);
        $utilisateurs = [];
        for($i = 0; $i < sizeof($users); $i++) {
        	$utilisateurs[$users[$i]] = $users[$i];
        }
19798ef9   Alexandre   Mode_install, maj...
137
        
3367192b   Alexandre   Version: 2.4.3.13
138
        $this->set(compact('user', 'groupesMetiers', 'utilisateurs', 'groupesThematiques'));
64fba1a2   Alexandre   Base du projet : ...
139
        $this->set('_serialize', ['user']);
6c4edfa3   Alexandre   First Commit LabI...
140
141
142
143
144
    }

    /**
     * Edit method
     *
64fba1a2   Alexandre   Base du projet : ...
145
     * @param string|null $id User id.
6c4edfa3   Alexandre   First Commit LabI...
146
147
148
149
150
     * @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)
    {
64fba1a2   Alexandre   Base du projet : ...
151
        $user = $this->Users->get($id, [
6c4edfa3   Alexandre   First Commit LabI...
152
153
154
            'contain' => []
        ]);
        if ($this->request->is(['patch', 'post', 'put'])) {
64fba1a2   Alexandre   Base du projet : ...
155
156
            $user = $this->Users->patchEntity($user, $this->request->data);
            if ($this->Users->save($user)) {
3601f4f5   Alexandre   Traduction messag...
157
                $this->Flash->success(__('L\utilisateur a bien été édité.'));
d40786f0   Alexandre   Version: 2.4.2.3
158
                return $this->redirect(['action' => 'view', $id]);
6c4edfa3   Alexandre   First Commit LabI...
159
            } else {
3601f4f5   Alexandre   Traduction messag...
160
                $this->Flash->error(__('L\utilisateur n\'a pas pu être édité.'));
6c4edfa3   Alexandre   First Commit LabI...
161
162
            }
        }
19798ef9   Alexandre   Mode_install, maj...
163
        $groupesMetiers = $this->Users->GroupesMetiers->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
3367192b   Alexandre   Version: 2.4.3.13
164
        $groupesThematiques = $this->Users->GroupesThematiques->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
19798ef9   Alexandre   Mode_install, maj...
165
        
3367192b   Alexandre   Version: 2.4.3.13
166
        $this->set(compact('user', 'groupesMetiers', 'groupesThematiques'));
64fba1a2   Alexandre   Base du projet : ...
167
        $this->set('_serialize', ['user']);
6c4edfa3   Alexandre   First Commit LabI...
168
169
170
171
172
    }

    /**
     * Delete method
     *
64fba1a2   Alexandre   Base du projet : ...
173
     * @param string|null $id User id.
6c4edfa3   Alexandre   First Commit LabI...
174
175
176
177
178
179
     * @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']);
64fba1a2   Alexandre   Base du projet : ...
180
181
        $user = $this->Users->get($id);
        if ($this->Users->delete($user)) {
3601f4f5   Alexandre   Traduction messag...
182
            $this->Flash->success(__('L\utilisateur a bien été supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
183
        } else {
3601f4f5   Alexandre   Traduction messag...
184
            $this->Flash->error(__('L\utilisateur n\'a pas pu être supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
185
186
187
        }
        return $this->redirect(['action' => 'index']);
    }
e1f6c5b7   Alexandre   Version: 2.3.0.0
188
189
190
191
192
    
    
    // called from Javascript (Ajax)
    public function getLdapLogin($userName) {

c3b1f028   Alexandre   Version: 2.4.3.11
193
194
195
196
    	$u = TableRegistry::get('LdapConnections')->getListLoginUsers();
    	 
    	if(isset($u[$userName])) {
    		$this->set ('login', $u[$userName]);
e1f6c5b7   Alexandre   Version: 2.3.0.0
197
    	}
c3b1f028   Alexandre   Version: 2.4.3.11
198
    	
e1f6c5b7   Alexandre   Version: 2.3.0.0
199
200
201
202
203
    	$this->viewBuilder()->layout = 'ajax';
    }
    
    // called from Javascript (Ajax)
    public function getLdapEmail($userName) {
04d93bf5   Alexandre   Version: 2.4.3.9
204
    	
c3b1f028   Alexandre   Version: 2.4.3.11
205
206
207
208
    	$u = TableRegistry::get('LdapConnections')->getListEmailUsers();
    	
    	if(isset($u[$userName])) {
    		$this->set ('email', $u[$userName]);
04d93bf5   Alexandre   Version: 2.4.3.9
209
210
    	}
    	else {
c3b1f028   Alexandre   Version: 2.4.3.11
211
    		$this->set ('email', ' ');
e1f6c5b7   Alexandre   Version: 2.3.0.0
212
213
214
215
216
217
    	}
    
    	$this->viewBuilder()->layout = 'ajax';
    }
    
    
6c4edfa3   Alexandre   First Commit LabI...
218
}