2012-03-22 22:56:19 +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 FTP extends \OC\Files\Storage\StreamWrapper{
|
2012-03-22 22:56:19 +04:00
|
|
|
private $password;
|
|
|
|
private $user;
|
|
|
|
private $host;
|
|
|
|
private $secure;
|
|
|
|
private $root;
|
|
|
|
|
|
|
|
private static $tempFiles=array();
|
2012-08-29 10:42:49 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function __construct($params) {
|
2012-03-22 22:56:19 +04:00
|
|
|
$this->host=$params['host'];
|
|
|
|
$this->user=$params['user'];
|
|
|
|
$this->password=$params['password'];
|
2012-11-30 19:27:11 +04:00
|
|
|
if (isset($params['secure'])) {
|
|
|
|
if (is_string($params['secure'])) {
|
2012-11-05 19:39:03 +04:00
|
|
|
$this->secure = ($params['secure'] === 'true');
|
2012-11-30 19:27:11 +04:00
|
|
|
} else {
|
2012-11-05 19:39:03 +04:00
|
|
|
$this->secure = (bool)$params['secure'];
|
|
|
|
}
|
2012-11-30 19:27:11 +04:00
|
|
|
} else {
|
2012-11-05 19:39:03 +04:00
|
|
|
$this->secure = false;
|
|
|
|
}
|
2012-03-22 22:56:19 +04:00
|
|
|
$this->root=isset($params['root'])?$params['root']:'/';
|
2012-11-30 19:27:11 +04:00
|
|
|
if ( ! $this->root || $this->root[0]!='/') {
|
2012-03-22 22:56:19 +04:00
|
|
|
$this->root='/'.$this->root;
|
|
|
|
}
|
|
|
|
//create the root folder if necesary
|
2012-11-30 19:27:11 +04:00
|
|
|
if ( ! $this->is_dir('')) {
|
2012-07-27 20:32:03 +04:00
|
|
|
$this->mkdir('');
|
|
|
|
}
|
2012-03-22 22:56:19 +04:00
|
|
|
}
|
|
|
|
|
2012-10-12 01:06:57 +04:00
|
|
|
public function getId(){
|
|
|
|
return 'ftp::' . $this->user . '@' . $this->host . '/' . $this->root;
|
|
|
|
}
|
|
|
|
|
2012-03-22 22:56:19 +04:00
|
|
|
/**
|
|
|
|
* construct the ftp url
|
2012-10-12 01:17:59 +04:00
|
|
|
* @param string $path
|
2012-03-22 22:56:19 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public function constructUrl($path) {
|
2012-03-22 22:56:19 +04:00
|
|
|
$url='ftp';
|
2012-11-30 19:27:11 +04:00
|
|
|
if ($this->secure) {
|
2012-03-22 22:56:19 +04:00
|
|
|
$url.='s';
|
|
|
|
}
|
|
|
|
$url.='://'.$this->user.':'.$this->password.'@'.$this->host.$this->root.$path;
|
|
|
|
return $url;
|
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
public function fopen($path,$mode) {
|
2012-10-22 00:04:45 +04:00
|
|
|
$this->init();
|
2012-09-07 17:22:01 +04:00
|
|
|
switch($mode) {
|
2012-03-22 22:56:19 +04:00
|
|
|
case 'r':
|
|
|
|
case 'rb':
|
|
|
|
case 'w':
|
|
|
|
case 'wb':
|
|
|
|
case 'a':
|
|
|
|
case 'ab':
|
|
|
|
//these are supported by the wrapper
|
|
|
|
$context = stream_context_create(array('ftp' => array('overwrite' => true)));
|
2012-10-24 00:53:54 +04:00
|
|
|
return fopen($this->constructUrl($path),$mode, false,$context);
|
2012-03-22 22:56:19 +04:00
|
|
|
case 'r+':
|
|
|
|
case 'w+':
|
|
|
|
case 'wb+':
|
|
|
|
case 'a+':
|
|
|
|
case 'x':
|
|
|
|
case 'x+':
|
|
|
|
case 'c':
|
|
|
|
case 'c+':
|
|
|
|
//emulate these
|
2012-11-30 19:27:11 +04:00
|
|
|
if (strrpos($path, '.')!==false) {
|
2012-11-04 14:10:46 +04:00
|
|
|
$ext=substr($path, strrpos($path, '.'));
|
2012-11-30 19:27:11 +04:00
|
|
|
} else {
|
2012-03-22 22:56:19 +04:00
|
|
|
$ext='';
|
|
|
|
}
|
2012-05-02 14:54:31 +04:00
|
|
|
$tmpFile=OCP\Files::tmpFile($ext);
|
2013-01-28 18:34:15 +04:00
|
|
|
\OC\Files\Stream\Close::registerCallback($tmpFile, array($this, 'writeBack'));
|
2012-11-30 19:27:11 +04:00
|
|
|
if ($this->file_exists($path)) {
|
2012-11-02 22:53:02 +04:00
|
|
|
$this->getFile($path, $tmpFile);
|
2012-03-22 22:56:19 +04:00
|
|
|
}
|
|
|
|
self::$tempFiles[$tmpFile]=$path;
|
|
|
|
return fopen('close://'.$tmpFile,$mode);
|
|
|
|
}
|
2012-10-12 01:17:59 +04:00
|
|
|
return false;
|
2012-03-22 22:56:19 +04:00
|
|
|
}
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
public function writeBack($tmpFile) {
|
2012-10-22 00:04:45 +04:00
|
|
|
$this->init();
|
2012-11-30 19:27:11 +04:00
|
|
|
if (isset(self::$tempFiles[$tmpFile])) {
|
2012-10-24 00:53:54 +04:00
|
|
|
$this->uploadFile($tmpFile, self::$tempFiles[$tmpFile]);
|
2012-03-22 22:56:19 +04:00
|
|
|
unlink($tmpFile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|