SiteMap.inc
22.2 KB
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
<?php
require_once("$default->fileSystemRoot/lib/security/permission.inc");
// define access constants
define("None", 1);
define("Guest", 2);
define("User", 3);
define("UnitAdmin", 4);
define("SysAdmin", 5);
/**
* $Id$
*
* Maintains (page, access) access map, as well as (section, page) map.
*
* @version $Revision$
* @author Michael Joseph <michael@jamwarehouse.com>, Jam Warehouse (Pty) Ltd, South Africa
* @package lib.session
*/
class SiteMap {
/**
* The underlying site map storage array
*/
var $aSiteMap;
/**
* Whether to use the database to store the sitemap or not
*/
var $bUseDB;
/**
* Constructs a new SiteMap
* If the db is not being used, the array is initialised.
*
* @param boolean whether to use the database to store the sitemap or not
*/
function SiteMap($bUseDB) {
$this->bUseDB = $bUseDB;
if (!$this->bUseDB) {
$this->aSiteMap = array();
}
}
/**
* Sets the database flag
*
* @param boolean whether to use the database to store the sitemap or not
*/
function setUseDB($bUseDB) {
$this->bUseDB = $bUseDB;
}
/**
* Returns the database flag
*/
function getUseDB() {
return $this->bUseDB;
}
/**
* Adds a site page mapping entry.
*
* @param string the controller action
* @param string the corresponding page for this action
* @param string the section this page falls under
* @param int the minimum access needed to access this page
* @param string description of the page for link presentation
* @param boolean whether this action is enabled or not
*/
function addPage($sAction, $sPage, $sSectionName, $sRequiredAccess, $sLinkText, $bEnabled = true) {
if (!$this->bUseDB) {
$this->aSiteMap[$sSectionName][$sRequiredAccess][$sAction] = array ("page" => $sPage,
"description" => $sLinkText,
"enabled" => (($bEnabled) ? "1" : "0"),
"default" => "0");
}
}
/**
* Adds a site page mapping entry- the default page for the section.
*
* @param string the controller action
* @param string the corresponding page for this action
* @param string the section this page falls under
* @param int the minimum access needed to access this page
* @param string description of the page for link presentation
*/
function addDefaultPage($sAction, $sPage, $sSectionName, $sRequiredAccess, $sLinkText, $bEnabled = true) {
if (!$this->bUseDB) {
$this->aSiteMap[$sSectionName][$sRequiredAccess][$sAction] = array ("page" => $sPage,
"description" => $sLinkText,
"enabled" => (($bEnabled) ? "1" : "0"),
"default" => "1");
}
}
/**
* Returns true if the user has the necessary rights to access
* a sitemap entry
*
* @param int the required access (defined above class)
* @return boolean true if the user has the access, else false.
*/
function hasPermission($requiredAccess) {
global $default;
// if no access control is required
if ($requiredAccess == None) {
return true;
} else {
// if you're a system administrator, you've got access to everything
if (Permission::userIsSystemAdministrator()) {
return true;
} else {
if (Permission::userIsUnitAdministrator()) {
// if you're a unit administrator, then you have access to everything
// including and less than UA
return ($requiredAccess <= UnitAdmin) ? true : false;
} else if (Permission::userIsGuest()) {
return ($requiredAccess == Guest) ? true : false;
} else {
// you're a "normal" unit user
return ($requiredAccess <= User) ? true : false;
}
}
}
// shouldn't ever get here
$default->log->error("SiteMap::hasPermission THERE IS A HOLE IN THE PAGE LEVEL ACCESS SECURITY MODEL!!!");
$default->log->error("SiteMap::hasPermission requiredAccess=$requiredAccess; userID=" . $_SESSION["userID"]);
// return false anyway
return false;
}
/**
* Returns controller links for a section.
* Checks whether to use the db or not and calls the appropriate method
*
* @param string the section to return links for
*/
function getSectionLinks($sSectionName) {
if ($this->bUseDB) {
return $this->getSectionLinksUsingDB($sSectionName);
} else {
return $this->getSectionLinksUsingArray($sSectionName);
}
}
/**
* Returns controller links for a section (uses the db)
*
* @param string the section to return links for
*/
function getSectionLinksUsingDB($sSectionName) {
global $default, $lang_err_database, $fFolderID;
$sql = $default->db;
// lookup sectionID
$sectionID = lookupID($default->owl_site_sections_table, "name", $sSectionName);
if ($sectionID) {
// initialise result array
$results = array("descriptions" => array(), "links" => array());
if ($sql->query("SELECT link_text, action, access_id FROM $default->owl_sitemap_table WHERE section_id=$sectionID AND is_enabled=1")) {
while ($sql->next_record()) {
// check permissions
if ($this->hasPermission($sql->f("access_id"))) {
// add this array to the resultset array if there is link text
if (strlen($sql->f("link_text")) > 0) {
$results["descriptions"][] = $sql->f("link_text");
// if fFolderID is set and fFolderID is in the page string
// append folderID to the controller link
$results["links"][] = isset($fFolderID) ? generateControllerLink($sql->f("action"), "fFolderID=$fFolderID") : generateControllerLink($sql->f("action"), "");
}
}
}
// now check if we have anything in the results array before returning it
if (count($results) > 0) {
return $results;
} else {
return false;
}
} else {
$_SESSION["errorMessage"] = $lang_err_database;
return false;
}
} else {
$_SESSION["errorMessage"] = "No such section name ($sSectionName) in the sitemap";
return false;
}
}
/**
* Returns controller links for a section (uses the array)
*
* @param string the section to return links for
*/
function getSectionLinksUsingArray($sSectionName) {
global $default, $fFolderID;
// check if the section exists
if (is_array($this->aSiteMap[$sSectionName])) {
// initialise result array
$results = array("descriptions" => array(), "links" => array());
// need to loop through all (access, page) arrays in this section
foreach ($this->aSiteMap[$sSectionName] as $requiredAccess => $pages) {
if ($this->hasPermission($requiredAccess)) {
foreach ($pages as $action => $pageDetail) {
// add this array to the resultset array if there is link text and it is enabled
if ((strlen($pages[$action]["description"]) > 0) &&
($pages[$action]["enabled"])) {
$results["descriptions"][] = $pages[$action]["description"];
$results["links"][] = isset($fFolderID) ? generateControllerLink($action, "fFolderID=$fFolderID") : generateControllerLink($action, "");
}
}
}
}
// now check if we have anything in the results array before returning it
if (count($results) > 0) {
return $results;
} else {
return false;
}
} else {
$_SESSION["errorMessage"] = "No such section name ($sSectionName) in the sitemap";
return false;
}
}
/**
* Returns the page mapped to the (action, groupName) pair.
* Checks whether to use the db or not and calls the appropriate method
*
* @param string the action to lookup pages for
* @return string the page to redirect to, or false if the user doesn't have access to the page
*/
function getPage($action) {
if ($this->bUseDB) {
return $this->getPageUsingDB($action);
} else {
return $this->getPageUsingArray($action);
}
}
/**
* Returns the page mapped to the (action, groupName) pair. (uses the db)
*
* @param string the action to lookup pages for
* @return string the page to redirect to, or false if the user doesn't have access to the page
*/
function getPageUsingDB($action) {
global $default, $lang_err_database;
$sql = $default->db;
// lookup the page and access_id from the sitemap
if ($sql->query("SELECT page, access_id FROM $default->owl_sitemap_table WHERE action='$action'")) {
if ($sql->next_record()) {
// check permissions
if ($this->hasPermission($sql->f("access_id"))) {
// return the page
return $sql->f("page");
}
} else {
$_SESSION["errorMessage"] = $lang_err_database;
return false;
}
} else {
$_SESSION["errorMessage"] = $lang_err_database;
return false;
}
}
/**
* Returns the page mapped to the (action, groupName) pair. (uses the array)
*
* @param string the action to lookup pages for
* @return string the page to redirect to, or false if the user doesn't have access to the page
*/
function getPageUsingArray($action) {
global $default;
$default->log->info("SiteMap::getPage: checking ($action, " . $_SESSION["userID"] . ")");
$groupIDs = array();
// for each section
foreach ($this->aSiteMap as $section => $valArr) {
$default->log->debug("Sitemap::getPage section=$section");
// for each group, page array combination
foreach ($valArr as $requiredAccess => $pageArr) {
// now loop through pages until we find the right one
foreach ($pageArr as $ackshin => $page) {
if ($ackshin == $action) {
$default->log->debug("Sitemap::getPage current requiredAccess=$requiredAccess, action=$ackshin");
if ($this->hasPermission($requiredAccess)) {
return $page["page"];
}
}
}
}
}
// if the function hasn't returned already then the current
// user does not have access to the action
$default->log->info("Sitemap::getPage: access denied for ($action, " . $_SESSION["userID"] . ")");
return false;
}
/**
* Returns the section name of the supplied page
* Checks whether to use the db or not and calls the appropriate method
*
* @param string the page to lookup the section for
*/
function getSectionName($sRequiredPage) {
if ($this->bUseDB) {
return $this->getSectionNameUsingDB($sRequiredPage);
} else {
return $this->getSectionNameUsingArray($sRequiredPage);
}
}
/**
* Returns the section name of the supplied page (uses the db)
*
* @param string the page to lookup the section for
*/
function getSectionNameUsingDB($sRequiredPage) {
global $default, $lang_err_database;
$sql = $default->db;
// lookup the page and access_id from the sitemap
if ($sql->query("SELECT SSL.name FROM $default->owl_sitemap_table AS S
INNER JOIN $default->owl_site_sections_table AS SSL ON S.section_id=SSL.id
WHERE S.page='$sRequiredPage'")) {
if ($sql->next_record()) {
// return the section name
return $sql->f("name");
} else {
$_SESSION["errorMessage"] = $lang_err_database;
return false;
}
} else {
$_SESSION["errorMessage"] = $lang_err_database;
return false;
}
}
/**
* Returns the section name of the supplied page (uses the array)
*
* @param string the page to lookup the section for
*/
function getSectionNameUsingArray($sRequiredPage) {
global $default;
// for each section
foreach ($this->aSiteMap as $section => $valArr) {
// for each access, page array combination
foreach ($valArr as $requiredAccess => $pageArr) {
// now loop through pages until we find the right one
foreach ($pageArr as $action => $page) {
if ($sRequiredPage == $page["page"]) {
return $section;
}
}
}
}
}
/**
* Returns the default action for the supplied section
* Checks whether to use the db or not and calls the appropriate method
*
* @param string the section name to return the default action for
* @return string the controller action for the default page for this section
*/
function getDefaultAction($sSectionName) {
if ($this->bUseDB) {
return $this->getDefaultActionUsingDB($sSectionName);
} else {
return $this->getDefaultActionUsingArray($sSectionName);
}
}
/**
* Returns the default action for the supplied section (uses the db)
*
* @param string the section name to return the default action for
* @return string the controller action for the default page for this section
*/
function getDefaultActionUsingDB($sSectionName) {
global $default, $lang_err_database;
$sql = $default->db;
// lookup sectionID
$sectionID = lookupID($default->owl_site_sections_table, "name", $sSectionName);
if ($sectionID) {
// lookup the default action for the specified section
if ($sql->query("SELECT action FROM $default->owl_sitemap_table
WHERE section_id=$sectionID
AND is_default=1 AND is_enabled=1")) {
if ($sql->next_record()) {
// return the section name
return $sql->f("action");
} else {
$_SESSION["errorMessage"] = $lang_err_database;
return false;
}
} else {
$_SESSION["errorMessage"] = $lang_err_database;
return false;
}
} else {
$_SESSION["errorMessage"] = "No such section name ($sSectionName) in the sitemap";
return false;
}
}
/**
* Returns the default action for the supplied section (uses the array)
*
* @param string the section name to return the default action for
* @return string the controller action for the default page for this section
*/
function getDefaultActionUsingArray($sSectionName) {
global $default;
// check if the section exists
if (is_array($this->aSiteMap[$sSectionName])) {
// initialise result array
$results = array();
// need to loop through all (groupName, page) arrays in this section
foreach ($this->aSiteMap[$sSectionName] as $requiredAccess => $pages) {
// don't need to check the permissions here, when the controller tries to
// retrieve the page from the action, the perms will be checked
//$default->log->debug("Sitemap::getDefaultAction: (section=$sectionName, reqGrp=$requiredGroupName); pages=" . arrayToString($pages));
foreach ($pages as $action => $pageArray) {
//$default->log->debug("Sitemap::getDefaultAction: action=$action; pageArray" . arrayToString($pageArray));
if ($pageArray["default"] && $pageArray["enabled"]) {
return $action;
}
}
}
} else {
// supplied section not in sitemap
// TODO: internal error code?
$_SESSION["errorMessage"] = "$sSectionName not in SiteMap!";
return false;
}
}
/**
* Returns the action for a specific page- to enable redirects
* Checks whether to use the db or not and calls the appropriate method
*
* @param string the page to perform the reverse lookup for
* @return string the action for this page
*/
function getActionFromPage($sPage) {
if ($this->bUseDB) {
return $this->getActionFromPageUsingDB($sPage);
} else {
return $this->getActionFromPageUsingArray($sPage);
}
}
/**
* Returns the action for a specific page- to enable redirects (uses the db)
*
* @param string the page to perform the reverse lookup for
* @return string the action for this page, false if there is no mapping
*/
function getActionFromPageUsingDB($sPage) {
global $default, $lang_err_database;
$sql = $default->db;
// lookup the action for the specified page
if ($sql->query("SELECT action FROM $default->owl_sitemap_table WHERE page='$sPage'")) {
if ($sql->next_record()) {
// return the section name
return $sql->f("action");
} else {
$_SESSION["errorMessage"] = $lang_err_database;
return false;
}
} else {
$_SESSION["errorMessage"] = $lang_err_database;
return false;
}
}
/**
* Returns the action for a specific page- to enable redirects (uses the array)
*
* @param string the page to perform the reverse lookup for
* @return string the action for this page, false if there is no mapping
*/
function getActionFromPageUsingArray($sPage) {
global $default;
$default->log->debug("Sitemap::getActionFromPage: page=$sPage");
// for each section
foreach ($this->aSiteMap as $section => $valArr) {
$default->log->debug("Sitemap::getActionFromPage section=$section");
// for each group, page array combination
foreach ($valArr as $requiredAccess => $pageArr) {
$default->log->debug("Sitemap::getActionFromPage access=$requiredAccess");
// now loop through pages until we find the right one
foreach ($pageArr as $action => $page) {
$default->log->debug("Sitemap::getActionFromPage action=$action, reqPage=$sPage; page=" . $page["page"]);
if ($sPage == $page["page"]) {
$default->log->debug("Sitemap::getActionFromPage found action=$action for page=$sPage");
return $action;
}
}
}
}
return false;
}
/**
* Prints the current site map
*/
function printMap() {
if (!$this->bUseDB) {
return arrayToString($this->aSiteMap);
}
}
/**
* Writes the current sitemap from the array to the DB
*/
function syncWithDB() {
global $default;
$sql = $default->db;
// only if we're using the array
if (!$this->bUseDB) {
// clear section table
if ($sql->query("DELETE from $default->owl_site_sections_table")) {
$default->log->debug("Sitemap::syncWithDB removed sections");
} else {
$default->log->error("Sitemap::syncWithDB remove sections failed");
}
// clear sitemap table
if ($sql->query("DELETE from $default->owl_sitemap_table")) {
$default->log->debug("Sitemap::syncWithDB removed sitemap");
} else {
$default->log->error("Sitemap::syncWithDB remove sitemap failed");
}
// for each section
foreach ($this->aSiteMap as $section => $valArr) {
// insert into the section
$sSectionSql = "INSERT INTO $default->owl_site_sections_table (name) VALUES ('$section')";
$default->log->debug("Sitemap::syncWithDB insert=$sSectionSql");
if ($sql->query($sSectionSql)) {
$sectionID = $sql->insert_id();
$default->log->debug("Sitemap::syncWithDB added section $section; $sectionID");
} else {
$default->log->error("Sitemap::syncWithDB add section $section failed");
}
// for each group, page array combination
foreach ($valArr as $requiredAccess => $pageArr) {
// now loop through all the pages
foreach ($pageArr as $action => $page) {
$sSiteMapSql = "INSERT INTO $default->owl_sitemap_table (action, page, section_id, access_id, link_text, is_default, is_enabled) " .
"VALUES ('$action', '" . $page["page"] . "', $sectionID, $requiredAccess, '" . $page["description"] . "', " . $page["default"] . ", " . $page["enabled"] . ")";
if ($sql->query($sSiteMapSql)) {
$default->log->debug("Sitemap::syncWithDb sitemap insert worked for ($action, " . $page["page"] . ")");
} else {
$default->log->debug("Sitemap::syncWithDB sitemap insert failed ($sSiteMapSql)");
}
}
}
}
}
}
}
?>