-
Notifications
You must be signed in to change notification settings - Fork 1
/
admin_permission.php
343 lines (315 loc) · 13.5 KB
/
admin_permission.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
<!DOCTYPE html>
<!--
This is a starter template page. Use this page to start your new project from
scratch. This page gets rid of all links and provides the needed markup only.
-->
<?php
require_once(__DIR__."/src/config.php");
require_once(__DIR__."/src/lib/usercake/init.php");
if (!UCUser::CanUserAccessUrl($_SERVER['PHP_SELF'])) { die();}
$user = UCUser::getCurrentUser();
$errors = array();
$successes = array();
$permissionId = $_GET['id'];
//Check if selected permission level exists
if(!UCPermission::Exists($permissionId)){
header("Location: admin_permissions.php"); die();
}
$permissionDetails = new UCPermission($permissionId); //Fetch information specific to permission level
//Forms posted
if(!empty($_POST))
{
//Delete selected permission level
if(!empty($_POST['delete']))
{
$deletions = $_POST['delete'];
if ($deletion_count = UCPermission::PermissionsDelete($deletions, $errors)){
$successes[] = lang("PERMISSION_DELETIONS_SUCCESSFUL", array($deletion_count));
}
else {
$errors[] = lang("SQL_ERROR");
}
}
else
{
//Update permission level name
if($permissionDetails->Name() != $_POST['name'])
{
$permission = trim($_POST['name']);
//Validate new name
if (UCPermission::NameExists($permission)){
$errors[] = lang("ACCOUNT_PERMISSIONNAME_IN_USE", array($permission));
}
elseif (minMaxRange(1, 50, $permission)){
$errors[] = lang("ACCOUNT_PERMISSION_CHAR_LIMIT", array(1, 50));
}
else {
if ($permissionDetails->Update($permission)){
$successes[] = lang("PERMISSION_NAME_UPDATE", array($permission));
}
else {
$errors[] = lang("SQL_ERROR");
}
}
}
//Remove access to users
if(!empty($_POST['removePermission'])){
$remove = $_POST['removePermission'];
if ($deletion_count = UCPermission::RemoveUserPermission($remove, $permissionId)) {
$successes[] = lang("PERMISSION_REMOVE_USERS", array($deletion_count));
}
else {
$errors[] = lang("SQL_ERROR");
}
}
//Add access to users
if(!empty($_POST['addPermission'])){
$add = $_POST['addPermission'];
if ($addition_count = UCPermission::AddUserPermission($add, $permissionId)) {
$successes[] = lang("PERMISSION_ADD_USERS", array($addition_count));
}
else {
$errors[] = lang("SQL_ERROR");
}
}
//Remove access to pages
if(!empty($_POST['removePage'])){
$remove = $_POST['removePage'];
if ($deletion_count = UCPermission::RemovePagePermission($remove, $permissionId)) {
$successes[] = lang("PERMISSION_REMOVE_PAGES", array($deletion_count));
}
else {
$errors[] = lang("SQL_ERROR");
}
}
//Add access to pages
if(!empty($_POST['addPage'])){
$add = $_POST['addPage'];
if ($addition_count = UCPermission::AddPagePermission($add, $permissionId)){
$successes[] = lang("PERMISSION_ADD_PAGES", array($addition_count));
}
else {
$errors[] = lang("SQL_ERROR");
}
}
$permissionDetails = new UCPermission($permissionId);
}
}
$pagePermissions = UCPage::GetByPermission($permissionId); //Retrieve list of accessible pages
$permissionUsers = UCUser::GetByPermission($permissionId); //Retrieve list of users with membership
$userData = UCUser::GetUsers(); //Fetch all users
$pageData = UCPage::GetPages(); //Fetch all pages
?>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title><?php echo $user_settings->WebsiteName() ?></title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.6 -->
<link rel="stylesheet" href="plugins/bootstrap/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="plugins/font-awesome/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="plugins/ionicons/css/ionicons.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="dist/css/AdminLTE.min.css">
<!-- AdminLTE Skins. We have chosen the skin-blue for this starter
page. However, you can choose any other skin. Make sure you
apply the skin class to the body tag so the changes take effect.
-->
<link rel="stylesheet" href="dist/css/skins/skin-blue.min.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<!--
BODY TAG OPTIONS:
=================
Apply one or more of the following classes to get the
desired effect
|---------------------------------------------------------|
| SKINS | skin-blue |
| | skin-black |
| | skin-purple |
| | skin-yellow |
| | skin-red |
| | skin-green |
|---------------------------------------------------------|
|LAYOUT OPTIONS | fixed |
| | layout-boxed |
| | layout-top-nav |
| | sidebar-collapse |
| | sidebar-mini |
|---------------------------------------------------------|
-->
<body class="hold-transition skin-blue sidebar-mini">
<div class="wrapper">
<?php include(__DIR__."/top-nav.php"); ?>
<?php include(__DIR__."/left-nav.php"); ?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<div id='content'>
<div id='main'>
<!-- Horizontal Form -->
<div class="box box-info">
<div class="box-header with-border">
<h3 class="box-title">Permission Administration</h3>
</div>
<!-- /.box-header -->
<!-- form start -->
<form name='adminPermission' action="<?php echo($_SERVER['PHP_SELF'] . "?id=" . $permissionId) ?>" method="post" class="form-horizontal">
<div class="box-body">
<?php
foreach($errors as $error) { ?>
<div class="alert alert-danger alert-dismissible">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<?php echo $error ?>
</div>
<?php } ?>
<?php
foreach($successes as $success) { ?>
<div class="alert alert-success alert-dismissible">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<?php echo $success ?>
</div>
<?php } ?>
<div class="form-group">
<label for="permission_id" class="col-sm-2 control-label">Permission ID</label>
<div class="col-sm-10">
<input type="text" id="permission_id" value='<?php echo $permissionDetails->Id() ?>' class="form-control" disabled>
</div>
</div>
<div class="form-group">
<label for="permission_name" class="col-sm-2 control-label">Permission Name</label>
<div class="col-sm-10">
<input type="text" name='name' id="permission_name" value='<?php echo $permissionDetails->Name() ?>' class="form-control" readonly>
</div>
</div>
<div class="form-group">
<label for="permission_remove" class="col-sm-2 control-label">Delete</label>
<div class="col-sm-10">
<div class="checkbox">
<input type='checkbox' name='delete["<?php echo $permissionDetails->Id() ?>"]' id='delete["<?php echo $permissionDetails->Id() ?>"]' value='<?php echo $permissionDetails->Id() ?>'>
</div>
</div>
</div>
<div class="form-group">
<label for="remove_membership" class="col-sm-2 control-label">Remove Membership</label>
<div class="col-sm-10">
<div class="checkbox">
<?php
//List users with permission level
foreach ($userData as $v1) {
if(isset($permissionUsers[$v1->Id()])){
echo "<br><input type='checkbox' name='removePermission[".$v1->Id()."]' id='removePermission[".$v1->Id()."]' value='".$v1->Id()."'> ".$v1->DisplayName();
}
}
?>
</div>
</div>
</div>
<div class="form-group">
<label for="add_membership" class="col-sm-2 control-label">Add Membership</label>
<div class="col-sm-10">
<div class="checkbox">
<?php
//List users without permission level
foreach ($userData as $v1) {
if(!isset($permissionUsers[$v1->Id()])){
echo "<br><input type='checkbox' name='addPermission[".$v1->Id()."]' id='addPermission[".$v1->Id()."]' value='".$v1->Id()."'> ".$v1->DisplayName();
}
}
?>
</div>
</div>
</div>
<div class="form-group">
<label for="public_access" class="col-sm-2 control-label">Public Access</label>
<div class="col-sm-10">
<?php
//List public pages
foreach ($pageData as $v1) {
if($v1->IsPrivate() != 1){
echo "<br>".$v1->Name();
}
}
?>
</div>
</div>
<div class="form-group">
<label for="remove_access" class="col-sm-2 control-label">Remove Access</label>
<div class="col-sm-10">
<div class="checkbox">
<?php
//List pages accessible to permission level
foreach ($pageData as $v1) {
if(isset($pagePermissions[$v1->Id()]) AND $v1->IsPrivate() == 1){
echo "<br><input type='checkbox' name='removePage[".$v1->Id()."]' id='removePage[".$v1->Id()."]' value='".$v1->Id()."'> ".$v1->Name();
}
}
?>
</div>
</div>
</div>
<div class="form-group">
<label for="add_access" class="col-sm-2 control-label">Add Access</label>
<div class="col-sm-10">
<div class="checkbox">
<?php
//List pages inaccessible to permission level
foreach ($pageData as $v1) {
if(!isset($pagePermissions[$v1->Id()]) AND $v1->IsPrivate() == 1){
echo "<br><input type='checkbox' name='addPage[".$v1->Id()."]' id='addPage[".$v1->Id()."]' value='".$v1->Id()."'> ".$v1->Name();
}
}
?>
</div>
</div>
</div>
</div>
<!-- /.box-body -->
<div class="box-footer">
<button type="submit" class="btn btn-info pull-right">Submit</button>
</div>
<!-- /.box-footer -->
</form>
</div>
</div>
</div>
<!-- Breadcrumb -->
<!-- <ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Level</a></li>
<li class="active">Here</li>
</ol>-->
</section>
<!-- Main content -->
<section class="content">
<!-- Your Page Content Here -->
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<?php include(__DIR__."/footer.php"); ?>
<?php include(__DIR__."/right-nav.php"); ?>
</div>
<!-- ./wrapper -->
<!-- REQUIRED JS SCRIPTS -->
<!-- jQuery 2.2.3 -->
<script src="plugins/jQuery/jquery-2.2.3.min.js"></script>
<!-- Bootstrap 3.3.6 -->
<script src="plugins/bootstrap/js/bootstrap.min.js"></script>
<!-- AdminLTE App -->
<script src="dist/js/app.min.js"></script>
<!-- Optionally, you can add Slimscroll and FastClick plugins.
Both of these plugins are recommended to enhance the
user experience. Slimscroll is required when using the
fixed layout. -->
</body>
</html>