2010-03-10 15:03:40 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
2010-05-04 00:26:34 +04:00
|
|
|
* @author Frank Karlitschek
|
|
|
|
* @copyright 2010 Frank Karlitschek karlitschek@kde.org
|
|
|
|
*
|
2010-03-10 15:03:40 +03:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
2010-05-04 00:26:34 +04:00
|
|
|
* License as published by the Free Software Foundation; either
|
2010-03-10 15:03:40 +03:00
|
|
|
* version 3 of the License, or any later version.
|
2010-05-04 00:26:34 +04:00
|
|
|
*
|
2010-03-10 15:03:40 +03:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
2010-05-04 00:26:34 +04:00
|
|
|
*
|
2011-02-09 17:50:27 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public
|
2010-03-10 15:03:40 +03:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2010-05-04 00:26:34 +04:00
|
|
|
*
|
2010-03-10 15:03:40 +03:00
|
|
|
*/
|
|
|
|
|
2011-04-16 12:12:53 +04:00
|
|
|
require_once("log.php");
|
2010-03-10 15:03:40 +03:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class for fileserver access
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class OC_FILES {
|
2010-05-08 00:50:59 +04:00
|
|
|
static $tmpFiles=array();
|
2010-04-25 16:21:04 +04:00
|
|
|
/**
|
|
|
|
* show a web GUI filebrowser
|
|
|
|
*
|
|
|
|
* @param basedir $basedir
|
|
|
|
* @param dir $dir
|
|
|
|
*/
|
2010-07-10 21:57:46 +04:00
|
|
|
public static function showBrowser($basedir,$dir){
|
2010-04-25 16:21:04 +04:00
|
|
|
echo '<div id="content"></div>';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the content of a directory
|
|
|
|
* @param dir $directory
|
|
|
|
*/
|
2010-07-10 21:57:46 +04:00
|
|
|
public static function getDirectoryContent($directory){
|
2010-05-08 00:50:59 +04:00
|
|
|
global $CONFIG_DATADIRECTORY;
|
|
|
|
if(strpos($directory,$CONFIG_DATADIRECTORY)===0){
|
|
|
|
$directory=substr($directory,strlen($CONFIG_DATADIRECTORY));
|
|
|
|
}
|
2010-04-25 16:21:04 +04:00
|
|
|
$filesfound=true;
|
|
|
|
$content=array();
|
|
|
|
$dirs=array();
|
|
|
|
$file=array();
|
|
|
|
$files=array();
|
2010-07-07 14:30:30 +04:00
|
|
|
if(OC_FILESYSTEM::is_dir($directory)) {
|
2010-05-08 00:50:59 +04:00
|
|
|
if ($dh = OC_FILESYSTEM::opendir($directory)) {
|
2010-04-25 16:21:04 +04:00
|
|
|
while (($filename = readdir($dh)) !== false) {
|
2010-05-08 00:50:59 +04:00
|
|
|
if($filename<>'.' and $filename<>'..' and substr($filename,0,1)!='.'){
|
|
|
|
$file=array();
|
|
|
|
$filesfound=true;
|
|
|
|
$file['name']=$filename;
|
|
|
|
$file['directory']=$directory;
|
|
|
|
$stat=OC_FILESYSTEM::stat($directory.'/'.$filename);
|
|
|
|
$file=array_merge($file,$stat);
|
2011-04-16 19:07:44 +04:00
|
|
|
$file['size']=OC_FILESYSTEM::filesize($directory.'/'.$filename);
|
2010-05-08 00:50:59 +04:00
|
|
|
$file['mime']=OC_FILES::getMimeType($directory .'/'. $filename);
|
2010-05-11 22:35:29 +04:00
|
|
|
$file['readable']=OC_FILESYSTEM::is_readable($directory .'/'. $filename);
|
|
|
|
$file['writeable']=OC_FILESYSTEM::is_writeable($directory .'/'. $filename);
|
2010-05-08 00:50:59 +04:00
|
|
|
$file['type']=OC_FILESYSTEM::filetype($directory .'/'. $filename);
|
|
|
|
if($file['type']=='dir'){
|
|
|
|
$dirs[$file['name']]=$file;
|
|
|
|
}else{
|
|
|
|
$files[$file['name']]=$file;
|
|
|
|
}
|
2010-04-25 16:21:04 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir($dh);
|
|
|
|
}
|
|
|
|
}
|
2011-04-19 01:52:55 +04:00
|
|
|
uksort($dirs, "strnatcasecmp");
|
|
|
|
uksort($files, "strnatcasecmp");
|
2010-04-25 16:21:04 +04:00
|
|
|
$content=array_merge($dirs,$files);
|
|
|
|
if($filesfound){
|
|
|
|
return $content;
|
|
|
|
}else{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* return the content of a file or return a zip file containning multiply files
|
|
|
|
*
|
|
|
|
* @param dir $dir
|
2011-04-18 17:02:10 +04:00
|
|
|
* @param file $file ; seperated list of files to download
|
2010-04-25 16:21:04 +04:00
|
|
|
*/
|
|
|
|
public static function get($dir,$files){
|
2010-05-02 01:09:36 +04:00
|
|
|
if(strpos($files,';')){
|
|
|
|
$files=explode(';',$files);
|
|
|
|
}
|
2011-04-18 17:36:56 +04:00
|
|
|
echo 't';
|
2010-04-25 16:21:04 +04:00
|
|
|
if(is_array($files)){
|
|
|
|
$zip = new ZipArchive();
|
|
|
|
$filename = sys_get_temp_dir()."/ownCloud.zip";
|
|
|
|
if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) {
|
|
|
|
exit("cannot open <$filename>\n");
|
|
|
|
}
|
|
|
|
foreach($files as $file){
|
2010-05-08 00:50:59 +04:00
|
|
|
$file=$dir.'/'.$file;
|
|
|
|
if(OC_FILESYSTEM::is_file($file)){
|
|
|
|
$tmpFile=OC_FILESYSTEM::toTmpFile($file);
|
|
|
|
self::$tmpFiles[]=$tmpFile;
|
|
|
|
$zip->addFile($tmpFile,basename($file));
|
|
|
|
}elseif(OC_FILESYSTEM::is_dir($file)){
|
2010-04-25 16:21:04 +04:00
|
|
|
zipAddDir($file,$zip);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$zip->close();
|
2010-05-08 00:50:59 +04:00
|
|
|
}elseif(OC_FILESYSTEM::is_dir($dir.'/'.$files)){
|
2010-04-25 16:21:04 +04:00
|
|
|
$zip = new ZipArchive();
|
|
|
|
$filename = sys_get_temp_dir()."/ownCloud.zip";
|
|
|
|
if ($zip->open($filename, ZIPARCHIVE::CREATE)!==TRUE) {
|
|
|
|
exit("cannot open <$filename>\n");
|
|
|
|
}
|
2010-05-08 00:50:59 +04:00
|
|
|
$file=$dir.'/'.$files;
|
2010-04-25 16:21:04 +04:00
|
|
|
zipAddDir($file,$zip);
|
|
|
|
$zip->close();
|
|
|
|
}else{
|
|
|
|
$zip=false;
|
2010-05-08 00:50:59 +04:00
|
|
|
$filename=$dir.'/'.$files;
|
2010-04-25 16:21:04 +04:00
|
|
|
}
|
2010-06-25 15:24:27 +04:00
|
|
|
if($zip or OC_FILESYSTEM::is_readable($filename)){
|
2011-04-18 17:39:29 +04:00
|
|
|
header('Content-Disposition: attachment; filename='.basename($filename));
|
2010-06-25 15:24:27 +04:00
|
|
|
header('Content-Transfer-Encoding: binary');
|
|
|
|
header('Expires: 0');
|
|
|
|
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
|
|
|
|
header('Pragma: public');
|
2010-07-07 14:30:30 +04:00
|
|
|
if($zip){
|
2010-09-26 21:09:16 +04:00
|
|
|
header('Content-Type: application/zip');
|
2010-07-07 14:30:30 +04:00
|
|
|
header('Content-Length: ' . filesize($filename));
|
|
|
|
}else{
|
2010-09-26 21:09:16 +04:00
|
|
|
header('Content-Type: ' . OC_FILESYSTEM::getMimeType($filename));
|
2010-07-07 14:30:30 +04:00
|
|
|
header('Content-Length: ' . OC_FILESYSTEM::filesize($filename));
|
|
|
|
}
|
2010-06-25 15:24:27 +04:00
|
|
|
}elseif($zip or !OC_FILESYSTEM::file_exists($filename)){
|
|
|
|
header("HTTP/1.0 404 Not Found");
|
2011-04-18 15:16:32 +04:00
|
|
|
$tmpl = new OC_TEMPLATE( '', '404', 'guest' );
|
|
|
|
$tmpl->assign('file',$filename);
|
|
|
|
$tmpl->printPage();
|
|
|
|
// die('404 Not Found');
|
2010-06-25 15:24:27 +04:00
|
|
|
}else{
|
|
|
|
header("HTTP/1.0 403 Forbidden");
|
|
|
|
die('403 Forbidden');
|
2010-05-08 00:50:59 +04:00
|
|
|
}
|
2010-04-25 16:21:04 +04:00
|
|
|
ob_end_clean();
|
2011-04-18 17:36:56 +04:00
|
|
|
// OC_LOG::event($_SESSION['username'],3,"$dir/$files");
|
2010-06-25 15:24:27 +04:00
|
|
|
if($zip){
|
|
|
|
readfile($filename);
|
|
|
|
unlink($filename);
|
|
|
|
}else{
|
|
|
|
OC_FILESYSTEM::readfile($filename);
|
|
|
|
}
|
2010-05-08 00:50:59 +04:00
|
|
|
foreach(self::$tmpFiles as $tmpFile){
|
|
|
|
if(file_exists($tmpFile) and is_file($tmpFile)){
|
|
|
|
unlink($tmpFile);
|
|
|
|
}
|
2010-04-25 16:21:04 +04:00
|
|
|
}
|
|
|
|
}
|
2010-05-04 00:26:34 +04:00
|
|
|
|
2010-04-25 16:21:04 +04:00
|
|
|
/**
|
|
|
|
* move a file or folder
|
|
|
|
*
|
|
|
|
* @param dir $sourceDir
|
|
|
|
* @param file $source
|
|
|
|
* @param dir $targetDir
|
|
|
|
* @param file $target
|
|
|
|
*/
|
|
|
|
public static function move($sourceDir,$source,$targetDir,$target){
|
2010-05-08 00:50:59 +04:00
|
|
|
if(OC_USER::isLoggedIn()){
|
|
|
|
$targetFile=$targetDir.'/'.$target;
|
|
|
|
$sourceFile=$sourceDir.'/'.$source;
|
2010-05-11 22:35:29 +04:00
|
|
|
return OC_FILESYSTEM::rename($sourceFile,$targetFile);
|
|
|
|
}
|
|
|
|
}
|
2010-05-04 00:26:34 +04:00
|
|
|
|
2010-05-11 22:35:29 +04:00
|
|
|
/**
|
|
|
|
* copy a file or folder
|
|
|
|
*
|
|
|
|
* @param dir $sourceDir
|
|
|
|
* @param file $source
|
|
|
|
* @param dir $targetDir
|
|
|
|
* @param file $target
|
|
|
|
*/
|
|
|
|
public static function copy($sourceDir,$source,$targetDir,$target){
|
|
|
|
if(OC_USER::isLoggedIn()){
|
|
|
|
$targetFile=$targetDir.'/'.$target;
|
|
|
|
$sourceFile=$sourceDir.'/'.$source;
|
|
|
|
return OC_FILESYSTEM::copy($sourceFile,$targetFile);
|
2010-04-25 16:21:04 +04:00
|
|
|
}
|
|
|
|
}
|
2010-05-04 00:26:34 +04:00
|
|
|
|
2010-04-25 16:21:04 +04:00
|
|
|
/**
|
|
|
|
* create a new file or folder
|
|
|
|
*
|
|
|
|
* @param dir $dir
|
|
|
|
* @param file $name
|
|
|
|
* @param type $type
|
|
|
|
*/
|
2010-07-10 21:57:46 +04:00
|
|
|
public static function newFile($dir,$name,$type){
|
2010-05-08 00:50:59 +04:00
|
|
|
if(OC_USER::isLoggedIn()){
|
|
|
|
$file=$dir.'/'.$name;
|
2010-04-25 16:21:04 +04:00
|
|
|
if($type=='dir'){
|
2010-05-11 22:35:29 +04:00
|
|
|
return OC_FILESYSTEM::mkdir($file);
|
2010-04-25 16:21:04 +04:00
|
|
|
}elseif($type=='file'){
|
2010-05-11 22:35:29 +04:00
|
|
|
$fileHandle=OC_FILESYSTEM::fopen($file, 'w');
|
|
|
|
if($fileHandle){
|
|
|
|
fclose($fileHandle);
|
2011-04-18 17:36:56 +04:00
|
|
|
// OC_LOG::event($_SESSION['username'],4,"$dir/$name");
|
2010-05-11 22:35:29 +04:00
|
|
|
return true;
|
|
|
|
}else{
|
|
|
|
return false;
|
|
|
|
}
|
2010-04-25 16:21:04 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-05-04 00:26:34 +04:00
|
|
|
|
2010-04-25 16:21:04 +04:00
|
|
|
/**
|
|
|
|
* deletes a file or folder
|
|
|
|
*
|
|
|
|
* @param dir $dir
|
|
|
|
* @param file $name
|
|
|
|
*/
|
|
|
|
public static function delete($dir,$file){
|
2010-05-08 00:50:59 +04:00
|
|
|
if(OC_USER::isLoggedIn()){
|
|
|
|
$file=$dir.'/'.$file;
|
|
|
|
if(OC_FILESYSTEM::is_file($file)){
|
2010-05-11 22:35:29 +04:00
|
|
|
return OC_FILESYSTEM::unlink($file);
|
2010-05-08 00:50:59 +04:00
|
|
|
}elseif(OC_FILESYSTEM::is_dir($file)){
|
2010-05-11 22:35:29 +04:00
|
|
|
return OC_FILESYSTEM::delTree($file);
|
2010-04-25 16:21:04 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-05-04 00:26:34 +04:00
|
|
|
|
2010-04-25 17:04:13 +04:00
|
|
|
/**
|
|
|
|
* try to detect the mime type of a file
|
|
|
|
*
|
2010-05-08 00:50:59 +04:00
|
|
|
* @param string path
|
2010-04-25 17:04:13 +04:00
|
|
|
* @return string guessed mime type
|
|
|
|
*/
|
2010-05-10 18:55:30 +04:00
|
|
|
static function getMimeType($path){
|
2010-05-08 00:50:59 +04:00
|
|
|
return OC_FILESYSTEM::getMimeType($path);
|
2010-04-25 20:27:02 +04:00
|
|
|
}
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2010-07-07 14:30:30 +04:00
|
|
|
/**
|
|
|
|
* get a file tree
|
|
|
|
*
|
|
|
|
* @param string path
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
static function getTree($path){
|
|
|
|
return OC_FILESYSTEM::getTree($path);
|
|
|
|
}
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2010-07-06 14:50:37 +04:00
|
|
|
/**
|
|
|
|
* pull a file from a remote server
|
|
|
|
* @param string source
|
|
|
|
* @param string token
|
|
|
|
* @param string dir
|
|
|
|
* @param string file
|
|
|
|
* @return string guessed mime type
|
|
|
|
*/
|
|
|
|
static function pull($source,$token,$dir,$file){
|
|
|
|
$tmpfile=tempnam(sys_get_temp_dir(),'remoteCloudFile');
|
|
|
|
$fp=fopen($tmpfile,'w+');
|
|
|
|
$url=$source.="/files/pull.php?token=$token";
|
|
|
|
$ch=curl_init();
|
|
|
|
curl_setopt($ch,CURLOPT_URL,$url);
|
|
|
|
curl_setopt($ch, CURLOPT_FILE, $fp);
|
|
|
|
curl_exec($ch);
|
|
|
|
fclose($fp);
|
|
|
|
$info=curl_getinfo($ch);
|
|
|
|
$httpCode=$info['http_code'];
|
|
|
|
curl_close($ch);
|
|
|
|
if($httpCode==200 or $httpCode==0){
|
|
|
|
OC_FILESYSTEM::fromTmpFile($tmpfile,$dir.'/'.$file);
|
|
|
|
return true;
|
|
|
|
}else{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2011-05-29 19:43:13 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* set the maximum upload size limit for apache hosts using .htaccess
|
|
|
|
* @param int size filesisze in bytes
|
|
|
|
*/
|
|
|
|
static function setUploadLimit($size){
|
|
|
|
global $SERVERROOT;
|
|
|
|
global $WEBROOT;
|
|
|
|
$size=OC_HELPER::humanFileSize($size);
|
|
|
|
echo $size;
|
|
|
|
$size=substr($size,0,-1);//strip the B
|
|
|
|
$size=str_replace(' ','',$size); //remove the space between the size and the postfix
|
|
|
|
$content = "ErrorDocument 404 /$WEBROOT/templates/404.php\n";//custom 404 error page
|
|
|
|
$content.= "php_value upload_max_filesize $size\n";//upload limit
|
|
|
|
$content.= "php_value post_max_size $size\n";
|
|
|
|
$content.= "SetEnv htaccessWorking true\n";
|
|
|
|
@file_put_contents($SERVERROOT.'/.htaccess', $content); //supress errors in case we don't have permissions for it
|
|
|
|
}
|
2010-04-25 16:21:04 +04:00
|
|
|
}
|
2010-03-10 15:03:40 +03:00
|
|
|
|
2010-04-25 16:21:04 +04:00
|
|
|
function zipAddDir($dir,$zip,$internalDir=''){
|
|
|
|
$dirname=basename($dir);
|
|
|
|
$zip->addEmptyDir($internalDir.$dirname);
|
|
|
|
$internalDir.=$dirname.='/';
|
|
|
|
$files=OC_FILES::getdirectorycontent($dir);
|
|
|
|
foreach($files as $file){
|
|
|
|
$filename=$file['name'];
|
|
|
|
$file=$dir.'/'.$filename;
|
2010-05-08 00:50:59 +04:00
|
|
|
if(OC_FILESYSTEM::is_file($file)){
|
|
|
|
$tmpFile=OC_FILESYSTEM::toTmpFile($file);
|
|
|
|
OC_FILES::$tmpFiles[]=$tmpFile;
|
|
|
|
$zip->addFile($tmpFile,$internalDir.$filename);
|
|
|
|
}elseif(OC_FILESYSTEM::is_dir($file)){
|
2010-04-25 16:21:04 +04:00
|
|
|
zipAddDir($file,$zip,$internalDir);
|
2010-03-10 15:03:40 +03:00
|
|
|
}
|
2010-03-24 18:35:24 +03:00
|
|
|
}
|
2010-04-25 16:21:04 +04:00
|
|
|
}
|
2010-03-10 15:03:40 +03:00
|
|
|
|
2010-04-25 16:21:04 +04:00
|
|
|
if(!function_exists('sys_get_temp_dir')) {
|
|
|
|
function sys_get_temp_dir() {
|
|
|
|
if( $temp=getenv('TMP') ) return $temp;
|
|
|
|
if( $temp=getenv('TEMP') ) return $temp;
|
|
|
|
if( $temp=getenv('TMPDIR') ) return $temp;
|
|
|
|
$temp=tempnam(__FILE__,'');
|
|
|
|
if (file_exists($temp)) {
|
|
|
|
unlink($temp);
|
|
|
|
return dirname($temp);
|
|
|
|
}
|
|
|
|
return null;
|
2010-03-10 15:03:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-07 14:30:30 +04:00
|
|
|
global $FAKEDIRS;
|
|
|
|
$FAKEDIRS=array();
|
|
|
|
|
|
|
|
class fakeDirStream{
|
|
|
|
private $name;
|
|
|
|
private $data;
|
|
|
|
private $index;
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2010-07-07 14:30:30 +04:00
|
|
|
public function dir_opendir($path,$options){
|
|
|
|
global $FAKEDIRS;
|
|
|
|
$url=parse_url($path);
|
|
|
|
$this->name=substr($path,strlen('fakedir://'));
|
|
|
|
$this->index=0;
|
|
|
|
if(isset($FAKEDIRS[$this->name])){
|
|
|
|
$this->data=$FAKEDIRS[$this->name];
|
|
|
|
}else{
|
|
|
|
$this->data=array();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2010-07-07 14:30:30 +04:00
|
|
|
public function dir_readdir(){
|
|
|
|
if($this->index>=count($this->data)){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$filename=$this->data[$this->index];
|
|
|
|
$this->index++;
|
|
|
|
return $filename;
|
|
|
|
}
|
2011-03-02 01:20:16 +03:00
|
|
|
|
2010-07-07 14:30:30 +04:00
|
|
|
public function dir_closedir() {
|
|
|
|
$this->data=false;
|
|
|
|
$this->name='';
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dir_rewinddir() {
|
|
|
|
$this->index=0;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stream_wrapper_register("fakedir", "fakeDirStream");
|
2011-04-19 01:52:55 +04:00
|
|
|
?>
|