123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532 |
- <?php
- /**
- * Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
- require_once('php-cloudfiles/cloudfiles.php');
- class OC_FileStorage_SWIFT extends OC_Filestorage_Common{
- private $host;
- private $root;
- private $user;
- private $token;
- private $secure;
- /**
- * @var CF_Authentication auth
- */
- private $auth;
- /**
- * @var CF_Connection conn
- */
- private $conn;
- /**
- * @var CF_Container rootContainer
- */
- private $rootContainer;
- private static $tempFiles=array();
- private $objects=array();
- private $containers=array();
- const SUBCONTAINER_FILE='.subcontainers';
- /**
- * translate directory path to container name
- * @param string path
- * @return string
- */
- private function getContainerName($path){
- $path=trim($this->root.$path,'/');
- return str_replace('/','\\',$path);
- }
- /**
- * get container by path
- * @param string path
- * @return CF_Container
- */
- private function getContainer($path){
- if($path=='' or $path=='/'){
- return $this->rootContainer;
- }
- if(isset($this->containers[$path])){
- return $this->containers[$path];
- }
- try{
- $container=$this->conn->get_container($this->getContainerName($path));
- $this->containers[$path]=$container;
- return $container;
- }catch(NoSuchContainerException $e){
- return null;
- }
- }
- /**
- * create container
- * @param string path
- * @return CF_Container
- */
- private function createContainer($path){
- if($path=='' or $path=='/'){
- return $this->conn->create_container($this->getContainerName($path));
- }
- $parent=dirname($path);
- if($parent=='' or $parent=='/'){
- $parentContainer=$this->rootContainer;
- }else{
- if(!$this->containerExists($parent)){
- $parentContainer=$this->createContainer($parent);
- }else{
- $parentContainer=$this->getContainer($parent);
- }
- }
- $this->addSubContainer($parentContainer,basename($path));
- return $this->conn->create_container($this->getContainerName($path));
- }
- /**
- * get object by path
- * @param string path
- * @return CF_Object
- */
- private function getObject($path){
- if(isset($this->objects[$path])){
- return $this->objects[$path];
- }
- $container=$this->getContainer(dirname($path));
- if(is_null($container)){
- return null;
- }else{
- try{
- $obj=$container->get_object(basename($path));
- $this->objects[$path]=$obj;
- return $obj;
- }catch(NoSuchObjectException $e){
- return null;
- }
- }
- }
- /**
- * get the names of all objects in a container
- * @param CF_Container
- * @return array
- */
- private function getObjects($container){
- if(is_null($container)){
- return array();
- }else{
- $files=$container->get_objects();
- foreach($files as &$file){
- $file=$file->name;
- }
- return $files;
- }
- }
- /**
- * create object
- * @param string path
- * @return CF_Object
- */
- private function createObject($path){
- $container=$this->getContainer(dirname($path));
- if(!is_null($container)){
- $container=$this->createContainer($path);
- }
- return $container->create_object(basename($path));
- }
- /**
- * check if an object exists
- * @param string
- * @return bool
- */
- private function objectExists($path){
- return !is_null($this->getObject($path));
- }
- /**
- * check if container for path exists
- * @param string path
- * @return bool
- */
- private function containerExists($path){
- return !is_null($this->getContainer($path));
- }
- /**
- * get the list of emulated sub containers
- * @param CF_Container container
- * @return array
- */
- private function getSubContainers($container){
- $tmpFile=OCP\Files::tmpFile();
- $obj=$this->getSubContainerFile($container);
- try{
- $obj->save_to_filename($tmpFile);
- }catch(Exception $e){
- return array();
- }
- $obj->save_to_filename($tmpFile);
- $containers=file($tmpFile);
- unlink($tmpFile);
- foreach($containers as &$sub){
- $sub=trim($sub);
- }
- return $containers;
- }
- /**
- * add an emulated sub container
- * @param CF_Container container
- * @param string name
- * @return bool
- */
- private function addSubContainer($container,$name){
- if(!$name){
- return false;
- }
- $tmpFile=OCP\Files::tmpFile();
- $obj=$this->getSubContainerFile($container);
- try{
- $obj->save_to_filename($tmpFile);
- $containers=file($tmpFile);
- foreach($containers as &$sub){
- $sub=trim($sub);
- }
- if(array_search($name,$containers)!==false){
- unlink($tmpFile);
- return false;
- }else{
- $fh=fopen($tmpFile,'a');
- fwrite($fh,$name."\n");
- }
- }catch(Exception $e){
- $containers=array();
- file_put_contents($tmpFile,$name."\n");
- }
- $obj->load_from_filename($tmpFile);
- unlink($tmpFile);
- return true;
- }
- /**
- * remove an emulated sub container
- * @param CF_Container container
- * @param string name
- * @return bool
- */
- private function removeSubContainer($container,$name){
- if(!$name){
- return false;
- }
- $tmpFile=OCP\Files::tmpFile();
- $obj=$this->getSubContainerFile($container);
- try{
- $obj->save_to_filename($tmpFile);
- $containers=file($tmpFile);
- }catch(Exception $e){
- return false;
- }
- foreach($containers as &$sub){
- $sub=trim($sub);
- }
- $i=array_search($name,$containers);
- if($i===false){
- unlink($tmpFile);
- return false;
- }else{
- unset($containers[$i]);
- file_put_contents($tmpFile,implode("\n",$containers)."\n");
- }
- $obj->load_from_filename($tmpFile);
- unlink($tmpFile);
- return true;
- }
- /**
- * ensure a subcontainer file exists and return it's object
- * @param CF_Container container
- * @return CF_Object
- */
- private function getSubContainerFile($container){
- try{
- return $container->get_object(self::SUBCONTAINER_FILE);
- }catch(NoSuchObjectException $e){
- return $container->create_object(self::SUBCONTAINER_FILE);
- }
- }
- public function __construct($params){
- $this->token=$params['token'];
- $this->host=$params['host'];
- $this->user=$params['user'];
- $this->root=isset($params['root'])?$params['root']:'/';
- $this->secure=isset($params['secure'])?(bool)$params['secure']:true;
- if(substr($this->root,0,1)!='/'){
- $this->root='/'.$this->root;
- }
- $this->auth = new CF_Authentication($this->user, $this->token, null, $this->host);
- $this->auth->authenticate();
-
- $this->conn = new CF_Connection($this->auth);
- if(!$this->containerExists($this->root)){
- $this->rootContainer=$this->createContainer('/');
- }else{
- $this->rootContainer=$this->getContainer('/');
- }
- }
- public function mkdir($path){
- if($this->containerExists($path)){
- return false;
- }else{
- $this->createContainer($path);
- return true;
- }
- }
- public function rmdir($path){
- if(!$this->containerExists($path)){
- return false;
- }else{
- $this->emptyContainer($path);
- if($path!='' and $path!='/'){
- $parentContainer=$this->getContainer(dirname($path));
- $this->removeSubContainer($parentContainer,basename($path));
- }
-
- $this->conn->delete_container($this->getContainerName($path));
- unset($this->containers[$path]);
- return true;
- }
- }
- private function emptyContainer($path){
- $container=$this->getContainer($path);
- if(is_null($container)){
- return;
- }
- $subContainers=$this->getSubContainers($container);
- foreach($subContainers as $sub){
- if($sub){
- $this->emptyContainer($path.'/'.$sub);
- $this->conn->delete_container($this->getContainerName($path.'/'.$sub));
- unset($this->containers[$path.'/'.$sub]);
- }
- }
- $objects=$this->getObjects($container);
- foreach($objects as $object){
- $container->delete_object($object);
- unset($this->objects[$path.'/'.$object]);
- }
- }
- public function opendir($path){
- $container=$this->getContainer($path);
- $files=$this->getObjects($container);
- $i=array_search(self::SUBCONTAINER_FILE,$files);
- if($i!==false){
- unset($files[$i]);
- }
- $subContainers=$this->getSubContainers($container);
- $files=array_merge($files,$subContainers);
- $id=$this->getContainerName($path);
- OC_FakeDirStream::$dirs[$id]=$files;
- return opendir('fakedir://'.$id);
- }
- public function filetype($path){
- if($this->containerExists($path)){
- return 'dir';
- }else{
- return 'file';
- }
- }
- public function is_readable($path){
- return true;
- }
- public function is_writable($path){
- return true;
- }
- public function file_exists($path){
- if($this->is_dir($path)){
- return true;
- }else{
- return $this->objectExists($path);
- }
- }
- public function file_get_contents($path){
- $obj=$this->getObject($path);
- if(is_null($obj)){
- return false;
- }
- return $obj->read();
- }
- public function file_put_contents($path,$content){
- $obj=$this->getObject($path);
- if(is_null($obj)){
- $container=$this->getContainer(dirname($path));
- if(is_null($container)){
- return false;
- }
- $obj=$container->create_object(basename($path));
- }
- $this->resetMTime($obj);
- return $obj->write($content);
- }
- public function unlink($path){
- if($this->objectExists($path)){
- $container=$this->getContainer(dirname($path));
- $container->delete_object(basename($path));
- unset($this->objects[$path]);
- }else{
- return false;
- }
- }
- public function fopen($path,$mode){
- $obj=$this->getObject($path);
- if(is_null($obj)){
- return false;
- }
- switch($mode){
- case 'r':
- case 'rb':
- $fp = fopen('php://temp', 'r+');
- $obj->stream($fp);
-
- rewind($fp);
- return $fp;
- case 'w':
- case 'wb':
- case 'a':
- case 'ab':
- case 'r+':
- case 'w+':
- case 'wb+':
- case 'a+':
- case 'x':
- case 'x+':
- case 'c':
- case 'c+':
- $tmpFile=$this->getTmpFile($path);
- OC_CloseStreamWrapper::$callBacks[$tmpFile]=array($this,'writeBack');
- self::$tempFiles[$tmpFile]=$path;
- return fopen('close://'.$tmpFile,$mode);
- }
- }
- public function writeBack($tmpFile){
- if(isset(self::$tempFiles[$tmpFile])){
- $this->fromTmpFile($tmpFile,self::$tempFiles[$tmpFile]);
- unlink($tmpFile);
- }
- }
- public function free_space($path){
- return 0;
- }
- public function touch($path,$mtime=null){
- $obj=$this->getObject($path);
- if(is_null($obj)){
- return false;
- }
- if(is_null($mtime)){
- $mtime=time();
- }
-
- //emulate setting mtime with metadata
- $obj->metadata['Mtime']=$mtime;
- $obj->sync_metadata();
- }
- public function rename($path1,$path2){
- $sourceContainer=$this->getContainer(dirname($path1));
- $targetContainer=$this->getContainer(dirname($path2));
- $result=$sourceContainer->move_object_to(basename($path1),$targetContainer,basename($path2));
- unset($this->objects[$path1]);
- if($result){
- $targetObj=$this->getObject($path2);
- $this->resetMTime($targetObj);
- }
- return $result;
- }
- public function copy($path1,$path2){
- $sourceContainer=$this->getContainer(dirname($path1));
- $targetContainer=$this->getContainer(dirname($path2));
- $result=$sourceContainer->copy_object_to(basename($path1),$targetContainer,basename($path2));
- if($result){
- $targetObj=$this->getObject($path2);
- $this->resetMTime($targetObj);
- }
- return $result;
- }
- public function stat($path){
- $obj=$this->getObject($path);
- if(is_null($obj)){
- return false;
- }
- if(isset($obj->metadata['Mtime']) and $obj->metadata['Mtime']>-1){
- $mtime=$obj->metadata['Mtime'];
- }else{
- $mtime=strtotime($obj->last_modified);
- }
- return array(
- 'mtime'=>$mtime,
- 'size'=>$obj->content_length,
- 'ctime'=>-1,
- );
- }
- private function getTmpFile($path){
- $obj=$this->getObject($path);
- if(!is_null($obj)){
- $tmpFile=OCP\Files::tmpFile();
- $obj->save_to_filename($tmpFile);
- return $tmpFile;
- }else{
- return false;
- }
- }
- private function fromTmpFile($tmpFile,$path){
- $obj=$this->getObject($path);
- if(is_null($obj)){
- $obj=$this->createObject($path);
- }
- $obj->load_from_filename($tmpFile);
- $this->resetMTime($obj);
- }
- /**
- * remove custom mtime metadata
- * @param CF_Object obj
- */
- private function resetMTime($obj){
- if(isset($obj->metadata['Mtime'])){
- $obj->metadata['Mtime']=-1;
- $obj->sync_metadata();
- }
- }
- }
|