nextcloud/apps/files_external/lib/ftp.php

105 lines
2.4 KiB
PHP
Raw Normal View History

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'];
if (isset($params['secure'])) {
if (is_string($params['secure'])) {
$this->secure = ($params['secure'] === 'true');
} else {
$this->secure = (bool)$params['secure'];
}
} else {
$this->secure = false;
}
2012-03-22 22:56:19 +04:00
$this->root=isset($params['root'])?$params['root']:'/';
if ( ! $this->root || $this->root[0]!='/') {
2012-03-22 22:56:19 +04:00
$this->root='/'.$this->root;
}
//create the root folder if necesary
if ( ! $this->is_dir('')) {
$this->mkdir('');
}
2012-03-22 22:56:19 +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
* @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';
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) {
$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
if (strrpos($path, '.')!==false) {
2012-11-04 14:10:46 +04:00
$ext=substr($path, strrpos($path, '.'));
} else {
2012-03-22 22:56:19 +04:00
$ext='';
}
$tmpFile=OCP\Files::tmpFile($ext);
\OC\Files\Stream\Close::registerCallback($tmpFile, array($this, 'writeBack'));
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);
}
return false;
2012-03-22 22:56:19 +04:00
}
2012-09-07 17:22:01 +04:00
public function writeBack($tmpFile) {
$this->init();
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);
}
}
}