SousCategoriesController.php 8.64 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
{
    // Genre
    public $is_masculin = false;
    
    //@deprecated
    public function getArticle()
    {
        return "La";
    }

    // Surcharge pour corriger bug cakephp qui renvoie 'Souscategories' au lieu de 'SousCategories' !!
    //@Override
    public function getName() {
        //return strtolower($this->name);
        //return strtolower($this->getName());
        //return 'SousCategories';
        $controller_name = substr(__CLASS__,strlen('App\\Controller\\'));
        return substr($controller_name,0,strpos($controller_name,'Controller'));
    }
    
    // Nom pluriel affichable pour cette entité
    //@Override
    public function getNiceNamePluralLowerCase($alias_controller_name=null) { return 'sous-catégories'; }
    
    /*
     * @Override
     *
     * Initialisation des autorisations pour les actions spécifiques à ce controleur
     *
     */
    protected function setAuthorizations() {
        // Action 'getByCategorie'
        $this->setAuthorizationsForAction('getByCategorie', 0);
    }
    
    
    /**
     * Give authorization for sous categories
     *
     * @param
     *            $user
     * @return boolean
     */
    /*
    //public function isAuthorized($user)
    public function isAuthorized($user,
        $action = null, $id=null, $role=null, $userCname=null) {
        $action = $this->getActionPassed();
        /S
         * $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;
         S/
        
        // if (in_array($action, ['getByCategorie', 'view', 'index'])) {
        if (in_array($action, [
            'getByCategorie'
        ]))
            return true;
        
        /S
         * if($this->userHasRoleAtLeast('Administration Plus')) {
         * if($action != 'delete') return true;
         * }
         *
         * return false;
         S/
        return $this->isAuthorizedCommons($user);
    }
    */

    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
        $this->index_generic(
            'sous-catégories',
            [
                //'nom'=>['nice_name'=>'Nom'],
                'nom'=>[],
                'categorie_id'=>[
                    //'nice_name'=>'Catégorie', 
                    'contained_entity_name'=>'category', 
                    'controller_name'=>'Categories'],
            ],
            ['Categories'],
            true, true,
            'nom',
            [],
            [
                'nom' => 'nom',
                'categorie_id'=>'Categories.nom'
            ] 
        );
    
        /*
        $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) {
        $associated_entity_types = [
            'Materiels'
        ];
        return $this->view_generic($id, $associated_entity_types);
        //return parent::view($id, $associated_entity_types);
        //return $this->view_generic($id, $associated_entity_types, 'Categories');
        /*
        $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($parent_id=null)
    {
        $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->delete_generic($id, 'categories', 'categorie_id');
        
        /*
        $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';
    }
}