4 include_once
'./Services/FileSystem/classes/class.ilFileSystemStorage.php';
34 return 'ilRestFileStorage';
60 $GLOBALS[
'ilLog']->write(__METHOD__.
' original name: '.$this->getPath().
'/'.$name);
62 $real_path = realpath($this->
getPath().
'/'.$name);
65 $GLOBALS[
'ilLog']->write(__METHOD__.
' no realpath found for: '.$this->getPath().
'/'.$name);
69 $file_name = basename($real_path);
70 $GLOBALS[
'ilLog']->write(__METHOD__.
' translated name: '.$this->getPath().
'/'.$file_name);
73 is_file($this->
getPath().
'/'.$file_name) &&
74 file_exists($this->
getPath().
'/'.$file_name)
77 $GLOBALS[
'ilLog']->write(__METHOD__.
' delivering file: ' . $this->getPath().
'/'.$file_name);
78 $return = file_get_contents($this->
getPath().
'/'.$file_name);
94 $GLOBALS[
'ilLog']->write(__METHOD__.
' file not found.');
107 $body = $request->post(
"content");
113 $return = basename($tmpname);
115 $GLOBALS[
'ilLog']->write(__METHOD__.
' Writing to path '.
$path);
127 return basename($tmpname);
132 return $this->
getPath().
'/'.$tmpname;
140 $max_age = time() - self::AVAILABILITY_IN_DAYS * 24 * 60 * 60;
142 foreach($ite as
$file)
144 if($file->getCTime() <= $max_age)
147 @unlink($file->getPathname());
150 $GLOBALS[
'ilLog']->write(__METHOD__.
' '. $e->getMessage());
static getInstance( $name='default')
Get Slim application with name.
createFile()
Get file by md5 hash.
init()
init and create directory
deleteDeprecated()
Delete deprecated files.
getStoredFilePath($tmpname)
getFile($name)
Get file by md5 hash.
getPathPostfix()
Get path prefix.
create()
Create directory.
writeToFile($a_data, $a_absolute_path)
Write data to file.
__construct()
Constructor.
const AVAILABILITY_IN_DAYS
storeFileForRest($content)
getPathPrefix()
Get path prefix.
static ilTempnam()
Create a temporary file in an ILIAS writable directory.
responeNotFound()
Send not found response.