mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
e6b877df27
# Conflicts: # control/Director.php # control/HTTP.php # core/startup/ParameterConfirmationToken.php # docs/en/00_Getting_Started/01_Installation/05_Common_Problems.md # docs/en/00_Getting_Started/04_Directory_Structure.md # docs/en/00_Getting_Started/05_Coding_Conventions.md # docs/en/01_Tutorials/01_Building_A_Basic_Site.md # docs/en/01_Tutorials/02_Extending_A_Basic_Site.md # docs/en/01_Tutorials/03_Forms.md # docs/en/01_Tutorials/04_Site_Search.md # docs/en/01_Tutorials/05_Dataobject_Relationship_Management.md # docs/en/02_Developer_Guides/12_Search/01_Searchcontext.md # docs/en/02_Developer_Guides/13_i18n/index.md # docs/en/02_Developer_Guides/15_Customising_the_Admin_Interface/06_Javascript_Development.md # docs/en/03_Upgrading/index.md # docs/en/changelogs/index.md # docs/en/howto/customize-cms-menu.md # docs/en/howto/navigation-menu.md # docs/en/index.md # docs/en/installation/index.md # docs/en/installation/windows-manual-iis-6.md # docs/en/misc/contributing/code.md # docs/en/misc/contributing/issues.md # docs/en/misc/module-release-process.md # docs/en/reference/dataobject.md # docs/en/reference/execution-pipeline.md # docs/en/reference/grid-field.md # docs/en/reference/modeladmin.md # docs/en/reference/rssfeed.md # docs/en/reference/templates.md # docs/en/topics/commandline.md # docs/en/topics/debugging.md # docs/en/topics/email.md # docs/en/topics/forms.md # docs/en/topics/index.md # docs/en/topics/module-development.md # docs/en/topics/modules.md # docs/en/topics/page-type-templates.md # docs/en/topics/page-types.md # docs/en/topics/search.md # docs/en/topics/testing/index.md # docs/en/topics/testing/testing-guide-troubleshooting.md # docs/en/topics/theme-development.md # docs/en/tutorials/1-building-a-basic-site.md # docs/en/tutorials/2-extending-a-basic-site.md # docs/en/tutorials/3-forms.md # docs/en/tutorials/4-site-search.md # docs/en/tutorials/5-dataobject-relationship-management.md # docs/en/tutorials/building-a-basic-site.md # docs/en/tutorials/dataobject-relationship-management.md # docs/en/tutorials/extending-a-basic-site.md # docs/en/tutorials/forms.md # docs/en/tutorials/index.md # docs/en/tutorials/site-search.md # main.php # model/SQLQuery.php # security/ChangePasswordForm.php # security/MemberLoginForm.php # tests/control/ControllerTest.php # tests/core/startup/ParameterConfirmationTokenTest.php # tests/model/SQLQueryTest.php # tests/security/SecurityTest.php # tests/view/SSViewerTest.php # view/SSTemplateParser.php # view/SSTemplateParser.php.inc # view/SSViewer.php
150 lines
4.4 KiB
PHP
150 lines
4.4 KiB
PHP
<?php
|
|
/**
|
|
* A collection of static methods for manipulating the filesystem.
|
|
*
|
|
* @package framework
|
|
* @subpackage filesystem
|
|
*/
|
|
class Filesystem extends Object {
|
|
|
|
/**
|
|
* @config
|
|
* @var integer Integer
|
|
*/
|
|
private static $file_create_mask = 02775;
|
|
|
|
/**
|
|
* @config
|
|
* @var integer Integer
|
|
*/
|
|
private static $folder_create_mask = 02775;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
protected static $cache_folderModTime;
|
|
|
|
/**
|
|
* Create a folder on the filesystem, recursively.
|
|
* Uses {@link Filesystem::$folder_create_mask} to set filesystem permissions.
|
|
* Use {@link Folder::findOrMake()} to create a {@link Folder} database
|
|
* record automatically.
|
|
*
|
|
* @param String $folder Absolute folder path
|
|
*/
|
|
public static function makeFolder($folder) {
|
|
if(!file_exists($base = dirname($folder))) self::makeFolder($base);
|
|
if(!file_exists($folder)) mkdir($folder, Config::inst()->get('Filesystem', 'folder_create_mask'));
|
|
}
|
|
|
|
/**
|
|
* Remove a directory and all subdirectories and files.
|
|
*
|
|
* @param String $folder Absolute folder path
|
|
* @param Boolean $contentsOnly If this is true then the contents of the folder will be removed but not the
|
|
* folder itself
|
|
*/
|
|
public static function removeFolder($folder, $contentsOnly = false) {
|
|
|
|
// remove a file encountered by a recursive call.
|
|
if(is_file($folder) || is_link($folder)) {
|
|
unlink($folder);
|
|
} else {
|
|
$dir = opendir($folder);
|
|
while($file = readdir($dir)) {
|
|
if(($file == '.' || $file == '..')) continue;
|
|
else {
|
|
self::removeFolder($folder . '/' . $file);
|
|
}
|
|
}
|
|
closedir($dir);
|
|
if(!$contentsOnly) rmdir($folder);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Remove a directory, but only if it is empty.
|
|
*
|
|
* @param string $folder Absolute folder path
|
|
* @param boolean $recursive Remove contained empty folders before attempting to remove this one
|
|
* @return boolean True on success, false on failure.
|
|
*/
|
|
public static function remove_folder_if_empty($folder, $recursive = true) {
|
|
if (!is_readable($folder)) return false;
|
|
$handle = opendir($folder);
|
|
while (false !== ($entry = readdir($handle))) {
|
|
if ($entry != "." && $entry != "..") {
|
|
// if an empty folder is detected, remove that one first and move on
|
|
if($recursive && is_dir($entry) && self::remove_folder_if_empty($entry)) continue;
|
|
// if a file was encountered, or a subdirectory was not empty, return false.
|
|
return false;
|
|
}
|
|
}
|
|
// if we are still here, the folder is empty.
|
|
rmdir($folder);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Cleanup function to reset all the Filename fields. Visit File/fixfiles to call.
|
|
*/
|
|
public function fixfiles() {
|
|
if(!Permission::check('ADMIN')) return Security::permissionFailure($this);
|
|
|
|
$files = DataObject::get("File");
|
|
foreach($files as $file) {
|
|
$file->updateFilesystem();
|
|
echo "<li>", $file->Filename;
|
|
$file->write();
|
|
}
|
|
echo "<p>Done!";
|
|
}
|
|
|
|
/**
|
|
* Return the most recent modification time of anything in the folder.
|
|
*
|
|
* @param $folder The folder, relative to the site root
|
|
* @param $extensionList An option array of file extensions to limit the search to
|
|
* @return String Same as filemtime() format.
|
|
*/
|
|
public static function folderModTime($folder, $extensionList = null, $recursiveCall = false) {
|
|
//$cacheID = $folder . ',' . implode(',', $extensionList);
|
|
//if(!$recursiveCall && self::$cache_folderModTime[$cacheID]) return self::$cache_folderModTime[$cacheID];
|
|
|
|
$modTime = 0;
|
|
if(!Filesystem::isAbsolute($folder)) $folder = Director::baseFolder() . '/' . $folder;
|
|
|
|
$items = scandir($folder);
|
|
foreach($items as $item) {
|
|
if($item[0] != '.') {
|
|
// Recurse into folders
|
|
if(is_dir("$folder/$item")) {
|
|
$modTime = max($modTime, self::folderModTime("$folder/$item", $extensionList, true));
|
|
|
|
// Check files
|
|
} else {
|
|
if($extensionList) $extension = strtolower(substr($item,strrpos($item,'.')+1));
|
|
if(!$extensionList || in_array($extension, $extensionList)) {
|
|
$modTime = max($modTime, filemtime("$folder/$item"));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//if(!$recursiveCall) self::$cache_folderModTime[$cacheID] = $modTime;
|
|
return $modTime;
|
|
}
|
|
|
|
/**
|
|
* Returns true if the given filename is an absolute file reference.
|
|
* Works on Linux and Windows.
|
|
*
|
|
* @param String $filename Absolute or relative filename, with or without path.
|
|
* @return Boolean
|
|
*/
|
|
public static function isAbsolute($filename) {
|
|
if($_ENV['OS'] == "Windows_NT" || $_SERVER['WINDIR']) return $filename[1] == ':' && $filename[2] == '/';
|
|
else return $filename[0] == '/';
|
|
}
|
|
}
|