Blame view

src/Controller/SousCategoriesController.php 5.72 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

/**
 * SousCategories Controller
 *
 * @property \App\Model\Table\SousCategoriesTable $SousCategories
 */
class SousCategoriesController extends AppController
{
63a22db6   Alexandre   Version: 2.2.5.0
14
15
16
	protected function getArticle() {
		return "La";
	}
04a6b875   Alexandre   Version: 2.4.2.0
17
18
	
	/**
04a6b875   Alexandre   Version: 2.4.2.0
19
20
	 * Give authorization for sous categories
	 *
f084c88b   Etienne Pallier   Gros bugfix + sim...
21
	 * @param $user
04a6b875   Alexandre   Version: 2.4.2.0
22
23
24
25
	 * @return boolean
	 */
	public function isAuthorized($user)
	{
f084c88b   Etienne Pallier   Gros bugfix + sim...
26
27
	    $action = $this->getActionPassed();
	    /*
aaf7558a   Thibaud Ajas   modifications de ...
28
		$configuration = $this->confLabinvent;
04a6b875   Alexandre   Version: 2.4.2.0
29
		$role = TableRegistry::get('Users')->find()->where(['username' => $user[$configuration->authentificationType_ldap][0]])->first()['role'];
a0fefb3d   Thibaud Ajas   bugfixes suite au...
30
		$action = $this->request->getAttribute('params')['action'];
04a6b875   Alexandre   Version: 2.4.2.0
31
32
33
34
		
		// Super-Admin peut accéder à chaque action
		if($role == 'Super Administrateur') return true;
		
243c3483   Alexis Proust   mise a jour fichier
35
36
		// Administration peut ajouter, supprimer ou modifier une sous categorie
		if($role == 'Administration' && in_array($action,['add','delete','edit'])) return true;
f084c88b   Etienne Pallier   Gros bugfix + sim...
37
		*/
243c3483   Alexis Proust   mise a jour fichier
38
		
f084c88b   Etienne Pallier   Gros bugfix + sim...
39
40
		//if (in_array($action, ['getByCategorie', 'view', 'index'])) {
		if (in_array($action, ['getByCategorie'])) return true;
04a6b875   Alexandre   Version: 2.4.2.0
41
	
f084c88b   Etienne Pallier   Gros bugfix + sim...
42
		/*
164ad0a0   Etienne Pallier   Grosse ameliorati...
43
		if($this->userHasRoleAtLeast('Administration Plus')) {
94c77ea4   Alexandre   Version: 2.4.2.10
44
			if($action != 'delete') return true;
04a6b875   Alexandre   Version: 2.4.2.0
45
46
47
		}
		
		return false;
f084c88b   Etienne Pallier   Gros bugfix + sim...
48
		*/
b7f0fc55   Etienne Pallier   bugfix du bugfix...
49
		return $this->isAuthorizedCommons($user);
04a6b875   Alexandre   Version: 2.4.2.0
50
51
52
	}
	
	
6c4edfa3   Alexandre   First Commit LabI...
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
        $this->paginate = [
            'contain' => ['Categories']
        ];
        $sousCategories = $this->paginate($this->SousCategories);

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

    /**
     * View method
     *
     * @param string|null $id Sous Category id.
     * @return \Cake\Network\Response|null
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
    public function view($id = null)
    {
        $sousCategory = $this->SousCategories->get($id, [
            'contain' => ['Categories']
        ]);

3e24b686   Alexandre   Version: 2.4.2.20
82
83
84
        $materiels = TableRegistry::get('Materiels')->find('all')->where(['sous_categorie_id =' => $id]);
        $this->set('materiels', $materiels);
        
6c4edfa3   Alexandre   First Commit LabI...
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
        $this->set('sousCategory', $sousCategory);
        $this->set('_serialize', ['sousCategory']);
    }

    /**
     * Add method
     *
     * @return \Cake\Network\Response|void Redirects on successful add, renders view otherwise.
     */
    public function add()
    {
        $sousCategory = $this->SousCategories->newEntity();
        if ($this->request->is('post')) {
            $sousCategory = $this->SousCategories->patchEntity($sousCategory, $this->request->data);
            if ($this->SousCategories->save($sousCategory)) {
d6960faf   Alexandre   Migration de plus...
100
                $this->Flash->success(__('La sous-catégorie a bien été ajouté'));
d40786f0   Alexandre   Version: 2.4.2.3
101
                return $this->redirect(['action' => 'view', $sousCategory->id]);
6c4edfa3   Alexandre   First Commit LabI...
102
            } else {
d6960faf   Alexandre   Migration de plus...
103
                $this->Flash->error(__('La sous-catégorie n\'as pas pu être ajouté.'));
6c4edfa3   Alexandre   First Commit LabI...
104
105
            }
        }
19798ef9   Alexandre   Mode_install, maj...
106
107
        $categories = $this->SousCategories->Categories->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
        
6c4edfa3   Alexandre   First Commit LabI...
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
        $this->set(compact('sousCategory', 'categories'));
        $this->set('_serialize', ['sousCategory']);
    }

    /**
     * Edit method
     *
     * @param string|null $id Sous Category 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)
    {
        $sousCategory = $this->SousCategories->get($id, [
            'contain' => []
        ]);
        if ($this->request->is(['patch', 'post', 'put'])) {
            $sousCategory = $this->SousCategories->patchEntity($sousCategory, $this->request->data);
            if ($this->SousCategories->save($sousCategory)) {
d6960faf   Alexandre   Migration de plus...
127
                $this->Flash->success(__('La sous-catégorie a bien été édité.'));
d40786f0   Alexandre   Version: 2.4.2.3
128
                return $this->redirect(['action' => 'view', $id]);
6c4edfa3   Alexandre   First Commit LabI...
129
            } else {
d6960faf   Alexandre   Migration de plus...
130
                $this->Flash->error(__('La sous-catégorie n\'as pas pu être édité.'));
6c4edfa3   Alexandre   First Commit LabI...
131
132
            }
        }
19798ef9   Alexandre   Mode_install, maj...
133
134
        $categories = $this->SousCategories->Categories->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
        
6c4edfa3   Alexandre   First Commit LabI...
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
        $this->set(compact('sousCategory', 'categories'));
        $this->set('_serialize', ['sousCategory']);
    }

    /**
     * Delete method
     *
     * @param string|null $id Sous Category 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']);
        $sousCategory = $this->SousCategories->get($id);
        if ($this->SousCategories->delete($sousCategory)) {
d6960faf   Alexandre   Migration de plus...
151
            $this->Flash->success(__('La sous-catégorie a bien été supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
152
        } else {
d6960faf   Alexandre   Migration de plus...
153
            $this->Flash->error(__('La sous-catégorie n\'as pas pu être supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
154
155
156
        }
        return $this->redirect(['action' => 'index']);
    }
758a84af   Alexandre   Version: 2.2.4.0
157
158
159
160
    
    
    
    public function getByCategorie() {
a0fefb3d   Thibaud Ajas   bugfixes suite au...
161
162
        if ($this->request->getData('s_categorie_id') !== null)
    		$categorie_id = $this->request->getData('s_categorie_id');
758a84af   Alexandre   Version: 2.2.4.0
163
    		else
a0fefb3d   Thibaud Ajas   bugfixes suite au...
164
    			$categorie_id = $this->request->getData('categorie_id');
758a84af   Alexandre   Version: 2.2.4.0
165
166
167
168
169
170
171
172
173
174
    			$souscategories = $this->SousCategories->find('list', [
    					'conditions' => ['SousCategories.categorie_id' => $categorie_id],
    					'order' => ['SousCategories.nom'],
    					'recursive' => -1,
    					'keyField' => 'id', 'valueField' => 'nom'
    			]);
    			$this->set('sousCategories',$souscategories);
    			$this->viewBuilder()->layout = 'ajax';
    }
    
6c4edfa3   Alexandre   First Commit LabI...
175
}