Blame view

src/Controller/PagesController.php 3.63 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 *
 * Licensed under The MIT License
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 * @link      http://cakephp.org CakePHP(tm) Project
 * @since     0.2.9
 * @license   http://www.opensource.org/licenses/mit-license.php MIT License
 */
namespace App\Controller;

use Cake\Core\Configure;
use Cake\Network\Exception\NotFoundException;
use Cake\View\Exception\MissingTemplateException;
db93d5c9   Alexandre   Version: 2.4.1.0
20
use Cake\ORM\TableRegistry;
6c4edfa3   Alexandre   First Commit LabI...
21
22
23
24
25
26
27
28
29
30

/**
 * Static content controller
 *
 * This controller will render views from Template/Pages/
 *
 * @link http://book.cakephp.org/3.0/en/controllers/pages-controller.html
 */
class PagesController extends AppController
{
63c3cb16   epallier   Nombreux petits b...
31

164ad0a0   Etienne Pallier   Grosse ameliorati...
32
    /**
164ad0a0   Etienne Pallier   Grosse ameliorati...
33
     *
63c3cb16   epallier   Nombreux petits b...
34
35
36
     * @param
     *            $user
     * @return boolean Give authorization for materiels
164ad0a0   Etienne Pallier   Grosse ameliorati...
37
38
     */
    /*
63c3cb16   epallier   Nombreux petits b...
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
     * // (EP) TODO: ameliorer ca avec des variables globales IS_VALIDATED, IS_ADMIN, ...
     * public function isAuthorized($user) {
     * $path = func_get_args();
     * if($path[0] === null) {
     * $path[0] = '';
     * }
     * $page = $subpage = null;
     * if (!empty($path[0])) {
     * $page = $path[0];
     * }
     * if (!empty($path[1])) {
     * $subpage = $path[1];
     * }
     * if ($page == 'tools') {
     * // Autoriser seulement à partir du role ADMIN et +
     * if ($this->userHasRoleAtLeast('Utilisateur')) {
     * return false;
     * }
     * }
     * return true;
     * }
     */
164ad0a0   Etienne Pallier   Grosse ameliorati...
61
    
6c4edfa3   Alexandre   First Commit LabI...
62
63
64
65
66
    /**
     * Displays a view
     *
     * @return void|\Cake\Network\Response
     * @throws \Cake\Network\Exception\NotFoundException When the view file could not
63c3cb16   epallier   Nombreux petits b...
67
     *         be found or \Cake\View\Exception\MissingTemplateException in debug mode.
6c4edfa3   Alexandre   First Commit LabI...
68
69
70
     */
    public function display()
    {
164ad0a0   Etienne Pallier   Grosse ameliorati...
71
        $configuration = $this->confLabinvent;
db93d5c9   Alexandre   Version: 2.4.1.0
72
73
        
        $path = func_get_args();
63c3cb16   epallier   Nombreux petits b...
74
75
        if ($path[0] === null) {
            $path[0] = '';
1f7e0355   Alexandre   Version: 2.4.2.4
76
        }
db93d5c9   Alexandre   Version: 2.4.1.0
77
78
        $this->myDebug($path);
        
f084c88b   Etienne Pallier   Gros bugfix + sim...
79
        // @todo : faire plus proprement, dans isAuthorized()
63c3cb16   epallier   Nombreux petits b...
80
81
82
83
84
85
86
87
88
        // Si l'utilisateur n'est pas connecté, on le redirige vers la page login.ctp
        // sauf si l'action demandée est 'about' ou si le mode install est activé
        if (! ($this->LdapAuth->user($configuration->authentificationType_ldap)[0]) && $path[0] != 'about' && ! ($configuration->mode_install)) {
            return $this->redirect([
                'controller' => 'users',
                'action' => 'login'
            ]);
        }
        
6c4edfa3   Alexandre   First Commit LabI...
89
        $count = count($path);
63c3cb16   epallier   Nombreux petits b...
90
        if (! $count) {
6c4edfa3   Alexandre   First Commit LabI...
91
92
93
            return $this->redirect('/');
        }
        $page = $subpage = null;
63c3cb16   epallier   Nombreux petits b...
94
95
        
        if (! empty($path[0])) {
6c4edfa3   Alexandre   First Commit LabI...
96
97
            $page = $path[0];
        }
63c3cb16   epallier   Nombreux petits b...
98
        if (! empty($path[1])) {
6c4edfa3   Alexandre   First Commit LabI...
99
100
            $subpage = $path[1];
        }
63c3cb16   epallier   Nombreux petits b...
101
        
f084c88b   Etienne Pallier   Gros bugfix + sim...
102
        // @todo : faire plus proprement, avec isAuthorized()
164ad0a0   Etienne Pallier   Grosse ameliorati...
103
104
        if ($page == 'tools') {
            // Autoriser seulement à partir du role ADMIN et +
63c3cb16   epallier   Nombreux petits b...
105
            // if (! $this->userHasRoleAtLeast('Administration')) {
f084c88b   Etienne Pallier   Gros bugfix + sim...
106
            if (! $this->USER_IS_ADMIN_AT_LEAST()) {
164ad0a0   Etienne Pallier   Grosse ameliorati...
107
108
109
110
                return $this->redirect('/');
            }
        }
        
6c4edfa3   Alexandre   First Commit LabI...
111
        $this->set(compact('page', 'subpage'));
63c3cb16   epallier   Nombreux petits b...
112
        
6c4edfa3   Alexandre   First Commit LabI...
113
114
115
116
117
118
119
120
121
        try {
            $this->render(implode('/', $path));
        } catch (MissingTemplateException $e) {
            if (Configure::read('debug')) {
                throw $e;
            }
            throw new NotFoundException();
        }
    }
6c4edfa3   Alexandre   First Commit LabI...
122
}