-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRestrictNavigationPlugin.inc.php
213 lines (174 loc) · 7.17 KB
/
RestrictNavigationPlugin.inc.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<?php
/**
* @file plugins/generic/restrictNavigation/RestrictNavigationPlugin.inc.php
*
* Copyright Lara Marziali
* Distributed under the GNU GPL v3. For full terms see the file LICENSE.
*
* @class RestrictNavigationPlugin
* @ingroup plugins_generic_RestrictNavigation
*
* @brief Restric the Navigation of the backend by user roles.
*/
import('lib.pkp.classes.template.PKPTemplateManager');
import('lib.pkp.classes.plugins.GenericPlugin');
class RestrictNavigationPlugin extends GenericPlugin {
/**
* @copydoc GenericPlugin::register()
*/
public function register($category, $path, $mainContextId = NULL) {
$success = parent::register($category, $path, $mainContextId);
if ($success && $this->getEnabled($mainContextId)) {
HookRegistry::register('TemplateManager::setupBackendPage', [$this, 'restrictBackendPage']);
}
return $success;
}
/**
* Settings: add a getActions() method to your plugin to add a settings action in the plugin list.
*
*
*/
public function getActions($request, $actionArgs) {
// Get the existing actions
$actions = parent::getActions($request, $actionArgs);
// Only add the settings action when the plugin is enabled
if (!$this->getEnabled()) {
return $actions;
}
// Create a LinkAction that will call the plugin's
// `manage` method with the `settings` verb.
$router = $request->getRouter();
import('lib.pkp.classes.linkAction.request.AjaxModal');
$linkAction = new LinkAction(
'settings',
new AjaxModal(
$router->url(
$request,
null,
null,
'manage',
null,
array(
'verb' => 'settings',
'plugin' => $this->getName(),
'category' => 'generic'
)
),
$this->getDisplayName()
),
__('manager.plugins.settings'),
null
);
// Add the LinkAction to the existing actions.
// Make it the first action to be consistent with
// other plugins.
array_unshift($actions, $linkAction);
return $actions;
}
/**
* Settings: add a manage() method to load a settings form when the LinkAction is clicked.
*/
public function manage($args, $request) {
switch ($request->getUserVar('verb')) {
// Return a JSON response containing the
// settings form
case 'settings':
// Load the custom form
$this->import('RestrictNavigationSettingsForm');
$form = new RestrictNavigationSettingsForm($this);
// Fetch the form the first time it loads, before
// the user has tried to save it
if (!$request->getUserVar('save')) {
$form->initData();
return new JSONMessage(true, $form->fetch($request));
}
// Validate and execute the form
$form->readInputData();
if ($form->validate()) {
$form->execute();
return new JSONMessage(true);
}
}
return parent::manage($args, $request);
}
/**
* Main function
*
*/
public function restrictBackendPage($hookName, $args)
{
/**
* @copydoc TemplateManager::setupBackendPage()
*
*/
$request = Application::get()->getRequest();
$context = $request->getContext(); #https://docs.pkp.sfu.ca/dev/documentation/en/architecture
$templateManager = TemplateManager::getManager($request);
$router = $request->getRouter();
$handler = $router->getHandler();
$userRoles = (array) $handler->getAuthorizedContextObject(ASSOC_TYPE_USER_ROLES); #from https://github.com/pkp/ojs/blob/main/classes/template/TemplateManager.php
$menu = (array) $templateManager->getState('menu'); #https://github.com/pkp/ops/blob/7a4563933cb965ddad2e2ac2cfab4da9f20ac7a2/pages/authorDashboard/AuthorDashboardHandler.php
$generalSettings = $this->getSetting($context->getId(), 'generalSettings'); #if generalSettings is checked in the Settings form
$tools = $this->getSetting($context->getId(), 'tools'); #if tools is checked in the Settings form
$workflow = $this->getSetting($context->getId(), 'workflow'); #if workflow is checked in the Settings form
$url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']; #does it slow down the application?
if ($context){
if ($tools){
if (!$this->isUserAdmin($userRoles)) {
unset($menu['tools']);
if (strpos($url,'tools') !== false) {
$request->redirect(null, null, 'settings', 'announcements'); #redirect to announcements settings
}
}
}
if ($workflow){
if (!$this->isUserAdmin($userRoles)) {
unset($menu['settings']['submenu']['workflow']);
if (strpos($url,'workflow') !== false) {
$request->redirect(null, null, 'settings', 'announcements'); #redirect to announcements settings
}
}
}
if ($generalSettings){
if (!$this->isUserAdmin($userRoles)) {
unset($menu['settings']['submenu']['context']);
unset($menu['settings']['submenu']['website']);
unset($menu['settings']['submenu']['distribution']);
unset($menu['settings']['submenu']['access']);
if (strpos($url,'context') !== false || strpos($url,'website') !== false || strpos($url,'distribution') !== false || strpos($url,'access') !== false) {
$request->redirect(null, null, 'settings', 'announcements'); #redirect to announcements settings
}
}
}
$templateManager->setState(['menu' => $menu]);
}
}
public function isUserAdmin($userRoles){
if (in_array(ROLE_ID_SITE_ADMIN, $userRoles)) {
return true;
}
return false;
}
/**
* Provide a name for this plugin
*
* The name will appear in the plugins list where editors can
* enable and disable plugins.
*
* @return string
*/
public function getDisplayName() {
return __('plugins.generic.restrictNavigation.displayName');
}
/**
* Provide a description for this plugin
*
* The description will appear in the plugins list where editors can
* enable and disable plugins.
*
* @return string
*/
public function getDescription() {
return __('plugins.generic.restrictNavigation.description');
}
}