2012-03-03 03:57:03 +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_Archive_ZIP extends OC_Archive{
|
|
|
|
/**
|
|
|
|
* @var ZipArchive zip
|
|
|
|
*/
|
|
|
|
private $zip=null;
|
|
|
|
private $path;
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
function __construct($source) {
|
2012-03-03 03:57:03 +04:00
|
|
|
$this->path=$source;
|
|
|
|
$this->zip=new ZipArchive();
|
2012-09-10 13:23:55 +04:00
|
|
|
if($this->zip->open($source, ZipArchive::CREATE)) {
|
2012-03-03 03:57:03 +04:00
|
|
|
}else{
|
2012-09-10 13:23:55 +04:00
|
|
|
OCP\Util::writeLog('files_archive', 'Error while opening archive '.$source, OCP\Util::WARN);
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* add an empty folder to the archive
|
|
|
|
* @param string path
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
function addFolder($path) {
|
2012-03-03 03:57:03 +04:00
|
|
|
return $this->zip->addEmptyDir($path);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* add a file to the archive
|
|
|
|
* @param string path
|
|
|
|
* @param string source either a local file or string data
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
function addFile($path,$source='') {
|
|
|
|
if($source and $source[0]=='/' and file_exists($source)) {
|
2012-09-10 13:23:55 +04:00
|
|
|
$result=$this->zip->addFile($source, $path);
|
2012-03-03 03:57:03 +04:00
|
|
|
}else{
|
2012-09-10 13:23:55 +04:00
|
|
|
$result=$this->zip->addFromString($path, $source);
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
if($result) {
|
2012-03-03 03:57:03 +04:00
|
|
|
$this->zip->close();//close and reopen to save the zip
|
|
|
|
$this->zip->open($this->path);
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* rename a file or folder in the archive
|
|
|
|
* @param string source
|
|
|
|
* @param string dest
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
function rename($source,$dest) {
|
2012-03-29 01:46:44 +04:00
|
|
|
$source=$this->stripPath($source);
|
|
|
|
$dest=$this->stripPath($dest);
|
2012-09-10 13:23:55 +04:00
|
|
|
$this->zip->renameName($source, $dest);
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* get the uncompressed size of a file in the archive
|
|
|
|
* @param string path
|
|
|
|
* @return int
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
function filesize($path) {
|
2012-03-03 03:57:03 +04:00
|
|
|
$stat=$this->zip->statName($path);
|
|
|
|
return $stat['size'];
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* get the last modified time of a file in the archive
|
|
|
|
* @param string path
|
|
|
|
* @return int
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
function mtime($path) {
|
2012-07-20 02:52:10 +04:00
|
|
|
return filemtime($this->path);
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* get the files in a folder
|
|
|
|
* @param path
|
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
function getFolder($path) {
|
2012-03-03 03:57:03 +04:00
|
|
|
$files=$this->getFiles();
|
|
|
|
$folderContent=array();
|
|
|
|
$pathLength=strlen($path);
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($files as $file) {
|
2012-09-10 13:23:55 +04:00
|
|
|
if(substr($file, 0, $pathLength)==$path and $file!=$path) {
|
|
|
|
if(strrpos(substr($file, 0, -1),'/')<=$pathLength) {
|
|
|
|
$folderContent[]=substr($file, $pathLength);
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $folderContent;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*get all files in the archive
|
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
function getFiles() {
|
2012-03-03 03:57:03 +04:00
|
|
|
$fileCount=$this->zip->numFiles;
|
|
|
|
$files=array();
|
2012-09-07 17:22:01 +04:00
|
|
|
for($i=0;$i<$fileCount;$i++) {
|
2012-03-03 03:57:03 +04:00
|
|
|
$files[]=$this->zip->getNameIndex($i);
|
|
|
|
}
|
|
|
|
return $files;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* get the content of a file
|
|
|
|
* @param string path
|
|
|
|
* @return string
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
function getFile($path) {
|
2012-03-03 03:57:03 +04:00
|
|
|
return $this->zip->getFromName($path);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* extract a single file from the archive
|
|
|
|
* @param string path
|
|
|
|
* @param string dest
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
function extractFile($path,$dest) {
|
2012-03-03 03:57:03 +04:00
|
|
|
$fp = $this->zip->getStream($path);
|
2012-09-10 13:23:55 +04:00
|
|
|
file_put_contents($dest, $fp);
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|
2012-03-29 00:31:45 +04:00
|
|
|
/**
|
|
|
|
* extract the archive
|
|
|
|
* @param string path
|
|
|
|
* @param string dest
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
function extract($dest) {
|
2012-03-29 00:31:45 +04:00
|
|
|
return $this->zip->extractTo($dest);
|
|
|
|
}
|
2012-03-03 03:57:03 +04:00
|
|
|
/**
|
|
|
|
* check if a file or folder exists in the archive
|
|
|
|
* @param string path
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
function fileExists($path) {
|
2012-03-29 01:46:44 +04:00
|
|
|
return ($this->zip->locateName($path)!==false) or ($this->zip->locateName($path.'/')!==false);
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* remove a file or folder from the archive
|
|
|
|
* @param string path
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
function remove($path) {
|
|
|
|
if($this->fileExists($path.'/')) {
|
2012-03-29 01:46:44 +04:00
|
|
|
return $this->zip->deleteName($path.'/');
|
|
|
|
}else{
|
|
|
|
return $this->zip->deleteName($path);
|
|
|
|
}
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* get a file handler
|
|
|
|
* @param string path
|
|
|
|
* @param string mode
|
|
|
|
* @return resource
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
function getStream($path,$mode) {
|
|
|
|
if($mode=='r' or $mode=='rb') {
|
2012-03-03 03:57:03 +04:00
|
|
|
return $this->zip->getStream($path);
|
|
|
|
}else{//since we cant directly get a writable stream, make a temp copy of the file and put it back in the archive when the stream is closed
|
2012-09-10 13:23:55 +04:00
|
|
|
if(strrpos($path, '.')!==false) {
|
|
|
|
$ext=substr($path, strrpos($path, '.'));
|
2012-03-03 03:57:03 +04:00
|
|
|
}else{
|
|
|
|
$ext='';
|
|
|
|
}
|
2012-05-02 14:54:31 +04:00
|
|
|
$tmpFile=OCP\Files::tmpFile($ext);
|
2012-03-03 03:57:03 +04:00
|
|
|
OC_CloseStreamWrapper::$callBacks[$tmpFile]=array($this,'writeBack');
|
2012-09-07 17:22:01 +04:00
|
|
|
if($this->fileExists($path)) {
|
2012-09-10 13:23:55 +04:00
|
|
|
$this->extractFile($path, $tmpFile);
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|
|
|
|
self::$tempFiles[$tmpFile]=$path;
|
2012-09-10 13:23:55 +04:00
|
|
|
return fopen('close://'.$tmpFile, $mode);
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static $tempFiles=array();
|
|
|
|
/**
|
|
|
|
* write back temporary files
|
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
function writeBack($tmpFile) {
|
|
|
|
if(isset(self::$tempFiles[$tmpFile])) {
|
2012-09-10 13:23:55 +04:00
|
|
|
$this->addFile(self::$tempFiles[$tmpFile], $tmpFile);
|
2012-03-03 03:57:03 +04:00
|
|
|
unlink($tmpFile);
|
|
|
|
}
|
|
|
|
}
|
2012-03-29 01:46:44 +04:00
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
private function stripPath($path) {
|
|
|
|
if(!$path || $path[0]=='/') {
|
2012-09-10 13:23:55 +04:00
|
|
|
return substr($path, 1);
|
2012-03-29 01:46:44 +04:00
|
|
|
}else{
|
|
|
|
return $path;
|
|
|
|
}
|
|
|
|
}
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|