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 {
|
|
|
|
function extraDBFields() {
|
|
|
|
// This is hard-coded to be applied to SiteTree, unfortunately
|
|
|
|
if($this->owner->class == 'File') {
|
|
|
|
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');
|
2008-04-28 08:41:22 +02:00
|
|
|
if($sites)$fields->addFieldToTab('Root.Details', new DropdownField("SubsiteID", "Subsite", $sites->toDropdownMap('ID', 'Title', "(Public)")));
|
2008-01-22 02:27:41 +01:00
|
|
|
}
|
2009-05-04 07:03:44 +02:00
|
|
|
|
|
|
|
if($this->owner->SubsiteID == 0 && !Permission::check('EDIT_PERMISSIONS') && !Permission::check('SUBSITE_ASSETS_EDIT')){
|
2008-07-14 09:38:54 +02:00
|
|
|
$fields->removeFieldFromTab("Root", "Upload");
|
2009-05-04 07:03:44 +02:00
|
|
|
$fields = $fields->transform(new ReadonlyTransformation());
|
2008-07-14 09:38:54 +02:00
|
|
|
}
|
2008-01-22 02:27:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update any requests to limit the results to the current site
|
|
|
|
*/
|
|
|
|
function augmentSQL(SQLQuery &$query) {
|
|
|
|
// If you're querying by ID, ignore the sub-site - this is a bit ugly...
|
|
|
|
if(strpos($query->where[0], ".`ID` = ") === false && strpos($query->where[0], ".ID = ") === false) {
|
|
|
|
|
|
|
|
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) {
|
|
|
|
$query->where[] = "`$tableName`.SubsiteID IN (0, $subsiteID)";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$query->orderby = 'SubsiteID' . ($query->orderby ? ', ' : '') . $query->orderby;
|
|
|
|
}
|
|
|
|
}
|
2009-05-04 07:03:44 +02:00
|
|
|
|
2008-01-22 02:27:41 +01:00
|
|
|
function augmentBeforeWrite() {
|
2008-07-14 09:38:54 +02:00
|
|
|
if(!$this->owner->ID && !$this->owner->SubsiteID) $this->owner->SubsiteID = Subsite::currentSubsiteID();
|
2008-01-22 02:27:41 +01:00
|
|
|
}
|
2009-05-04 07:03:44 +02:00
|
|
|
|
|
|
|
function onAfterUpload() {
|
|
|
|
$this->owner->SubsiteID = Subsite::currentSubsiteID();
|
|
|
|
$this->owner->write();
|
|
|
|
}
|
|
|
|
|
2008-01-22 02:27:41 +01:00
|
|
|
function alternateCanEdit() {
|
|
|
|
// 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');
|
2008-01-22 02:27:41 +01:00
|
|
|
|
2008-07-14 09:38:54 +02:00
|
|
|
if($subsiteID&&$subsiteID == $this->owner->SubsiteID) return true;
|
|
|
|
else {
|
|
|
|
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
|
|
|
}
|
2008-01-22 02:27:41 +01:00
|
|
|
}
|
|
|
|
|