diff options
-rw-r--r-- | db_structure.xml | 12 | ||||
-rw-r--r-- | lib/filecache.php | 15 |
2 files changed, 19 insertions, 8 deletions
diff --git a/db_structure.xml b/db_structure.xml index 5ef22b595cf..8e59a59c6e5 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -151,8 +151,16 @@ <length>1</length> </field> -<!-- <index> - <name>fscache_path_index</name> + <field> + <name>writable</name> + <type>integer</type> + <default>0</default> + <notnull>true</notnull> + <length>1</length> + </field> + + <!--<index> + <name>fscache_path_index</name> <unique>true</unique> <field> <name>path</name> diff --git a/lib/filecache.php b/lib/filecache.php index c51fee60bfe..e3f7fedeecf 100644 --- a/lib/filecache.php +++ b/lib/filecache.php @@ -57,7 +57,7 @@ class OC_FileCache{ $root=''; } $path=$root.$path; - $query=OC_DB::prepare('SELECT ctime,mtime,mimetype,size,encrypted,versioned FROM *PREFIX*fscache WHERE path=?'); + $query=OC_DB::prepare('SELECT ctime,mtime,mimetype,size,encrypted,versioned,writable FROM *PREFIX*fscache WHERE path=?'); $result=$query->execute(array($path))->fetchRow(); if(is_array($result)){ return $result; @@ -101,8 +101,8 @@ class OC_FileCache{ } $mimePart=dirname($data['mimetype']); $user=OC_User::getUser(); - $query=OC_DB::prepare('INSERT INTO *PREFIX*fscache(parent, name, path, size, mtime, ctime, mimetype, mimepart,user) VALUES(?,?,?,?,?,?,?,?,?)'); - $query->execute(array($parent,basename($path),$path,$data['size'],$data['mtime'],$data['ctime'],$data['mimetype'],$mimePart,$user)); + $query=OC_DB::prepare('INSERT INTO *PREFIX*fscache(parent, name, path, size, mtime, ctime, mimetype, mimepart,user,writable) VALUES(?,?,?,?,?,?,?,?,?,?)'); + $query->execute(array($parent,basename($path),$path,$data['size'],$data['mtime'],$data['ctime'],$data['mimetype'],$mimePart,$user,$data['writable'])); } @@ -114,7 +114,7 @@ class OC_FileCache{ private static function update($id,$data){ $arguments=array(); $queryParts=array(); - foreach(array('size','mtime','ctime','mimetype','encrypted','versioned') as $attribute){ + foreach(array('size','mtime','ctime','mimetype','encrypted','versioned','writable') as $attribute){ if(isset($data[$attribute])){ $arguments[]=$data[$attribute]; $queryParts[]=$attribute.'=?'; @@ -226,7 +226,7 @@ class OC_FileCache{ } $path=$root.$path; $parent=self::getFileId($path); - $query=OC_DB::prepare('SELECT name,ctime,mtime,mimetype,size,encrypted,versioned FROM *PREFIX*fscache WHERE parent=?'); + $query=OC_DB::prepare('SELECT name,ctime,mtime,mimetype,size,encrypted,versioned,writable FROM *PREFIX*fscache WHERE parent=?'); $result=$query->execute(array($parent))->fetchAll(); if(is_array($result)){ return $result; @@ -309,7 +309,8 @@ class OC_FileCache{ } $mtime=$view->filemtime($path); $ctime=$view->filectime($path); - self::put($path,array('size'=>$size,'mtime'=>$mtime,'ctime'=>$ctime,'mimetype'=>$mimetype)); + $writable=$view->is_writable($path); + self::put($path,array('size'=>$size,'mtime'=>$mtime,'ctime'=>$ctime,'mimetype'=>$mimetype,'writable'=>$writable)); }else{ self::scan($path,null,0,$root); } @@ -450,7 +451,9 @@ class OC_FileCache{ if(!$view->is_readable($path)) return; //cant read, nothing we can do $stat=$view->stat($path); $mimetype=$view->getMimeType($path); + $writable=$view->is_writable($path); $stat['mimetype']=$mimetype; + $stat['writable']=$writable; if($path=='/'){ $path=''; } |