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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
abstract class OC_Archive{
|
|
|
|
/**
|
2013-07-16 07:56:52 +04:00
|
|
|
* open any of the supported archive types
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $path
|
2014-04-21 17:44:54 +04:00
|
|
|
* @return OC_Archive|void
|
2012-03-03 03:57:03 +04:00
|
|
|
*/
|
2012-09-07 17:22:01 +04:00
|
|
|
public static function open($path) {
|
2012-10-05 14:39:43 +04:00
|
|
|
$ext=substr($path, strrpos($path, '.'));
|
2012-09-07 17:22:01 +04:00
|
|
|
switch($ext) {
|
2012-03-03 03:57:03 +04:00
|
|
|
case '.zip':
|
|
|
|
return new OC_Archive_ZIP($path);
|
2012-03-29 01:46:44 +04:00
|
|
|
case '.gz':
|
|
|
|
case '.bz':
|
|
|
|
case '.bz2':
|
|
|
|
case '.tgz':
|
2014-08-04 16:10:09 +04:00
|
|
|
case '.tar':
|
2012-03-29 01:46:44 +04:00
|
|
|
return new OC_Archive_TAR($path);
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|
|
|
|
}
|
2012-08-29 10:38:33 +04:00
|
|
|
|
2014-04-21 17:44:54 +04:00
|
|
|
/**
|
|
|
|
* @param $source
|
|
|
|
*/
|
2012-03-03 03:57:03 +04:00
|
|
|
abstract function __construct($source);
|
|
|
|
/**
|
|
|
|
* add an empty folder to the archive
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $path
|
2012-03-03 03:57:03 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
abstract function addFolder($path);
|
|
|
|
/**
|
|
|
|
* add a file to the archive
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $path
|
2014-04-21 17:44:54 +04:00
|
|
|
* @param string $source either a local file or string data
|
2012-03-03 03:57:03 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
2012-11-02 22:53:02 +04:00
|
|
|
abstract function addFile($path, $source='');
|
2012-03-03 03:57:03 +04:00
|
|
|
/**
|
|
|
|
* rename a file or folder in the archive
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $source
|
|
|
|
* @param string $dest
|
2012-03-03 03:57:03 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
2012-11-02 22:53:02 +04:00
|
|
|
abstract function rename($source, $dest);
|
2012-03-03 03:57:03 +04:00
|
|
|
/**
|
|
|
|
* get the uncompressed size of a file in the archive
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $path
|
2012-03-03 03:57:03 +04:00
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
abstract function filesize($path);
|
|
|
|
/**
|
|
|
|
* get the last modified time of a file in the archive
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $path
|
2012-03-03 03:57:03 +04:00
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
abstract function mtime($path);
|
|
|
|
/**
|
|
|
|
* get the files in a folder
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $path
|
2012-03-03 03:57:03 +04:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
abstract function getFolder($path);
|
|
|
|
/**
|
2013-07-16 07:56:52 +04:00
|
|
|
* get all files in the archive
|
2012-03-03 03:57:03 +04:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
abstract function getFiles();
|
|
|
|
/**
|
|
|
|
* get the content of a file
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $path
|
2012-03-03 03:57:03 +04:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
abstract function getFile($path);
|
|
|
|
/**
|
|
|
|
* extract a single file from the archive
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $path
|
|
|
|
* @param string $dest
|
2012-03-03 03:57:03 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
2012-11-02 22:53:02 +04:00
|
|
|
abstract function extractFile($path, $dest);
|
2012-03-29 00:31:45 +04:00
|
|
|
/**
|
|
|
|
* extract the archive
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $dest
|
2012-03-29 00:31:45 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
abstract function extract($dest);
|
2012-03-03 03:57:03 +04:00
|
|
|
/**
|
|
|
|
* check if a file or folder exists in the archive
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $path
|
2012-03-03 03:57:03 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
abstract function fileExists($path);
|
|
|
|
/**
|
|
|
|
* remove a file or folder from the archive
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $path
|
2012-03-03 03:57:03 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
abstract function remove($path);
|
|
|
|
/**
|
|
|
|
* get a file handler
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $path
|
|
|
|
* @param string $mode
|
2012-03-03 03:57:03 +04:00
|
|
|
* @return resource
|
|
|
|
*/
|
2012-11-02 22:53:02 +04:00
|
|
|
abstract function getStream($path, $mode);
|
2012-08-18 03:17:28 +04:00
|
|
|
/**
|
2013-07-16 07:56:52 +04:00
|
|
|
* add a folder and all its content
|
2012-08-18 03:17:28 +04:00
|
|
|
* @param string $path
|
2014-02-08 14:47:55 +04:00
|
|
|
* @param string $source
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return boolean|null
|
2012-08-18 03:17:28 +04:00
|
|
|
*/
|
2012-11-02 22:53:02 +04:00
|
|
|
function addRecursive($path, $source) {
|
2013-09-04 15:06:04 +04:00
|
|
|
$dh = opendir($source);
|
|
|
|
if(is_resource($dh)) {
|
2012-08-18 03:17:28 +04:00
|
|
|
$this->addFolder($path);
|
2013-08-19 14:04:53 +04:00
|
|
|
while (($file = readdir($dh)) !== false) {
|
2012-09-07 17:22:01 +04:00
|
|
|
if($file=='.' or $file=='..') {
|
2012-08-18 03:17:28 +04:00
|
|
|
continue;
|
|
|
|
}
|
2012-09-07 17:22:01 +04:00
|
|
|
if(is_dir($source.'/'.$file)) {
|
2012-10-05 14:39:43 +04:00
|
|
|
$this->addRecursive($path.'/'.$file, $source.'/'.$file);
|
2012-08-18 03:17:28 +04:00
|
|
|
}else{
|
2012-10-05 14:39:43 +04:00
|
|
|
$this->addFile($path.'/'.$file, $source.'/'.$file);
|
2012-08-18 03:17:28 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|