Blame view

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

use App\Controller\AppController;
04a6b875   Alexandre   Version: 2.4.2.0
5
use Cake\ORM\TableRegistry;
6c4edfa3   Alexandre   First Commit LabI...
6
7
8
9
10
11
12
13

/**
 * GroupesMetiers Controller
 *
 * @property \App\Model\Table\GroupesMetiersTable $GroupesMetiers
 */
class GroupesMetiersController extends AppController
{
04a6b875   Alexandre   Version: 2.4.2.0
14
15
16
17
18
19
20
21
22
23
	
	/**
	 * @param $user
	 *
	 * Give authorization for groupes metiers
	 *
	 * @return boolean
	 */
	public function isAuthorized($user)
	{
aaf7558a   Thibaud Ajas   modifications de ...
24
		$configuration = $this->confLabinvent;
04a6b875   Alexandre   Version: 2.4.2.0
25
		$role = TableRegistry::get('Users')->find()->where(['username' => $user[$configuration->authentificationType_ldap][0]])->first()['role'];
a0fefb3d   Thibaud Ajas   bugfixes suite au...
26
		$action = $this->request->getAttribute('params')['action'];
04a6b875   Alexandre   Version: 2.4.2.0
27
28
29
	
		// Super-Admin peut accéder à chaque action
		if($role == 'Super Administrateur') return true;
243c3483   Alexis Proust   mise a jour fichier
30
31
32
33
		
		// Administration peut ajouter, supprimer ou modifier un métier
		if($role == 'Administration' && in_array($action,['add','delete','edit'])) return true;
		
04a6b875   Alexandre   Version: 2.4.2.0
34
35
36
37
		if (in_array($action, ['view', 'index'])) {
			return true;
		}
	
08d8dbb0   Alexandre   Version: 2.4.2.14
38
		if($this->userHasRole('Administration Plus')) {
94c77ea4   Alexandre   Version: 2.4.2.10
39
			if($action != 'delete') return true;
04a6b875   Alexandre   Version: 2.4.2.0
40
41
42
43
44
		}
	
		return false;
	}
	
6c4edfa3   Alexandre   First Commit LabI...
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68

    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
        $groupesMetiers = $this->paginate($this->GroupesMetiers);

        $this->set(compact('groupesMetiers'));
        $this->set('_serialize', ['groupesMetiers']);
    }

    /**
     * View method
     *
     * @param string|null $id Groupes Metier id.
     * @return \Cake\Network\Response|null
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
    public function view($id = null)
    {
        $groupesMetier = $this->GroupesMetiers->get($id, [
64fba1a2   Alexandre   Base du projet : ...
69
            'contain' => ['Materiels', 'Users']
6c4edfa3   Alexandre   First Commit LabI...
70
71
        ]);

3e24b686   Alexandre   Version: 2.4.2.20
72
73
74
75
76
77
        $materiels = TableRegistry::get('Materiels')->find('all')->where(['groupes_metier_id =' => $id]);
        $this->set('materiels', $materiels);       
        
        $utilisateurs = TableRegistry::get('Users')->find('all')->where(['groupes_metier_id =' => $id]);
        $this->set('utilisateurs', $utilisateurs);
        
e9a0cc56   Alexandre   Version: 2.4.6.0
78
79
        $suivis = TableRegistry::get('Suivis')->find('all')->where(['groupes_metier_id =' => $id]);
        $this->set('suivis', $suivis);
3e24b686   Alexandre   Version: 2.4.2.20
80
81
        
        
6c4edfa3   Alexandre   First Commit LabI...
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
        $this->set('groupesMetier', $groupesMetier);
        $this->set('_serialize', ['groupesMetier']);
    }

    /**
     * Add method
     *
     * @return \Cake\Network\Response|void Redirects on successful add, renders view otherwise.
     */
    public function add()
    {
        $groupesMetier = $this->GroupesMetiers->newEntity();
        if ($this->request->is('post')) {
            $groupesMetier = $this->GroupesMetiers->patchEntity($groupesMetier, $this->request->data);
            if ($this->GroupesMetiers->save($groupesMetier)) {
d6960faf   Alexandre   Migration de plus...
97
                $this->Flash->success(__('Le groupe métier a bien été ajouté.'));
d40786f0   Alexandre   Version: 2.4.2.3
98
                return $this->redirect(['action' => 'view', $groupesMetier->id]);
6c4edfa3   Alexandre   First Commit LabI...
99
            } else {
d6960faf   Alexandre   Migration de plus...
100
                $this->Flash->error(__('Le groupe métier n\'a pas pu être ajouté.'));
6c4edfa3   Alexandre   First Commit LabI...
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
            }
        }
        $this->set(compact('groupesMetier'));
        $this->set('_serialize', ['groupesMetier']);
    }

    /**
     * Edit method
     *
     * @param string|null $id Groupes Metier 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)
    {
        $groupesMetier = $this->GroupesMetiers->get($id, [
            'contain' => []
        ]);
        if ($this->request->is(['patch', 'post', 'put'])) {
            $groupesMetier = $this->GroupesMetiers->patchEntity($groupesMetier, $this->request->data);
            if ($this->GroupesMetiers->save($groupesMetier)) {
d6960faf   Alexandre   Migration de plus...
122
                $this->Flash->success(__('Le groupe métier a bien été édité.'));
d40786f0   Alexandre   Version: 2.4.2.3
123
                return $this->redirect(['action' => 'view', $id]);
6c4edfa3   Alexandre   First Commit LabI...
124
            } else {
d6960faf   Alexandre   Migration de plus...
125
                $this->Flash->error(__('Le groupe métier n\'a pas pu être édité.'));
6c4edfa3   Alexandre   First Commit LabI...
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
            }
        }
        $this->set(compact('groupesMetier'));
        $this->set('_serialize', ['groupesMetier']);
    }

    /**
     * Delete method
     *
     * @param string|null $id Groupes Metier 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']);
        $groupesMetier = $this->GroupesMetiers->get($id);
        if ($this->GroupesMetiers->delete($groupesMetier)) {
d6960faf   Alexandre   Migration de plus...
144
            $this->Flash->success(__('Le groupe métier a bien été supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
145
        } else {
d6960faf   Alexandre   Migration de plus...
146
            $this->Flash->error(__('Le groupe métier n\'a pas pu être supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
147
148
149
150
        }
        return $this->redirect(['action' => 'index']);
    }
}