5 include_once(
"./Services/Object/classes/class.ilObjectAccess.php");
46 $commands[] = array(
"permission" =>
"read",
"cmd" =>
"sendfile",
"lang_var" =>
"download",
"default" =>
true);
47 $commands[] = array(
"permission" =>
"write",
"cmd" =>
"edit",
"lang_var" =>
"edit_content");
48 $commands[] = array(
"permission" =>
"write",
"cmd" =>
"versions",
"lang_var" =>
"versions");
60 $t_arr = explode(
"_", $a_target);
63 if(isset($t_arr[2]) && $t_arr[2] ==
"wsp")
65 include_once
"Services/PersonalWorkspace/classes/class.ilSharedResourceGUI.php";
69 if ($t_arr[0] !=
"file" || ((
int) $t_arr[1]) <= 0)
74 if ($ilAccess->checkAccess(
"visible",
"", $t_arr[1]))
89 $q =
"SELECT * FROM file_data WHERE file_id = ".$ilDB->quote($a_id ,
'integer');
90 $r = $ilDB->query($q);
103 $q =
"SELECT version FROM file_data WHERE file_id = ".$ilDB->quote($a_id ,
'integer');
104 $r = $ilDB->query($q);
118 $q =
"SELECT file_size FROM file_data WHERE file_id = ".$ilDB->quote($a_id ,
'integer');
119 $r = $ilDB->query($q);
137 $q =
"SELECT * FROM file_data WHERE file_id = ".$ilDB->quote($a_id ,
'integer');
138 $r = $ilDB->query($q);
141 require_once(
'Modules/File/classes/class.ilFSStorageFile.php');
143 $file = $fss->getAbsolutePath().
'/'.
$row->file_name;
145 if (@!is_file(
$file))
148 $file = $fss->getAbsolutePath().
'/'.$version_subdir.
'/'.
$row->file_name;
169 include_once(
'Modules/File/classes/class.ilFSStorageFile.php');
174 $q =
"SELECT * FROM object_data WHERE obj_id = ".$ilDB->quote($a_id ,
'integer');
175 $r = $ilDB->query($q);
177 require_once
'Modules/File/classes/class.ilObjFile.php';
178 return self::_getFileExtension(
$row->title);
189 include_once(
'Modules/File/classes/class.ilFSStorageFile.php');
191 $dir = $fileStorage->getAbsolutePath();
201 if (self::$_inlineFileExtensionsArray === null)
203 require_once
'Services/Administration/classes/class.ilSetting.php';
204 $settings =
new ilSetting(
'file_access');
205 self::$_inlineFileExtensionsArray = preg_split(
'/ /', $settings->get(
'inline_file_extensions'), -1, PREG_SPLIT_NO_EMPTY);
207 $extension = self::_getFileExtension($a_file_name);
208 return in_array($extension, self::$_inlineFileExtensionsArray);
224 if (preg_match(
'/\.([a-z0-9]+)\z/i',$a_file_name,$matches) == 1)
226 return strtolower($matches[1]);
245 return substr($a_file_name,0,1) ==
'.' ||
246 substr($a_file_name,-1,1) ==
'~' ||
247 substr($a_file_name,0,2) ==
'~$' ||
248 $a_file_name ==
'Thumbs.db';
285 if (strlen($extension) > 0)
287 $extension =
'.'.$extension;
288 $filenameWithoutExtension= substr($a_file_name, 0, -strlen($extension));
292 $filenameWithoutExtension= $a_file_name;
299 $nthCopyRegex = preg_replace(
'/([\^$.\[\]|()?*+{}])/',
'\\\\${1}',
' '.$lng->txt(
'copy_n_of_suffix'));
300 $nthCopyRegex =
'/'.preg_replace(
'/%1\\\\\$s/',
'([0-9]+)', $nthCopyRegex).
'$/';
304 if (preg_match($nthCopyRegex, $filenameWithoutExtension, $matches))
307 $filenameWithoutCopy = substr($filenameWithoutExtension, 0, -strlen($matches[0]));
308 if ($nth_copy == null)
310 $nth_copy = $matches[1]+1;
313 else if (substr($filenameWithoutExtension,-strlen(
' '.$lng->txt(
'copy_of_suffix'))) ==
' '.$lng->txt(
'copy_of_suffix'))
316 $filenameWithoutCopy = substr($filenameWithoutExtension, 0, -strlen(
' '.$lng->txt(
'copy_of_suffix')));
317 if ($nth_copy == null)
325 $filenameWithoutCopy = $filenameWithoutExtension;
326 if ($nth_copy == null)
337 $newFilename = $filenameWithoutCopy.sprintf(
' '.$lng->txt(
'copy_n_of_suffix'), $nth_copy).$extension;
342 $newFilename = $filenameWithoutCopy.
' '.$lng->txt(
'copy_of_suffix').$extension;
353 include_once(
"./Services/Link/classes/class.ilLink.php");
361 self::$preload_list_gui_data = array();
363 $set = $ilDB->query(
"SELECT obj_id,max(hdate) latest".
365 " WHERE obj_type = ".$ilDB->quote(
"file",
"text").
366 " AND ".$ilDB->in(
"obj_id", $a_obj_ids,
"",
"integer").
368 while(
$row = $ilDB->fetchAssoc($set))
370 self::$preload_list_gui_data[
$row[
"obj_id"]][
"date"] = $row[
"latest"];
373 $set = $ilDB->query(
"SELECT file_size,version,file_id".
375 " WHERE ".$ilDB->in(
"file_id", $a_obj_ids,
"",
"integer"));
376 while(
$row = $ilDB->fetchAssoc($set))
378 self::$preload_list_gui_data[
$row[
"file_id"]][
"size"] = $row[
"file_size"];
379 self::$preload_list_gui_data[$row[
"file_id"]][
"version"] = $row[
"version"];
385 if(isset(self::$preload_list_gui_data[$a_obj_id]))
387 return self::$preload_list_gui_data[$a_obj_id];
_lookupFileData($a_id)
looks up the file_data for the file object with the specified object id as an associative array...
_checkGoto($a_target)
check whether goto script will succeed
static $_inlineFileExtensionsArray
Contains an array of extensions separated by space.
_getCommands()
get commands
static _getPermanentDownloadLink($ref_id)
Gets the permanent download link for the file.
static _isFileInline($a_file_name)
Returns true, if the specified file shall be displayed inline in the browser.
static _getStaticLink($a_ref_id, $a_type='', $a_fallback_goto=true, $append="")
Get static link.
_lookupSuffix($a_id)
lookup suffix
static _isFileHidden($a_file_name)
Returns true, if a file with the specified name, is usually hidden from the user. ...
static _getFileExtension($a_file_name)
Gets the file extension of the specified file name.
Access class for file objects.
_lookupVersion($a_id)
lookup version
const DB_FETCHMODE_OBJECT
static _appendNumberOfCopyToFilename($a_file_name, $nth_copy=null)
Appends the text " - Copy" to a filename in the language of the current user.
static _lookupFileSize($a_id)
Quickly looks up the file size from the database and returns the number of bytes. ...
static $preload_list_gui_data
static hasAccess($a_node_id, $a_is_portfolio=false)
static _lookupFileSizeFromFilesystem($a_id)
Looks up the file size by retrieving it from the filesystem.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static dirsize($directory)
get size of a directory or a file.
_lookupDiskUsage($a_id)
Returns the number of bytes used on the harddisk by the file object with the specified object id...
_preloadData($a_obj_ids, $a_ref_ids)
static getListGUIData($a_obj_id)