nextcloud/apps/files_external/lib/ftp.php

88 lines
2.1 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.
*/
class OC_FileStorage_FTP extends OC_FileStorage_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'];
$this->secure=isset($params['secure'])?(bool)$params['secure']:false;
$this->root=isset($params['root'])?$params['root']:'/';
2012-09-07 17:22:01 +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
if (!$this->is_dir('')) {
$this->mkdir('');
}
2012-03-22 22:56:19 +04:00
}
/**
* construct the ftp url
* @param string path
* @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-09-07 17:22:01 +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) {
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-09-07 17:22:01 +04:00
if(strrpos($path,'.')!==false) {
2012-10-24 00:53:54 +04:00
$ext=substr($path, strrpos($path,'.'));
2012-03-22 22:56:19 +04:00
}else{
$ext='';
}
$tmpFile=OCP\Files::tmpFile($ext);
2012-03-22 22:56:19 +04:00
OC_CloseStreamWrapper::$callBacks[$tmpFile]=array($this,'writeBack');
2012-09-07 17:22:01 +04:00
if($this->file_exists($path)) {
2012-03-22 22:56:19 +04:00
$this->getFile($path,$tmpFile);
}
self::$tempFiles[$tmpFile]=$path;
return fopen('close://'.$tmpFile,$mode);
}
}
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-22 22:56:19 +04:00
unlink($tmpFile);
}
}
}