2008-01-22 02:27:41 +01:00
< ? php
2016-09-22 16:38:29 +02:00
use SilverStripe\Forms\FieldList ;
use SilverStripe\Assets\Folder ;
use SilverStripe\Forms\DropdownField ;
use SilverStripe\Forms\LiteralField ;
use SilverStripe\ORM\Queries\SQLSelect ;
use SilverStripe\ORM\DataQuery ;
use SilverStripe\Control\Session ;
use SilverStripe\Security\Permission ;
use SilverStripe\ORM\DataExtension ;
2008-01-22 02:27:41 +01:00
/**
* 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
*/
2012-03-25 18:35:01 +02:00
class FileSubsites extends DataExtension {
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 ;
2013-05-06 12:21:09 +02:00
private static $has_one = array (
2012-07-10 15:43:53 +02:00
'Subsite' => 'Subsite' ,
);
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 .
*/
2012-03-25 18:35:01 +02:00
function updateCMSFields ( FieldList $fields ) {
2008-01-22 02:27:41 +01:00
if ( $this -> owner instanceof Folder ) {
$sites = Subsite :: accessible_sites ( 'CMS_ACCESS_AssetAdmin' );
2013-02-04 03:21:08 +01:00
$values = array ();
2013-10-30 13:43:59 +01:00
$values [ 0 ] = _t ( 'FileSubsites.AllSitesDropdownOpt' , 'All sites' );
2012-07-11 15:32:10 +02:00
foreach ( $sites as $site ) {
2013-02-04 03:21:08 +01:00
$values [ $site -> ID ] = $site -> Title ;
2012-07-11 15:32:10 +02:00
}
2013-02-04 03:21:08 +01:00
ksort ( $values );
2013-08-22 03:02:46 +02:00
if ( $sites ){
//Dropdown needed to move folders between subsites
2013-10-30 13:43:59 +01:00
$dropdown = new DropdownField (
'SubsiteID' ,
_t ( 'FileSubsites.SubsiteFieldLabel' , 'Subsite' ),
$values
);
$dropdown -> addExtraClass ( 'subsites-move-dropdown' );
$fields -> push ( $dropdown );
2013-08-22 03:02:46 +02:00
$fields -> push ( new LiteralField (
'Message' ,
'<p class="message notice">' .
_t ( 'ASSETADMIN.SUBSITENOTICE' , 'Folders and files created in the main site are accessible by all subsites.' )
. '</p>'
));
}
2008-01-22 02:27:41 +01:00
}
}
/**
* Update any requests to limit the results to the current site
*/
2015-11-20 03:32:52 +01:00
public function augmentSQL ( SQLSelect $query , DataQuery $dataQuery = null ) {
2013-05-09 02:18:48 +02:00
if ( Subsite :: $disable_subsite_filter ) return ;
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)
2012-07-10 15:43:53 +02:00
//@TODO I don't think excluding if SiteTree_ImageTracking is a good idea however because of the SS 3.0 api and ManyManyList::removeAll() changing the from table after this function is called there isn't much of a choice
2012-11-07 02:25:32 +01:00
$from = $query -> getFrom ();
2014-08-26 01:37:16 +02:00
if ( isset ( $from [ 'SiteTree_ImageTracking' ]) || $query -> filtersOnID ()) return ;
2012-11-07 02:25:32 +01:00
2014-08-26 01:37:16 +02:00
$subsiteID = ( int ) Subsite :: currentSubsiteID ();
2009-05-04 07:03:44 +02:00
2014-08-26 01:37:16 +02:00
// The foreach is an ugly way of getting the first key :-)
foreach ( $query -> getFrom () as $tableName => $info ) {
$where = " \" $tableName\ " . \ " SubsiteID \" IN (0, $subsiteID ) " ;
$query -> addWhere ( $where );
break ;
}
2010-04-12 06:04:15 +02:00
2014-08-26 01:37:16 +02:00
$sect = array_values ( $query -> getSelect ());
$isCounting = strpos ( $sect [ 0 ], 'COUNT' ) !== false ;
// Ordering when deleting or counting doesn't apply
if ( ! $isCounting ) {
$query -> addOrderBy ( " \" SubsiteID \" " );
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 ();
}
2012-04-25 14:29:32 +02:00
function canEdit ( $member = null ) {
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 );
2014-01-09 21:31:44 +01:00
$access = Permission :: check ( array ( 'CMS_ACCESS_AssetAdmin' , 'CMS_ACCESS_LeftAndMain' ));
2008-07-14 09:38:54 +02:00
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
}