2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This class handles the representation of a File within Sapphire
|
2007-09-14 21:19:32 +02:00
|
|
|
* Note: The files are stored in the "/assets/" directory, but sapphire
|
2007-07-19 12:40:28 +02:00
|
|
|
* looks at the db object to gather information about a file such as URL
|
2007-09-14 21:19:32 +02:00
|
|
|
*
|
|
|
|
* It then uses this for all processing functions (like image manipulation)
|
2008-02-25 03:10:37 +01:00
|
|
|
* @package sapphire
|
|
|
|
* @subpackage filesystem
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
class File extends DataObject {
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2008-04-06 10:20:13 +02:00
|
|
|
static $default_sort = "Name";
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
static $singular_name = "File";
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
static $plural_name = "Files";
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
static $db = array(
|
|
|
|
"Name" => "Varchar(255)",
|
|
|
|
"Title" => "Varchar(255)",
|
|
|
|
"Filename" => "Varchar(255)",
|
|
|
|
"Content" => "Text",
|
2007-10-02 06:53:19 +02:00
|
|
|
"Sort" => "Int"
|
2007-07-19 12:40:28 +02:00
|
|
|
);
|
2008-04-06 10:20:13 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
static $indexes = array(
|
|
|
|
"SearchFields" => "fulltext (Filename,Title,Content)",
|
|
|
|
);
|
2008-04-06 10:20:13 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
static $has_one = array(
|
|
|
|
"Parent" => "File",
|
|
|
|
"Owner" => "Member"
|
|
|
|
);
|
2008-04-06 10:20:13 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
static $extensions = array(
|
|
|
|
"Hierarchy",
|
2007-09-14 21:19:32 +02:00
|
|
|
);
|
2008-04-06 10:20:13 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
static $belongs_many_many = array(
|
|
|
|
"BackLinkTracking" => "SiteTree",
|
|
|
|
);
|
2008-03-07 04:19:49 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Cached result of a "SHOW FIELDS" call
|
|
|
|
* in instance_get() for performance reasons.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected static $cache_file_fields = null;
|
2008-04-06 10:20:13 +02:00
|
|
|
|
|
|
|
function Link($action = null) {
|
|
|
|
return Director::baseURL() . $this->RelativeLink($action);
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2008-04-06 10:20:13 +02:00
|
|
|
function RelativeLink($action = null){
|
|
|
|
return $this->Filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
function TreeTitle() {
|
2008-09-12 03:05:11 +02:00
|
|
|
return $this->Name;
|
2008-04-06 10:20:13 +02:00
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2008-04-06 10:20:13 +02:00
|
|
|
* Event handler called before deleting from the database.
|
|
|
|
* You can overload this to clean up or otherwise process data before delete this
|
|
|
|
* record. Don't forget to call parent::onBeforeDelete(), though!
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2008-04-06 10:20:13 +02:00
|
|
|
protected function onBeforeDelete() {
|
|
|
|
parent::onBeforeDelete();
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2008-04-06 10:20:13 +02:00
|
|
|
$this->autosetFilename();
|
|
|
|
if($this->Filename && $this->Name && file_exists($this->getFullPath()) && !is_dir($this->getFullPath())) {
|
|
|
|
unlink($this->getFullPath());
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2008-04-06 10:20:13 +02:00
|
|
|
if($brokenPages = $this->BackLinkTracking()) {
|
|
|
|
foreach($brokenPages as $brokenPage) {
|
|
|
|
Notifications::event("BrokenLink", $brokenPage, $brokenPage->OwnerID);
|
|
|
|
$brokenPage->HasBrokenFile = true;
|
|
|
|
$brokenPage->write();
|
|
|
|
}
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2008-04-06 10:20:13 +02:00
|
|
|
|
2008-11-07 13:17:42 +01:00
|
|
|
/**
|
|
|
|
* @todo Enforce on filesystem URL level via mod_rewrite
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
function canView($member = null) {
|
|
|
|
if(!$member) $member = Member::currentUser();
|
|
|
|
|
|
|
|
$results = $this->extend('canView', $member);
|
|
|
|
if($results && is_array($results)) if(!min($results)) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the following conditions are met:
|
|
|
|
* - CMS_ACCESS_AssetAdmin
|
|
|
|
*
|
|
|
|
* @todo Decouple from CMS view access
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
function canEdit($member = null) {
|
|
|
|
if(!$member) $member = Member::currentUser();
|
|
|
|
|
|
|
|
$results = $this->extend('canEdit', $member);
|
|
|
|
if($results && is_array($results)) if(!min($results)) return false;
|
|
|
|
|
|
|
|
return Permission::checkMember($member, 'CMS_ACCESS_AssetAdmin');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
function canCreate($member = null) {
|
|
|
|
if(!$member) $member = Member::currentUser();
|
|
|
|
|
|
|
|
$results = $this->extend('canCreate', $member);
|
|
|
|
if($results && is_array($results)) if(!min($results)) return false;
|
|
|
|
|
|
|
|
return $this->canEdit($member);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
function canDelete($member = null) {
|
|
|
|
if(!$member) $member = Member::currentUser();
|
|
|
|
|
|
|
|
$results = $this->extend('canDelete', $member);
|
|
|
|
if($results && is_array($results)) if(!min($results)) return false;
|
|
|
|
|
|
|
|
return $this->canEdit($member);
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/*
|
2007-09-14 21:19:32 +02:00
|
|
|
* Find the given file
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
static function find($filename) {
|
|
|
|
// Get the base file if $filename points to a resampled file
|
|
|
|
$filename = ereg_replace('_resampled/[^-]+-','',$filename);
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
$parts = explode("/",$filename);
|
|
|
|
$parentID = 0;
|
|
|
|
|
|
|
|
foreach($parts as $part) {
|
|
|
|
if($part == "assets" && !$parentID) continue;
|
|
|
|
$item = DataObject::get_one("File", "Name = '$part' AND ParentID = $parentID");
|
|
|
|
if(!$item) break;
|
|
|
|
$parentID = $item->ID;
|
|
|
|
}
|
|
|
|
return $item;
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
public function appCategory() {
|
|
|
|
$ext = $this->Extension;
|
|
|
|
switch($ext) {
|
|
|
|
case "aif": case "au": case "mid": case "midi": case "mp3": case "ra": case "ram": case "rm":
|
|
|
|
case "mp3": case "wav": case "m4a": case "snd": case "aifc": case "aiff": case "wma": case "apl":
|
|
|
|
case "avr": case "cda": case "mp4": case "ogg":
|
|
|
|
return "audio";
|
|
|
|
|
|
|
|
case "mpeg": case "mpg": case "m1v": case "mp2": case "mpa": case "mpe": case "ifo": case "vob":
|
|
|
|
case "avi": case "wmv": case "asf": case "m2v": case "qt":
|
|
|
|
return "mov";
|
|
|
|
|
|
|
|
case "arc": case "rar": case "tar": case "gz": case "tgz": case "bz2": case "dmg": case "jar":
|
|
|
|
case "ace": case "arj": case "bz": case "cab":
|
|
|
|
return "zip";
|
|
|
|
|
|
|
|
case "bmp": case "gif": case "jpg": case "jpeg": case "pcx": case "tif": case "png": case "alpha":
|
|
|
|
case "als": case "cel": case "icon": case "ico": case "ps":
|
|
|
|
return "image";
|
|
|
|
}
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
function CMSThumbnail() {
|
|
|
|
$filename = $this->Icon();
|
|
|
|
return "<div style=\"text-align:center;width: 100px;padding-top: 15px;\"><a target=\"_blank\" href=\"$this->URL\" title=\"Download: $this->URL\"><img src=\"$filename\" alt=\"$filename\" /></a><br /><br /><a style=\"color: #0074C6;\"target=\"_blank\" href=\"$this->URL\" title=\"Download: $this->URL\">Download</a><br /><em>$this->Size</e></div>";
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Return the URL of an icon for the file type
|
|
|
|
*/
|
|
|
|
function Icon() {
|
|
|
|
$ext = $this->Extension;
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63154 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-09-27 18:02:38 +02:00
|
|
|
if(!Director::fileExists(SAPPHIRE_DIR . "/images/app_icons/{$ext}_32.gif")) {
|
2007-07-19 12:40:28 +02:00
|
|
|
$ext = $this->appCategory();
|
|
|
|
}
|
|
|
|
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63154 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-09-27 18:02:38 +02:00
|
|
|
if(!Director::fileExists(SAPPHIRE_DIR . "/images/app_icons/{$ext}_32.gif")) {
|
2007-07-19 12:40:28 +02:00
|
|
|
$ext = "generic";
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63154 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-09-27 18:02:38 +02:00
|
|
|
return SAPPHIRE_DIR . "/images/app_icons/{$ext}_32.gif";
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-04-06 10:20:13 +02:00
|
|
|
* Save an file passed from a form post into this object.
|
|
|
|
* DEPRECATED Please instanciate an Upload-object instead and pass the file
|
|
|
|
* via {Upload->loadIntoFile()}.
|
|
|
|
*
|
|
|
|
* @param $tmpFile array Indexed array that PHP generated for every file it uploads.
|
|
|
|
* @return Boolean|string Either success or error-message.
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
2008-04-06 10:20:13 +02:00
|
|
|
function loadUploaded($tmpFile) {
|
|
|
|
user_error('File::loadUploaded is deprecated, please use the Upload class directly.', E_USER_NOTICE);
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2008-04-06 10:20:13 +02:00
|
|
|
$upload = new Upload();
|
|
|
|
$upload->loadIntoFile($tmpFile, $this);
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2008-04-06 10:20:13 +02:00
|
|
|
return $upload->isError();
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Delete the database record (recursively for folders) without touching the filesystem
|
|
|
|
*/
|
2008-05-24 03:21:04 +02:00
|
|
|
public function deleteDatabaseOnly() {
|
2007-07-19 12:40:28 +02:00
|
|
|
if(is_numeric($this->ID)) DB::query("DELETE FROM File WHERE ID = $this->ID");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Event handler called before deleting from the database.
|
2007-09-14 21:19:32 +02:00
|
|
|
* You can overload this to clean up or otherwise process data before delete this
|
2007-07-19 12:40:28 +02:00
|
|
|
* record. Don't forget to call parent::onBeforeDelete(), though!
|
|
|
|
*/
|
|
|
|
protected function onBeforeWrite() {
|
|
|
|
parent::onBeforeWrite();
|
|
|
|
|
|
|
|
if(!$this->Name) $this->Name = "new-" . strtolower($this->class);
|
|
|
|
|
|
|
|
if($brokenPages = $this->BackLinkTracking()) {
|
|
|
|
foreach($brokenPages as $brokenPage) {
|
|
|
|
Notifications::event("BrokenLink", $brokenPage, $brokenPage->OwnerID);
|
|
|
|
$brokenPage->HasBrokenFile = true;
|
|
|
|
$brokenPage->write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2007-09-14 21:19:32 +02:00
|
|
|
* Collate selected descendants of this page.
|
2007-07-19 12:40:28 +02:00
|
|
|
* $condition will be evaluated on each descendant, and if it is succeeds, that item will be added
|
|
|
|
* to the $collator array.
|
|
|
|
* @param condition The PHP condition to be evaluated. The page will be called $item
|
|
|
|
* @param collator An array, passed by reference, to collect all of the matching descendants.
|
|
|
|
*/
|
|
|
|
public function collateDescendants($condition, &$collator) {
|
|
|
|
if($children = $this->Children()) {
|
|
|
|
foreach($children as $item) {
|
|
|
|
if(!$condition || eval("return $condition;")) $collator[] = $item;
|
|
|
|
$item->collateDescendants($condition, $collator);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Setter function for Name.
|
|
|
|
* Automatically sets a default title.
|
|
|
|
*/
|
|
|
|
function setName($name) {
|
|
|
|
$oldName = $this->Name;
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
// It can't be blank
|
|
|
|
if(!$name) $name = $this->Title;
|
|
|
|
|
|
|
|
// Fix illegal characters
|
|
|
|
$name = ereg_replace(' +','-',trim($name));
|
|
|
|
$name = ereg_replace('[^A-Za-z0-9.+_\-]','',$name);
|
|
|
|
|
|
|
|
// We might have just turned it blank, so check again.
|
|
|
|
if(!$name) $name = 'new-folder';
|
|
|
|
|
|
|
|
// If it's changed, check for duplicates
|
|
|
|
if($oldName && $oldName != $name) {
|
|
|
|
if($dotPos = strpos($name, '.')) {
|
2007-09-14 21:19:32 +02:00
|
|
|
$base = substr($name,0,$dotPos);
|
|
|
|
$ext = substr($name,$dotPos);
|
2007-07-19 12:40:28 +02:00
|
|
|
} else {
|
|
|
|
$base = $name;
|
|
|
|
$ext = "";
|
|
|
|
}
|
|
|
|
$suffix = 1;
|
|
|
|
while(DataObject::get_one("File", "Name = '" . addslashes($name) . "' AND ParentID = " . (int)$this->ParentID)) {
|
|
|
|
$suffix++;
|
|
|
|
$name = "$base-$suffix$ext";
|
|
|
|
}
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
|
|
|
if(!$this->getField('Title')) $this->__set('Title', str_replace(array('-','_'),' ',ereg_replace('\.[^.]+$','',$name)));
|
2007-07-19 12:40:28 +02:00
|
|
|
$this->setField('Name', $name);
|
2007-09-14 21:19:32 +02:00
|
|
|
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if($oldName && $oldName != $this->Name) {
|
|
|
|
$this->resetFilename();
|
|
|
|
} else {
|
2007-09-14 21:19:32 +02:00
|
|
|
$this->autosetFilename();
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
return $this->getField('Name');
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Change a filename, moving the file if appropriate.
|
|
|
|
* @param $renamePhysicalFile Set this to false if you don't want to rename the physical file. Used when calling resetFilename() on the children of a folder.
|
|
|
|
*/
|
|
|
|
protected function resetFilename($renamePhysicalFile = true) {
|
|
|
|
$oldFilename = $this->getField('Filename');
|
|
|
|
$newFilename = $this->getRelativePath();
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if($this->Name && $this->Filename && file_exists(Director::getAbsFile($oldFilename)) && strpos($oldFilename, '//') === false) {
|
|
|
|
if($renamePhysicalFile) {
|
|
|
|
$from = Director::getAbsFile($oldFilename);
|
|
|
|
$to = Director::getAbsFile($newFilename);
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
// Error checking
|
|
|
|
if(!file_exists($from)) user_error("Cannot move $oldFilename to $newFilename - $oldFilename doesn't exist", E_USER_WARNING);
|
|
|
|
else if(!file_exists(dirname($to))) user_error("Cannot move $oldFilename to $newFilename - " . dirname($newFilename) . " doesn't exist", E_USER_WARNING);
|
|
|
|
else if(!rename($from, $to)) user_error("Cannot move $oldFilename to $newFilename", E_USER_WARNING);
|
|
|
|
|
|
|
|
else $this->updateLinks($oldFilename, $newFilename);
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
} else {
|
|
|
|
$this->updateLinks($oldFilename, $newFilename);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// If the old file doesn't exist, maybe it's already been renamed.
|
|
|
|
if(file_exists(Director::getAbsFile($newFilename))) $this->updateLinks($oldFilename, $newFilename);
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
$this->setField('Filename', $newFilename);
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Set the Filename field without manipulating the filesystem.
|
|
|
|
*/
|
|
|
|
protected function autosetFilename() {
|
|
|
|
$this->setField('Filename', $this->getRelativePath());
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
function setField( $field, $value ) {
|
|
|
|
parent::setField( $field, $value );
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Rewrite links to the $old file to now point to the $new file
|
|
|
|
*/
|
|
|
|
protected function updateLinks($old, $new) {
|
|
|
|
$pages = $this->BackLinkTracking();
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if($pages) {
|
|
|
|
foreach($pages as $page) {
|
|
|
|
$fieldName = $page->FieldName; // extracted from the many-many join
|
|
|
|
if($fieldName) {
|
|
|
|
$text = $page->$fieldName;
|
|
|
|
$page->$fieldName = str_replace($old, $new, $page->$fieldName);
|
|
|
|
$page->write();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
function setParentID($parentID) {
|
|
|
|
$this->setField('ParentID', $parentID);
|
|
|
|
|
|
|
|
if($this->Name) $this->resetFilename();
|
|
|
|
else $this->autosetFilename();
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
return $this->getField('ParentID');
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2008-03-18 00:50:18 +01:00
|
|
|
/**
|
|
|
|
* Gets the absolute URL accessible through the web.
|
|
|
|
*
|
|
|
|
* @uses Director::absoluteBaseURL()
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function getAbsoluteURL() {
|
|
|
|
return Director::absoluteBaseURL() . $this->getFilename();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the absolute URL accessible through the web.
|
|
|
|
*
|
|
|
|
* @uses Director::absoluteBaseURL()
|
|
|
|
* @return string
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
function getURL() {
|
|
|
|
return Director::absoluteBaseURL() . $this->getFilename();
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Return the last 50 characters of the URL
|
|
|
|
*/
|
|
|
|
function getLinkedURL() {
|
|
|
|
return "$this->Name";
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
function getFullPath() {
|
2008-08-13 00:26:52 +02:00
|
|
|
$baseFolder = Director::baseFolder();
|
|
|
|
|
|
|
|
if(strpos($this->getFilename(), $baseFolder) === 0) {
|
|
|
|
// if path is absolute already, just return
|
|
|
|
return $this->getFilename();
|
|
|
|
} else {
|
|
|
|
// otherwise assume silverstripe-basefolder
|
|
|
|
return Director::baseFolder() . '/' . $this->getFilename();
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
function getRelativePath() {
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if($this->ParentID) {
|
2007-11-09 05:13:26 +01:00
|
|
|
$p = DataObject::get_one('Folder', "ID={$this->ParentID}");
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
if($p->ID) return $p->getRelativePath() . $this->getField("Name");
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63154 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-09-27 18:02:38 +02:00
|
|
|
else return ASSETS_DIR . "/" . $this->getField("Name");
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
} else if($this->getField("Name")) {
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63154 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-09-27 18:02:38 +02:00
|
|
|
return ASSETS_DIR . "/" . $this->getField("Name");
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
} else {
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63154 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-09-27 18:02:38 +02:00
|
|
|
return ASSETS_DIR;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
function DeleteLink() {
|
|
|
|
return Director::absoluteBaseURL()."admin/assets/removefile/".$this->ID;
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
function getFilename() {
|
2008-06-25 07:52:58 +02:00
|
|
|
if($this->getField('Filename')) {
|
|
|
|
return $this->getField('Filename');
|
|
|
|
} else {
|
ENHANCEMENT Introduced constants for system paths like /sapphire in preparation for a more flexible directory reorganisation. Instead of hardcoding your path, please use the following constants: BASE_PATH, BASE_URL, SAPPHIRE_DIR, SAPPHIRE_PATH, CMS_DIR, CMS_PATH, THIRDPARTY_DIR, THIRDPARTY_PATH, ASSETS_DIR, ASSETS_PATH, THEMES_DIR, THEMES_PATH
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63154 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-09-27 18:02:38 +02:00
|
|
|
return ASSETS_DIR . '/';
|
2008-06-25 07:52:58 +02:00
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
function setFilename($val) {
|
|
|
|
$this->setField('Filename', $val);
|
|
|
|
$this->setField('Name', basename($val));
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/*
|
|
|
|
* FIXME This overrides getExtension() in DataObject, but it does something completely different.
|
|
|
|
* This should be renamed to getFileExtension(), but has not been yet as it may break
|
|
|
|
* legacy code.
|
|
|
|
*/
|
|
|
|
function getExtension() {
|
2008-04-09 13:08:58 +02:00
|
|
|
return self::get_file_extension($this->getField('Filename'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the extension of a filepath or filename,
|
|
|
|
* by stripping away everything before the last "dot".
|
|
|
|
*
|
|
|
|
* @param string $filename
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function get_file_extension($filename) {
|
|
|
|
return strtolower(substr($filename,strrpos($filename,'.')+1));
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2008-04-06 10:20:13 +02:00
|
|
|
|
2008-10-16 05:55:33 +02:00
|
|
|
/**
|
|
|
|
* Return the type of file for the given extension
|
|
|
|
* on the current file name.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
function getFileType() {
|
|
|
|
$types = array(
|
2008-10-16 05:55:33 +02:00
|
|
|
'gif' => 'GIF image - good for diagrams',
|
|
|
|
'jpg' => 'JPEG image - good for photos',
|
|
|
|
'jpeg' => 'JPEG image - good for photos',
|
|
|
|
'png' => 'PNG image - good general-purpose format',
|
|
|
|
'doc' => 'Word document',
|
|
|
|
'xls' => 'Excel spreadsheet',
|
2007-07-19 12:40:28 +02:00
|
|
|
'zip' => 'ZIP compressed file',
|
|
|
|
'gz' => 'GZIP compressed file',
|
2008-10-16 05:55:33 +02:00
|
|
|
'dmg' => 'Apple disk image',
|
2007-07-19 12:40:28 +02:00
|
|
|
'pdf' => 'Adobe Acrobat PDF file',
|
2008-10-16 05:55:33 +02:00
|
|
|
'mp3' => 'MP3 audio file',
|
|
|
|
'wav' => 'WAV audo file',
|
|
|
|
'avi' => 'AVI video file',
|
|
|
|
'mpg' => 'MPEG video file',
|
|
|
|
'mpeg' => 'MPEG video file'
|
2007-07-19 12:40:28 +02:00
|
|
|
);
|
2008-10-16 05:55:33 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
$ext = $this->getExtension();
|
2008-04-06 10:20:13 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
return isset($types[$ext]) ? $types[$ext] : 'unknown';
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Returns the size of the file type in an appropriate format.
|
|
|
|
*/
|
|
|
|
function getSize() {
|
|
|
|
$size = $this->getAbsoluteSize();
|
2008-04-06 10:20:13 +02:00
|
|
|
|
|
|
|
return ($size) ? self::format_size($size) : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function format_size($size) {
|
|
|
|
if($size < 1024) return $size . ' bytes';
|
|
|
|
if($size < 1024*10) return (round($size/1024*10)/10). ' KB';
|
|
|
|
if($size < 1024*1024) return round($size/1024) . ' KB';
|
|
|
|
if($size < 1024*1024*10) return (round(($size/1024)/1024*10)/10) . ' MB';
|
|
|
|
if($size < 1024*1024*1024) return round(($size/1024)/1024) . ' MB';
|
2008-08-25 03:42:27 +02:00
|
|
|
return round($size/(1024*1024*1024)*10)/10 . ' GB';
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* returns the size in bytes with no extensions for calculations.
|
|
|
|
*/
|
|
|
|
function getAbsoluteSize(){
|
|
|
|
if(file_exists($this->getFullPath() )) {
|
|
|
|
$size = filesize($this->getFullPath());
|
|
|
|
return $size;
|
|
|
|
}else{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2007-09-14 21:19:32 +02:00
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Select clause for DataObject::get('File') operations/
|
|
|
|
* Stores an array, suitable for a {@link SQLQuery} object.
|
|
|
|
*/
|
|
|
|
private static $dataobject_select;
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* We've overridden the DataObject::get function for File so that the very large content field
|
2007-09-14 21:19:32 +02:00
|
|
|
* is excluded!
|
2007-07-19 12:40:28 +02:00
|
|
|
*
|
|
|
|
* @todo Admittedly this is a bit of a hack; but we need a way of ensuring that large
|
|
|
|
* TEXT fields don't stuff things up for the rest of us. Perhaps a separate search table would
|
|
|
|
* be a better way of approaching this?
|
2008-03-07 04:19:49 +01:00
|
|
|
* @deprecated alternative_instance_get()
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
public function instance_get($filter = "", $sort = "", $join = "", $limit="", $containerClass = "DataObjectSet", $having="") {
|
|
|
|
$query = $this->extendedSQL($filter, $sort, $limit, $join, $having);
|
|
|
|
$baseTable = reset($query->from);
|
2008-02-25 03:10:37 +01:00
|
|
|
|
2008-03-07 04:19:49 +01:00
|
|
|
$excludeDbColumns = array('Content');
|
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
// Work out which columns we're actually going to select
|
|
|
|
// In short, we select everything except File.Content
|
2008-04-26 08:47:29 +02:00
|
|
|
$dataobject_select = array();
|
|
|
|
foreach($query->select as $item) {
|
2008-03-07 04:19:49 +01:00
|
|
|
if($item == "`File`.*") {
|
2008-04-26 08:47:29 +02:00
|
|
|
$fileColumns = DB::query("SHOW FIELDS IN `File`")->column();
|
|
|
|
$columnsToAdd = array_diff($fileColumns, $excludeDbColumns);
|
|
|
|
foreach($columnsToAdd as $otherItem) $dataobject_select[] = '`File`.' . $otherItem;
|
2008-03-07 04:19:49 +01:00
|
|
|
} else {
|
2008-04-26 08:47:29 +02:00
|
|
|
$dataobject_select[] = $item;
|
2008-02-25 03:10:37 +01:00
|
|
|
}
|
|
|
|
}
|
2008-04-26 08:47:29 +02:00
|
|
|
|
|
|
|
$query->select = $dataobject_select;
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
$records = $query->execute();
|
|
|
|
$ret = $this->buildDataObjectSet($records, $containerClass);
|
|
|
|
if($ret) $ret->parseQueryLimit($query);
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
}
|
2008-03-07 04:19:49 +01:00
|
|
|
|
|
|
|
public function flushCache() {
|
|
|
|
parent::flushCache();
|
|
|
|
|
2008-03-09 06:08:08 +01:00
|
|
|
self::$cache_file_fields = null;
|
2008-03-07 04:19:49 +01:00
|
|
|
}
|
2008-04-06 10:20:13 +02:00
|
|
|
|
2008-11-02 21:04:10 +01:00
|
|
|
function fieldLabels() {
|
|
|
|
$labels = parent::fieldLabels();
|
|
|
|
$labels['Name'] = _t('File.Name', 'Name');
|
|
|
|
$labels['Title'] = _t('File.Title', 'Title');
|
|
|
|
$labels['Filename'] = _t('File.Filename', 'Filename');
|
|
|
|
$labels['Filename'] = _t('File.Filename', 'Filename');
|
|
|
|
$labels['Content'] = _t('File.Content', 'Content');
|
|
|
|
$labels['Sort'] = _t('File.Sort', 'Sort Order');
|
|
|
|
|
|
|
|
return $labels;
|
|
|
|
}
|
|
|
|
|
2008-04-06 10:20:13 +02:00
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2008-10-16 13:05:57 +02:00
|
|
|
?>
|