silverstripe-subsites/code/FileSubsites.php

90 lines
2.6 KiB
PHP
Raw Normal View History

<?php
/**
* Extension for the File object to add subsites support
2009-05-04 07:03:44 +02:00
*
* @package subsites
*/
class FileSubsites extends DataObjectDecorator {
function extraStatics() {
if(!method_exists('DataObjectDecorator', 'load_extra_statics')) {
if($this->owner->class != 'File') return null;
}
return array(
'has_one' => array(
'Subsite' => 'Subsite',
),
);
2009-05-04 07:03:44 +02: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.
*/
function alternateTreeTitle() {
if($this->owner->SubsiteID == 0) return " * " . $this->owner->Title;
else return $this->owner->Title;
}
2009-05-04 07:03:44 +02: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');
if($sites)$fields->addFieldToTab('Root.Details', new DropdownField("SubsiteID", "Subsite", $sites->toDropdownMap('ID', 'Title', "(Public)")));
}
}
/**
* 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(defined('DB::USE_ANSI_SQL'))
$q="\"";
else $q='`';
if(strpos($query->where[0], ".{$q}ID{$q} = ") === false && strpos($query->where[0], ".{$q}ID{$q} = ") === false) {
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
// The foreach is an ugly way of getting the first key :-)
foreach($query->from as $tableName => $info) {
$where = "{$q}$tableName{$q}.{$q}SubsiteID{$q} IN (0, $subsiteID)";
$query->where[] = $where;
break;
}
2009-07-14 01:11:23 +02:00
if(sizeof($query->select) > 1 && $query->select[0] != 'COUNT(*)'){
$query->orderby = "{$q}SubsiteID{$q}" . ($query->orderby ? ', ' : '') . $query->orderby;
}
}
}
2009-05-04 07:03:44 +02:00
function augmentBeforeWrite() {
2008-07-14 09:38:54 +02:00
if(!$this->owner->ID && !$this->owner->SubsiteID) $this->owner->SubsiteID = Subsite::currentSubsiteID();
}
2009-05-04 07:03:44 +02:00
function onAfterUpload() {
$this->owner->SubsiteID = Subsite::currentSubsiteID();
$this->owner->write();
}
function canEdit() {
// 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-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
}
}