2008-01-22 02:27:41 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Extension for the File object to add subsites support
|
2009-05-04 07:03:44 +02:00
|
|
|
*
|
2008-11-24 04:22:01 +01:00
|
|
|
* @package subsites
|
2008-01-22 02:27:41 +01:00
|
|
|
*/
|
|
|
|
class FileSubsites extends DataObjectDecorator {
|
2009-06-22 14:03:04 +02:00
|
|
|
|
2010-03-01 03:54:29 +01:00
|
|
|
// If this is set to true, all folders created will be default be
|
|
|
|
// considered 'global', unless set otherwise
|
|
|
|
static $default_root_folders_global = false;
|
|
|
|
|
2009-05-20 07:36:14 +02:00
|
|
|
function extraStatics() {
|
2009-06-22 14:03:04 +02:00
|
|
|
if(!method_exists('DataObjectDecorator', 'load_extra_statics')) {
|
|
|
|
if($this->owner->class != 'File') return null;
|
2008-01-22 02:27:41 +01:00
|
|
|
}
|
2009-06-22 14:03:04 +02:00
|
|
|
return array(
|
|
|
|
'has_one' => array(
|
|
|
|
'Subsite' => 'Subsite',
|
|
|
|
),
|
|
|
|
);
|
2009-05-04 07:03:44 +02:00
|
|
|
}
|
2008-01-22 05:17:18 +01:00
|
|
|
|
2008-01-22 05:30:20 +01:00
|
|
|
/**
|
|
|
|
* Amends the CMS tree title for folders in the Files & Images section.
|
2009-05-04 07:03:44 +02:00
|
|
|
* Prefixes a '* ' to the folders that are accessible from all subsites.
|
2008-01-22 05:30:20 +01:00
|
|
|
*/
|
2008-01-22 05:17:18 +01:00
|
|
|
function alternateTreeTitle() {
|
|
|
|
if($this->owner->SubsiteID == 0) return " * " . $this->owner->Title;
|
|
|
|
else return $this->owner->Title;
|
|
|
|
}
|
2009-05-04 07:03:44 +02:00
|
|
|
|
2008-01-22 02:27:41 +01:00
|
|
|
/**
|
|
|
|
* Add subsites-specific fields to the folder editor.
|
|
|
|
*/
|
|
|
|
function updateCMSFields(FieldSet &$fields) {
|
|
|
|
if($this->owner instanceof Folder) {
|
|
|
|
$sites = Subsite::accessible_sites('CMS_ACCESS_AssetAdmin');
|
2010-03-01 04:00:34 +01:00
|
|
|
$dropdownValues = ($sites) ? $sites->toDropdownMap() : array();
|
2010-03-01 03:54:29 +01:00
|
|
|
$dropdownValues[0] = 'All sites';
|
|
|
|
ksort($dropdownValues);
|
|
|
|
if($sites)$fields->addFieldToTab('Root.Details', new DropdownField("SubsiteID", "Subsite", $dropdownValues));
|
2008-01-22 02:27:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update any requests to limit the results to the current site
|
|
|
|
*/
|
|
|
|
function augmentSQL(SQLQuery &$query) {
|
2009-10-29 02:40:46 +01:00
|
|
|
if(defined('DB::USE_ANSI_SQL'))
|
|
|
|
$q="\"";
|
|
|
|
else $q='`';
|
2008-01-22 02:27:41 +01:00
|
|
|
|
2010-03-01 03:54:29 +01:00
|
|
|
// If you're querying by ID, ignore the sub-site - this is a bit ugly... (but it was WAYYYYYYYYY worse)
|
2010-03-01 22:55:40 +01:00
|
|
|
if(!$query->where || !preg_match('/\.(\'|"|`|)ID(\'|"|`|)/', $query->where[0])) {
|
2009-07-14 01:11:23 +02:00
|
|
|
if($context = DataObject::context_obj()) $subsiteID = (int) $context->SubsiteID;
|
|
|
|
else $subsiteID = (int) Subsite::currentSubsiteID();
|
2009-05-04 07:03:44 +02:00
|
|
|
|
2008-01-22 02:27:41 +01:00
|
|
|
// The foreach is an ugly way of getting the first key :-)
|
|
|
|
foreach($query->from as $tableName => $info) {
|
2009-10-29 02:40:46 +01:00
|
|
|
$where = "{$q}$tableName{$q}.{$q}SubsiteID{$q} IN (0, $subsiteID)";
|
2009-07-14 01:10:00 +02:00
|
|
|
$query->where[] = $where;
|
2008-01-22 02:27:41 +01:00
|
|
|
break;
|
|
|
|
}
|
2009-07-14 01:11:23 +02:00
|
|
|
|
2010-03-01 22:55:31 +01:00
|
|
|
$query->orderby = "\"SubsiteID\"" . ($query->orderby ? ', ' : '') . $query->orderby;
|
2008-01-22 02:27:41 +01:00
|
|
|
}
|
|
|
|
}
|
2009-05-04 07:03:44 +02:00
|
|
|
|
2010-03-01 03:54:29 +01:00
|
|
|
function onBeforeWrite() {
|
|
|
|
if (!$this->owner->ID && !$this->owner->SubsiteID) {
|
|
|
|
if (self::$default_root_folders_global) {
|
|
|
|
$this->owner->SubsiteID = 0;
|
|
|
|
} else {
|
|
|
|
$this->owner->SubsiteID = Subsite::currentSubsiteID();
|
|
|
|
}
|
|
|
|
}
|
2008-01-22 02:27:41 +01:00
|
|
|
}
|
2009-05-04 07:03:44 +02:00
|
|
|
|
|
|
|
function onAfterUpload() {
|
2010-03-01 03:54:29 +01:00
|
|
|
// If we have a parent, use it's subsite as our subsite
|
|
|
|
if ($this->owner->Parent()) {
|
|
|
|
$this->owner->SubsiteID = $this->owner->Parent()->SubsiteID;
|
|
|
|
} else {
|
|
|
|
$this->owner->SubsiteID = Subsite::currentSubsiteID();
|
|
|
|
}
|
2009-05-04 07:03:44 +02:00
|
|
|
$this->owner->write();
|
|
|
|
}
|
|
|
|
|
2009-05-13 07:25:21 +02:00
|
|
|
function canEdit() {
|
2008-01-22 02:27:41 +01:00
|
|
|
// Check the CMS_ACCESS_SecurityAdmin privileges on the subsite that owns this group
|
2008-07-14 09:38:54 +02:00
|
|
|
$subsiteID = Session::get('SubsiteID');
|
2010-03-01 03:54:29 +01:00
|
|
|
if($subsiteID&&$subsiteID == $this->owner->SubsiteID) {
|
|
|
|
return true;
|
|
|
|
} else {
|
2008-07-14 09:38:54 +02:00
|
|
|
Session::set('SubsiteID', $this->owner->SubsiteID);
|
|
|
|
$access = Permission::check('CMS_ACCESS_AssetAdmin');
|
|
|
|
Session::set('SubsiteID', $subsiteID);
|
2009-05-04 07:03:44 +02:00
|
|
|
|
2008-07-14 09:38:54 +02:00
|
|
|
return $access;
|
|
|
|
}
|
2009-05-04 07:03:44 +02:00
|
|
|
}
|
2010-03-01 22:41:01 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a piece of text to keep DataObject cache keys appropriately specific
|
|
|
|
*/
|
|
|
|
function cacheKeyComponent() {
|
|
|
|
return 'subsite-'.Subsite::currentSubsiteID();
|
|
|
|
}
|
|
|
|
|
2008-01-22 02:27:41 +01:00
|
|
|
}
|
|
|
|
|
2010-03-01 22:41:01 +01:00
|
|
|
|