nextcloud/lib/private/streamer.php

125 lines
3.7 KiB
PHP
Raw Normal View History

2015-09-23 19:00:15 +03:00
<?php
/**
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
2015-09-24 01:08:42 +03:00
namespace OC;
use ZipStreamer\ZipStreamer;
2015-09-23 19:00:15 +03:00
use DeepDiver1975\TarStreamer\TarStreamer;
2015-09-24 01:08:42 +03:00
class Streamer {
2015-09-24 00:04:33 +03:00
// array of regexp. Matching user agents will get tar instead of zip
private $preferTarFor = [ '/macintosh|mac os x/i' ];
2015-09-23 19:00:15 +03:00
2015-09-24 00:04:33 +03:00
// streamer instance
2015-09-23 19:00:15 +03:00
private $streamerInstance;
2015-09-24 00:04:33 +03:00
2015-09-23 19:00:15 +03:00
public function __construct(){
2015-09-24 00:04:33 +03:00
/** @var \OCP\IRequest */
$request = \OC::$server->getRequest();
2015-09-24 01:08:42 +03:00
if ($request->isUserAgent($this->preferTarFor)) {
2015-09-23 19:00:15 +03:00
$this->streamerInstance = new TarStreamer();
2015-09-24 00:04:33 +03:00
} else {
$this->streamerInstance = new ZipStreamer();
2015-09-23 19:00:15 +03:00
}
}
2015-09-24 00:04:33 +03:00
/**
* Send HTTP headers
2015-09-24 18:23:10 +03:00
* @param string $name
2015-09-24 00:04:33 +03:00
*/
2015-09-23 19:00:15 +03:00
public function sendHeaders($name){
$extension = $this->streamerInstance instanceof ZipStreamer ? '.zip' : '.tar';
2015-09-24 22:31:05 +03:00
$fullName = $name . $extension;
// ZipStreamer does not escape name in Content-Disposition atm
if ($this->streamerInstance instanceof ZipStreamer) {
$fullName = rawurlencode($fullName);
}
$this->streamerInstance->sendHeaders($fullName);
2015-09-23 19:00:15 +03:00
}
/**
2015-09-24 00:04:33 +03:00
* Stream directory recursively
2015-09-23 19:00:15 +03:00
* @param string $dir
* @param string $internalDir
*/
2015-09-24 18:23:10 +03:00
public function addDirRecursive($dir, $internalDir='') {
2015-09-23 19:00:15 +03:00
$dirname = basename($dir);
$rootDir = $internalDir . $dirname;
if (!empty($rootDir)) {
$this->streamerInstance->addEmptyDir($rootDir);
}
2015-09-24 18:23:10 +03:00
$internalDir .= $dirname . '/';
2015-09-23 19:00:15 +03:00
// prevent absolute dirs
$internalDir = ltrim($internalDir, '/');
$files= \OC\Files\Filesystem::getDirectoryContent($dir);
foreach($files as $file) {
$filename = $file['name'];
$file = $dir . '/' . $filename;
if(\OC\Files\Filesystem::is_file($file)) {
$filesize = \OC\Files\Filesystem::filesize($file);
$fh = \OC\Files\Filesystem::fopen($file, 'r');
2015-09-24 01:08:42 +03:00
$this->addFileFromStream($fh, $internalDir . $filename, $filesize);
2015-09-23 19:00:15 +03:00
fclose($fh);
}elseif(\OC\Files\Filesystem::is_dir($file)) {
2015-09-24 18:23:10 +03:00
$this->addDirRecursive($file, $internalDir);
2015-09-23 19:00:15 +03:00
}
}
}
2015-09-24 00:04:33 +03:00
/**
* Add a file to the archive at the specified location and file name.
*
* @param string $stream Stream to read data from
* @param string $internalName Filepath and name to be used in the archive.
* @param int $size Filesize
* @return bool $success
*/
public function addFileFromStream($stream, $internalName, $size){
2015-09-23 19:00:15 +03:00
if ($this->streamerInstance instanceof ZipStreamer) {
2015-09-24 00:04:33 +03:00
return $this->streamerInstance->addFileFromStream($stream, $internalName);
2015-09-23 19:00:15 +03:00
} else {
2015-09-24 00:04:33 +03:00
return $this->streamerInstance->addFileFromStream($stream, $internalName, $size);
2015-09-23 19:00:15 +03:00
}
}
2015-09-24 00:04:33 +03:00
/**
* Add an empty directory entry to the archive.
*
* @param string $directoryPath Directory Path and name to be added to the archive.
* @return bool $success
*/
2015-09-23 19:00:15 +03:00
public function addEmptyDir($dirName){
return $this->streamerInstance->addEmptyDir($dirName);
}
2015-09-24 00:04:33 +03:00
/**
* Close the archive.
* A closed archive can no longer have new files added to it. After
* closing, the file is completely written to the output stream.
* @return bool $success
*/
2015-09-23 19:00:15 +03:00
public function finalize(){
return $this->streamerInstance->finalize();
}
}