nextcloud/apps/files_external/lib/webdav.php

338 lines
8.6 KiB
PHP
Raw Normal View History

2012-03-23 21:54:38 +04:00
<?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.
*/
2012-09-07 20:30:48 +04:00
namespace OC\Files\Storage;
class DAV extends \OC\Files\Storage\Common{
2012-03-23 21:54:38 +04:00
private $password;
private $user;
private $host;
private $secure;
private $root;
private $ready;
2012-03-23 21:54:38 +04:00
/**
* @var \Sabre_DAV_Client
2012-03-23 21:54:38 +04:00
*/
private $client;
private static $tempFiles=array();
2012-08-29 10:42:49 +04:00
2012-09-07 17:22:01 +04:00
public function __construct($params) {
if (isset($params['host']) && isset($params['user']) && isset($params['password'])) {
$host = $params['host'];
//remove leading http[s], will be generated in createBaseUri()
if (substr($host, 0, 8) == "https://") $host = substr($host, 8);
else if (substr($host, 0, 7) == "http://") $host = substr($host, 7);
$this->host=$host;
$this->user=$params['user'];
$this->password=$params['password'];
if (isset($params['secure'])) {
if (is_string($params['secure'])) {
$this->secure = ($params['secure'] === 'true');
} else {
$this->secure = (bool)$params['secure'];
}
} else {
$this->secure = false;
}
$this->root=isset($params['root'])?$params['root']:'/';
if ( ! $this->root || $this->root[0]!='/') {
$this->root='/'.$this->root;
}
if (substr($this->root, -1, 1)!='/') {
$this->root.='/';
}
} else {
throw new \Exception();
2012-03-23 21:54:38 +04:00
}
}
private function init(){
if($this->ready){
return;
}
$this->ready = true;
2012-08-29 10:42:49 +04:00
$settings = array(
'baseUri' => $this->createBaseUri(),
'userName' => $this->user,
'password' => $this->password,
);
2012-03-23 21:54:38 +04:00
2013-01-15 17:57:23 +04:00
$this->client = new \Sabre_DAV_Client($settings);
2012-08-29 10:42:49 +04:00
$caview = \OCP\Files::getStorage('files_external');
if ($caview) {
2012-07-09 11:40:33 +04:00
$certPath=\OCP\Config::getSystemValue('datadirectory').$caview->getAbsolutePath("").'rootcerts.crt';
if (file_exists($certPath)) {
2012-07-09 11:40:33 +04:00
$this->client->addTrustedCertificates($certPath);
}
2012-07-09 12:19:19 +04:00
}
2012-03-23 21:54:38 +04:00
//create the root folder if necesary
$this->mkdir('');
}
public function getId(){
return 'webdav::' . $this->user . '@' . $this->host . '/' . $this->root;
2012-03-23 21:54:38 +04:00
}
2012-09-07 17:22:01 +04:00
private function createBaseUri() {
2012-03-23 21:54:38 +04:00
$baseUri='http';
if ($this->secure) {
$baseUri.='s';
2012-03-23 21:54:38 +04:00
}
$baseUri.='://'.$this->host.$this->root;
return $baseUri;
}
2012-09-07 17:22:01 +04:00
public function mkdir($path) {
$this->init();
2012-03-23 21:54:38 +04:00
$path=$this->cleanPath($path);
2012-10-29 02:58:08 +04:00
return $this->simpleResponse('MKCOL', $path, null, 201);
2012-03-23 21:54:38 +04:00
}
2012-09-07 17:22:01 +04:00
public function rmdir($path) {
$this->init();
2012-03-23 21:54:38 +04:00
$path=$this->cleanPath($path);
2012-10-29 02:58:08 +04:00
return $this->simpleResponse('DELETE', $path, null, 204);
2012-03-23 21:54:38 +04:00
}
2012-09-07 17:22:01 +04:00
public function opendir($path) {
$this->init();
2012-03-23 21:54:38 +04:00
$path=$this->cleanPath($path);
try {
2012-10-29 02:58:08 +04:00
$response=$this->client->propfind($path, array(), 1);
2012-03-23 21:54:38 +04:00
$id=md5('webdav'.$this->root.$path);
$content = array();
$files=array_keys($response);
array_shift($files);//the first entry is the current directory
foreach ($files as $file) {
$file = urldecode(basename($file));
$content[]=$file;
2012-03-23 21:54:38 +04:00
}
\OC\Files\Stream\Dir::register($id, $content);
2012-03-23 21:54:38 +04:00
return opendir('fakedir://'.$id);
2012-12-03 21:02:22 +04:00
} catch(\Exception $e) {
2012-03-23 21:54:38 +04:00
return false;
}
}
2012-09-07 17:22:01 +04:00
public function filetype($path) {
$this->init();
2012-03-23 21:54:38 +04:00
$path=$this->cleanPath($path);
try {
2012-03-23 21:54:38 +04:00
$response=$this->client->propfind($path, array('{DAV:}resourcetype'));
$responseType=$response["{DAV:}resourcetype"]->resourceType;
return (count($responseType)>0 and $responseType[0]=="{DAV:}collection")?'dir':'file';
2012-12-03 21:02:22 +04:00
} catch(\Exception $e) {
error_log($e->getMessage());
\OCP\Util::writeLog("webdav client", \OCP\Util::sanitizeHTML($e->getMessage()), \OCP\Util::ERROR);
2012-03-23 21:54:38 +04:00
return false;
}
}
2012-09-07 17:22:01 +04:00
public function isReadable($path) {
2012-03-23 21:54:38 +04:00
return true;//not properly supported
}
2012-09-07 17:22:01 +04:00
public function isUpdatable($path) {
2012-03-23 21:54:38 +04:00
return true;//not properly supported
}
2012-09-07 17:22:01 +04:00
public function file_exists($path) {
$this->init();
2012-03-23 21:54:38 +04:00
$path=$this->cleanPath($path);
try {
$this->client->propfind($path, array('{DAV:}resourcetype'));
2012-03-23 21:54:38 +04:00
return true;//no 404 exception
2012-12-03 21:02:22 +04:00
} catch(\Exception $e) {
2012-03-23 21:54:38 +04:00
return false;
}
}
2012-09-07 17:22:01 +04:00
public function unlink($path) {
$this->init();
2012-10-25 20:26:08 +04:00
return $this->simpleResponse('DELETE', $path, null ,204);
2012-03-23 21:54:38 +04:00
}
2012-09-07 17:22:01 +04:00
public function fopen($path,$mode) {
$this->init();
2012-03-23 21:54:38 +04:00
$path=$this->cleanPath($path);
2012-09-07 17:22:01 +04:00
switch($mode) {
2012-03-23 21:54:38 +04:00
case 'r':
case 'rb':
if ( ! $this->file_exists($path)) {
return false;
}
2012-03-23 21:54:38 +04:00
//straight up curl instead of sabredav here, sabredav put's the entire get result in memory
$curl = curl_init();
$fp = fopen('php://temp', 'r+');
2012-10-29 02:58:08 +04:00
curl_setopt($curl, CURLOPT_USERPWD, $this->user.':'.$this->password);
2012-03-23 21:54:38 +04:00
curl_setopt($curl, CURLOPT_URL, $this->createBaseUri().$path);
curl_setopt($curl, CURLOPT_FILE, $fp);
curl_exec ($curl);
curl_close ($curl);
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+':
//emulate these
if (strrpos($path, '.')!==false) {
2012-10-29 02:58:08 +04:00
$ext=substr($path, strrpos($path, '.'));
} else {
2012-03-23 21:54:38 +04:00
$ext='';
}
2012-10-31 01:59:55 +04:00
$tmpFile = \OCP\Files::tmpFile($ext);
\OC\Files\Stream\Close::registerCallback($tmpFile, array($this, 'writeBack'));
2012-09-07 17:22:01 +04:00
if($this->file_exists($path)) {
2012-10-29 02:58:08 +04:00
$this->getFile($path, $tmpFile);
2012-03-23 21:54:38 +04:00
}
self::$tempFiles[$tmpFile]=$path;
2012-10-29 02:58:08 +04:00
return fopen('close://'.$tmpFile, $mode);
2012-03-23 21:54:38 +04:00
}
}
2012-09-07 17:22:01 +04:00
public function writeBack($tmpFile) {
if (isset(self::$tempFiles[$tmpFile])) {
2012-10-24 00:53:54 +04:00
$this->uploadFile($tmpFile, self::$tempFiles[$tmpFile]);
2012-03-23 21:54:38 +04:00
unlink($tmpFile);
}
}
2012-09-07 17:22:01 +04:00
public function free_space($path) {
$this->init();
2012-03-23 21:54:38 +04:00
$path=$this->cleanPath($path);
try {
2012-03-23 21:54:38 +04:00
$response=$this->client->propfind($path, array('{DAV:}quota-available-bytes'));
if (isset($response['{DAV:}quota-available-bytes'])) {
2012-03-23 21:54:38 +04:00
return (int)$response['{DAV:}quota-available-bytes'];
} else {
2012-03-23 21:54:38 +04:00
return 0;
}
2012-12-03 21:02:22 +04:00
} catch(\Exception $e) {
2012-03-23 21:54:38 +04:00
return 0;
}
}
2012-11-02 22:53:02 +04:00
public function touch($path, $mtime=null) {
$this->init();
if (is_null($mtime)) {
2012-03-23 21:54:38 +04:00
$mtime=time();
}
$path=$this->cleanPath($path);
$this->client->proppatch($path, array('{DAV:}lastmodified' => $mtime));
2012-03-23 21:54:38 +04:00
}
2012-09-07 17:22:01 +04:00
public function getFile($path,$target) {
$this->init();
2012-03-23 21:54:38 +04:00
$source=$this->fopen($path,'r');
file_put_contents($target,$source);
}
2012-09-07 17:22:01 +04:00
public function uploadFile($path,$target) {
$this->init();
2012-10-29 02:58:08 +04:00
$source=fopen($path, 'r');
2012-03-23 21:54:38 +04:00
$curl = curl_init();
2012-10-29 02:58:08 +04:00
curl_setopt($curl, CURLOPT_USERPWD, $this->user.':'.$this->password);
2012-03-23 21:54:38 +04:00
curl_setopt($curl, CURLOPT_URL, $this->createBaseUri().$target);
curl_setopt($curl, CURLOPT_BINARYTRANSFER, true);
curl_setopt($curl, CURLOPT_INFILE, $source); // file pointer
curl_setopt($curl, CURLOPT_INFILESIZE, filesize($path));
curl_setopt($curl, CURLOPT_PUT, true);
curl_exec ($curl);
curl_close ($curl);
}
2012-09-07 17:22:01 +04:00
public function rename($path1,$path2) {
$this->init();
2012-03-23 21:54:38 +04:00
$path1=$this->cleanPath($path1);
$path2=$this->root.$this->cleanPath($path2);
try {
2012-12-03 21:02:22 +04:00
$this->client->request('MOVE', $path1, null, array('Destination'=>$path2));
2012-03-23 21:54:38 +04:00
return true;
2012-12-03 21:02:22 +04:00
} catch(\Exception $e) {
2012-03-23 21:54:38 +04:00
return false;
}
}
2012-09-07 17:22:01 +04:00
public function copy($path1,$path2) {
$this->init();
2012-03-23 21:54:38 +04:00
$path1=$this->cleanPath($path1);
$path2=$this->root.$this->cleanPath($path2);
try {
2012-12-03 21:02:22 +04:00
$this->client->request('COPY', $path1, null, array('Destination'=>$path2));
2012-03-23 21:54:38 +04:00
return true;
2012-12-03 21:02:22 +04:00
} catch(\Exception $e) {
2012-03-23 21:54:38 +04:00
return false;
}
}
2012-09-07 17:22:01 +04:00
public function stat($path) {
$this->init();
2012-03-23 21:54:38 +04:00
$path=$this->cleanPath($path);
try {
2012-11-04 14:10:46 +04:00
$response=$this->client->propfind($path, array('{DAV:}getlastmodified', '{DAV:}getcontentlength'));
return array(
'mtime'=>strtotime($response['{DAV:}getlastmodified']),
'size'=>(int)isset($response['{DAV:}getcontentlength']) ? $response['{DAV:}getcontentlength'] : 0,
);
2012-12-03 21:02:22 +04:00
} catch(\Exception $e) {
2012-03-23 21:54:38 +04:00
return array();
}
}
2012-09-07 17:22:01 +04:00
public function getMimeType($path) {
$this->init();
2012-03-23 21:54:38 +04:00
$path=$this->cleanPath($path);
try {
2012-11-04 14:10:46 +04:00
$response=$this->client->propfind($path, array('{DAV:}getcontenttype', '{DAV:}resourcetype'));
2012-03-23 21:54:38 +04:00
$responseType=$response["{DAV:}resourcetype"]->resourceType;
$type=(count($responseType)>0 and $responseType[0]=="{DAV:}collection")?'dir':'file';
if ($type=='dir') {
2012-03-23 21:54:38 +04:00
return 'httpd/unix-directory';
} elseif (isset($response['{DAV:}getcontenttype'])) {
2012-03-23 21:54:38 +04:00
return $response['{DAV:}getcontenttype'];
} else {
2012-03-23 21:54:38 +04:00
return false;
}
2012-12-03 21:02:22 +04:00
} catch(\Exception $e) {
2012-03-23 21:54:38 +04:00
return false;
}
}
2012-09-07 17:22:01 +04:00
private function cleanPath($path) {
if ( ! $path || $path[0]=='/') {
2012-10-29 02:58:08 +04:00
return substr($path, 1);
} else {
2012-03-23 21:54:38 +04:00
return $path;
}
}
2012-09-07 17:22:01 +04:00
private function simpleResponse($method,$path,$body,$expected) {
2012-03-23 21:54:38 +04:00
$path=$this->cleanPath($path);
try {
2012-10-29 02:58:08 +04:00
$response=$this->client->request($method, $path, $body);
2012-03-23 21:54:38 +04:00
return $response['statusCode']==$expected;
2012-12-03 21:02:22 +04:00
} catch(\Exception $e) {
2012-03-23 21:54:38 +04:00
return false;
}
}
}