summaryrefslogtreecommitdiff
path: root/LibertyBase.php
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2006-02-09 14:45:28 +0000
committerLester Caine <lester@lsces.co.uk>2006-02-09 14:45:28 +0000
commitb05f3ceef639babbe0d8bc4bfe972f3fbe0bbb3b (patch)
tree93620d9ae0fa1aa28327bca526713512d805ad4f /LibertyBase.php
parent42cd7e64fbc33e4e435b6fc7ee95a52971823bfe (diff)
downloadliberty-b05f3ceef639babbe0d8bc4bfe972f3fbe0bbb3b.tar.gz
liberty-b05f3ceef639babbe0d8bc4bfe972f3fbe0bbb3b.tar.bz2
liberty-b05f3ceef639babbe0d8bc4bfe972f3fbe0bbb3b.zip
Filter content by group_id - block content not flagged with a group_id matching user's list
Diffstat (limited to 'LibertyBase.php')
-rw-r--r--LibertyBase.php15
1 files changed, 11 insertions, 4 deletions
diff --git a/LibertyBase.php b/LibertyBase.php
index 0e43a2d..0bd04fe 100644
--- a/LibertyBase.php
+++ b/LibertyBase.php
@@ -3,7 +3,7 @@
* Base class for Management of Liberty Content
*
* @package liberty
- * @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertyBase.php,v 1.7 2006/02/01 18:42:12 squareing Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertyBase.php,v 1.8 2006/02/09 14:45:28 lsces Exp $
* @author spider <spider@steelsun.com>
*/
// +----------------------------------------------------------------------+
@@ -51,18 +51,25 @@ class LibertyBase extends BitBase {
*/
function getLibertyObject( $pContentId, $pContentGuid=NULL ) {
$ret = NULL;
- global $gLibertySystem;
+ global $gLibertySystem, $gBitUser, $gBitSystem;
if( BitBase::verifyId( $pContentId ) ) {
if( empty( $pContentGuid ) ) {
- $pContentGuid = $gLibertySystem->mDb->getOne( "SELECT `content_type_guid` FROM `".BIT_DB_PREFIX."liberty_content` WHERE `content_id`=?", array( $pContentId ) );
+ $ret = $gLibertySystem->mDb->getRow( "SELECT `content_type_guid`, `group_id` FROM `".BIT_DB_PREFIX."liberty_content` WHERE `content_id`=?", array( $pContentId ) );
+ if ( !empty($gBitUser->mGroups[$ret['group_id']] ) ) {
+ $pContentGuid = $ret[content_type_guid];
+ } else {
+ $gBitSystem->fatalError( 'You do not have permission to access this item' );
+ $ret = NULL;
+ }
}
- if( !empty( $pContentGuid) && isset( $gLibertySystem->mContentTypes[$pContentGuid] ) ) {
+ if( !empty( $pContentGuid ) && isset( $gLibertySystem->mContentTypes[$pContentGuid] ) ) {
$type = $gLibertySystem->mContentTypes[$pContentGuid];
require_once( constant( strtoupper( $type['handler_package'] ).'_PKG_PATH' ).$type['handler_file'] );
$ret = new $type['handler_class']( NULL, $pContentId );
$ret->load();
}
+
}
return $ret;
}