SousCategoriesController.php 6.59 KB
<?php
namespace App\Controller;

use App\Controller\AppController;
use Cake\ORM\TableRegistry;

/**
 * SousCategories Controller
 *
 * @property \App\Model\Table\SousCategoriesTable $SousCategories
 */
class SousCategoriesController extends AppController
{

    protected function getArticle()
    {
        return "La";
    }

    /**
     * Give authorization for sous categories
     *
     * @param
     *            $user
     * @return boolean
     */
    public function isAuthorized($user)
    {
        $action = $this->getActionPassed();
        /*
         * $configuration = $this->confLabinvent;
         * $role = TableRegistry::get('Users')->find()->where(['username' => $user[$configuration->authentificationType_ldap][0]])->first()['role'];
         * $action = $this->request->getAttribute('params')['action'];
         *
         * // Super-Admin peut accéder à chaque action
         * if($role == 'Super Administrateur') return true;
         *
         * // Administration peut ajouter, supprimer ou modifier une sous categorie
         * if($role == 'Administration' && in_array($action,['add','delete','edit'])) return true;
         */
        
        // if (in_array($action, ['getByCategorie', 'view', 'index'])) {
        if (in_array($action, [
            'getByCategorie'
        ]))
            return true;
        
        /*
         * if($this->userHasRoleAtLeast('Administration Plus')) {
         * if($action != 'delete') return true;
         * }
         *
         * return false;
         */
        return $this->isAuthorizedCommons($user);
    }

    /**
     * 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'
            ]
        ]);
        
        $materiels = TableRegistry::get('Materiels')->find('all')->where([
            'sous_categorie_id =' => $id
        ]);
        $this->set('materiels', $materiels);
        
        $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->getData());
            if ($this->SousCategories->save($sousCategory)) {
                $this->Flash->success(__('La sous-catégorie a bien été ajouté'));
                return $this->redirect([
                    'action' => 'view',
                    $sousCategory->id
                ]);
            } else {
                $this->Flash->error(__('La sous-catégorie n\'as pas pu être ajouté.'));
            }
        }
        $categories = $this->SousCategories->Categories->find('list', [
            'keyField' => 'id',
            'valueField' => 'nom'
        ]);
        
        $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->getData());
            if ($this->SousCategories->save($sousCategory)) {
                $this->Flash->success(__('La sous-catégorie a bien été édité.'));
                return $this->redirect([
                    'action' => 'view',
                    $id
                ]);
            } else {
                $this->Flash->error(__('La sous-catégorie n\'as pas pu être édité.'));
            }
        }
        $categories = $this->SousCategories->Categories->find('list', [
            'keyField' => 'id',
            'valueField' => 'nom'
        ]);
        
        $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)) {
            $this->Flash->success(__('La sous-catégorie a bien été supprimé.'));
        } else {
            $this->Flash->error(__('La sous-catégorie n\'as pas pu être supprimé.'));
        }
        return $this->redirect([
            'action' => 'index'
        ]);
    }

    public function getByCategorie()
    {
        if ($this->request->getData('s_categorie_id') !== null)
            $categorie_id = $this->request->getData('s_categorie_id');
        else
            $categorie_id = $this->request->getData('categorie_id');
        $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';
    }
}