Blame view

src/Controller/UsersController.php 6.09 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
82
83
    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
        $this->paginate = [
            'contain' => ['GroupesMetiers']
        ];
64fba1a2   Alexandre   Base du projet : ...
84
        $users = $this->paginate($this->Users);
6c4edfa3   Alexandre   First Commit LabI...
85

64fba1a2   Alexandre   Base du projet : ...
86
87
        $this->set(compact('users'));
        $this->set('_serialize', ['users']);
6c4edfa3   Alexandre   First Commit LabI...
88
89
90
91
92
    }

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

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

    /**
     * Add method
     *
     * @return \Cake\Network\Response|void Redirects on successful add, renders view otherwise.
     */
    public function add()
    {
64fba1a2   Alexandre   Base du projet : ...
114
        $user = $this->Users->newEntity();
6c4edfa3   Alexandre   First Commit LabI...
115
        if ($this->request->is('post')) {
64fba1a2   Alexandre   Base du projet : ...
116
117
            $user = $this->Users->patchEntity($user, $this->request->data);
            if ($this->Users->save($user)) {
3601f4f5   Alexandre   Traduction messag...
118
                $this->Flash->success(__('L\'utilisateur a bien été ajouté.'));
d40786f0   Alexandre   Version: 2.4.2.3
119
                return $this->redirect(['action' => 'view', $user->id]);
6c4edfa3   Alexandre   First Commit LabI...
120
            } else {
3601f4f5   Alexandre   Traduction messag...
121
                $this->Flash->error(__('L\utilisateur n\'a pas pu être ajouté.'));
6c4edfa3   Alexandre   First Commit LabI...
122
123
            }
        }
19798ef9   Alexandre   Mode_install, maj...
124
        $groupesMetiers = $this->Users->GroupesMetiers->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
e1f6c5b7   Alexandre   Version: 2.3.0.0
125
126
       
        $utilisateurs = TableRegistry::get('LdapConnections')->getListUsers();
19798ef9   Alexandre   Mode_install, maj...
127
        
e1f6c5b7   Alexandre   Version: 2.3.0.0
128
        $this->set(compact('user', 'groupesMetiers', 'utilisateurs'));
64fba1a2   Alexandre   Base du projet : ...
129
        $this->set('_serialize', ['user']);
6c4edfa3   Alexandre   First Commit LabI...
130
131
132
133
134
    }

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

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

    	$ldapConnection = TableRegistry::get('LdapConnections');
    	$u = $ldapConnection->getAllLdapUsers();
    	
    	for($i = 0; $i < $ldapConnection->getNbUsers(); $i++) {
    		
    	    if (!empty($u[$i][$this->request->session()->read('authType')][0])) {
04a6b875   Alexandre   Version: 2.4.2.0
188
    			if ($userName == $u[$i]['givenname'][0].' '.$u[$i]['sn'][0]) {
e1f6c5b7   Alexandre   Version: 2.3.0.0
189
190
191
192
193
194
195
196
197
198
199
200
    				$this->set ( 'login', $u[$i][$this->request->session()->read('authType')][0] );
    			}
    		}
    	}

    	$this->viewBuilder()->layout = 'ajax';
    }
    
    // called from Javascript (Ajax)
    public function getLdapEmail($userName) {
    	$ldapConnection = TableRegistry::get('LdapConnections');
    	$u = $ldapConnection->getAllLdapUsers();
49ec2c4a   Alexandre   Version: 2.3.1.0
201

e1f6c5b7   Alexandre   Version: 2.3.0.0
202
        for($i = 0; $i < $ldapConnection->getNbUsers(); $i++) {
04a6b875   Alexandre   Version: 2.4.2.0
203

e1f6c5b7   Alexandre   Version: 2.3.0.0
204
205
            if (!empty($u[$i][$this->request->session()->read('authType')][0])) {

04a6b875   Alexandre   Version: 2.4.2.0
206
    			if ($userName == $u[$i]['givenname'][0].' '.$u[$i]['sn'][0]) {
e1f6c5b7   Alexandre   Version: 2.3.0.0
207
208
209
210
211
212
213
214
215
216
217
    				$this->set ('email', $u[$i]['mail'][0] );
    			}
    		}
    				

    	}
    
    	$this->viewBuilder()->layout = 'ajax';
    }
    
    
6c4edfa3   Alexandre   First Commit LabI...
218
}