-
Notifications
You must be signed in to change notification settings - Fork 1
/
app_controller.php
160 lines (139 loc) · 3.78 KB
/
app_controller.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php
App::import('Core', 'l10n');
class AppController extends Controller
{
var $helpers = array('Form', 'Html', 'Javascript', 'Menu', 'Time', 'Text', 'Css');
var $components = array('RequestHandler', 'Session', 'CmscoutCore', 'AclExtend', 'Auth', 'DebugKit.Toolbar', 'Cookie', 'Event', 'Notification');
var $menuAdminMode = false;
var $_userDetails = null;
var $enabledPlugins = array();
/**
* @var SessionComponent
*/
var $Session;
/**
* @var AclExtendComponent
*/
var $AclExtend;
/**
* @var AuthComponent
*/
var $Auth;
/**
* @var NotificationComponent
*/
var $Notification;
function beforeFilter()
{
App::import('Sanitize');
$this->Auth->userScope = array('User.active' => 1, 'User.deleted' => 0);
$this->Auth->authError = 'You do not have the required authorisation to access that page.';
$this->Auth->loginError = 'Either your username or password is incorrect, or your account has been disabled or deleted.';
$this->Auth->autoRedirect = false;
$this->Auth->loginAction = '/users/login';
//Check if user is 'remembered'
if($this->Auth->user() === null)
{
$cookie = $this->Cookie->read('Auth.User');
if (!is_null($cookie))
{
if ($this->Auth->login($cookie))
{
// Clear auth message, just in case we use it.
$this->Session->delete('Message.auth');
}
else
{
// Delete invalid Cookie
$this->Cookie->delete('Auth.User');
}
}
}
//Now handle setting user information
$this->_userDetails = $this->Auth->user();
if ($this->_userDetails != null)
{
$this->AclExtend->setUser($this->_userDetails['User']['id']);
$this->set('userInfo', $this->_userDetails);
}
else
{
//Guest user - check permissions
if($this->isAuthorized())
{
$this->Auth->allow($this->action);
}
}
if ($this->RequestHandler->isAjax() !== true)
{
$this->Auth->authorize = 'controller';
}
else
{
Configure::write('debug', 1);
$this->layout = 'ajax';
if(!$this->isAuthorized())
{
$output = array('error' => 1, 'message' => 'You do not have the required authorisation to perform that action.');
$this->view = 'Json';
$this->set('output', $output);
$this->set('json', 'output');
$this->render();
exit;
}
}
ClassRegistry::init('Configuration')->load();
$theme = ClassRegistry::init('Theme')->find('first', array('conditions' => array('site_theme' => '1')));
if($theme != false)
{
$this->view = 'Theme';
$this->theme = $theme['Theme']['theme'];
}
$this->Event->trigger('beforeFilter');
}
function beforeRender()
{
if ($this->RequestHandler->isAjax() !== true)
{
$adminMode = $this->AclExtend->userPermissions('Administration panel', 'admin');
$this->set("menuArray", $this->CmscoutCore->mainMenu($this->menuAdminMode));
$this->set('adminMode', $adminMode);
if ($adminMode)
{
$this->set('adminMenu', $this->CmscoutCore->loadAdminMenu());
}
}
}
public function isAuthorized()
{
$allowed = false;
if(isset($this->params['prefix']) && $this->params['prefix'] == 'admin')
{
if(isset($this->actionMap[$this->action]))
{
$action = $this->action;
}
elseif(isset($this->actionMap[Inflector::underscore($this->action)]))
{
$action = Inflector::underscore($this->action);
}
if(isset($action))
{
if(is_array($this->actionMap[$action]))
{
$allowed = $this->AclExtend->userPermissions('Administration Panel/' . $this->actionMap[$action][0], $this->actionMap[$action][1]);
}
else
{
$allowed = $this->AclExtend->userPermissions('Administration Panel/' . $this->adminNode, $this->actionMap[$action]);
}
}
}
else
{
$allowed = true;
}
return $allowed;
}
}
?>