2012-03-02 18:57:03 -05:00
|
|
|
<?php
|
|
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2020-04-29 05:57:22 -04:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 11:07:57 -04:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 12:13:36 -04:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 11:07:57 -04:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 06:44:34 -04:00
|
|
|
*
|
|
|
|
|
* @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,
|
2019-12-03 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 06:44:34 -04:00
|
|
|
*
|
2012-03-02 18:57:03 -05:00
|
|
|
*/
|
2015-02-26 05:37:37 -05:00
|
|
|
|
2016-05-02 03:43:17 -04:00
|
|
|
namespace OC\Archive;
|
2016-05-02 01:23:14 -04:00
|
|
|
|
2016-10-31 13:42:19 -04:00
|
|
|
abstract class Archive {
|
2014-04-21 09:44:54 -04:00
|
|
|
/**
|
|
|
|
|
* @param $source
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
abstract public function __construct($source);
|
2012-03-02 18:57:03 -05:00
|
|
|
/**
|
|
|
|
|
* add an empty folder to the archive
|
2014-02-06 10:30:58 -05:00
|
|
|
* @param string $path
|
2012-03-02 18:57:03 -05:00
|
|
|
* @return bool
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
abstract public function addFolder($path);
|
2012-03-02 18:57:03 -05:00
|
|
|
/**
|
|
|
|
|
* add a file to the archive
|
2014-02-06 10:30:58 -05:00
|
|
|
* @param string $path
|
2014-04-21 09:44:54 -04:00
|
|
|
* @param string $source either a local file or string data
|
2012-03-02 18:57:03 -05:00
|
|
|
* @return bool
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
abstract public function addFile($path, $source='');
|
2012-03-02 18:57:03 -05:00
|
|
|
/**
|
|
|
|
|
* rename a file or folder in the archive
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param string $source
|
|
|
|
|
* @param string $dest
|
2012-03-02 18:57:03 -05:00
|
|
|
* @return bool
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
abstract public function rename($source, $dest);
|
2012-03-02 18:57:03 -05:00
|
|
|
/**
|
|
|
|
|
* get the uncompressed size of a file in the archive
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param string $path
|
2012-03-02 18:57:03 -05:00
|
|
|
* @return int
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
abstract public function filesize($path);
|
2012-03-02 18:57:03 -05:00
|
|
|
/**
|
|
|
|
|
* get the last modified time of a file in the archive
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param string $path
|
2012-03-02 18:57:03 -05:00
|
|
|
* @return int
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
abstract public function mtime($path);
|
2012-03-02 18:57:03 -05:00
|
|
|
/**
|
|
|
|
|
* get the files in a folder
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param string $path
|
2012-03-02 18:57:03 -05:00
|
|
|
* @return array
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
abstract public function getFolder($path);
|
2012-03-02 18:57:03 -05:00
|
|
|
/**
|
2013-07-15 23:56:52 -04:00
|
|
|
* get all files in the archive
|
2012-03-02 18:57:03 -05:00
|
|
|
* @return array
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
abstract public function getFiles();
|
2012-03-02 18:57:03 -05:00
|
|
|
/**
|
|
|
|
|
* get the content of a file
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param string $path
|
2012-03-02 18:57:03 -05:00
|
|
|
* @return string
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
abstract public function getFile($path);
|
2012-03-02 18:57:03 -05:00
|
|
|
/**
|
|
|
|
|
* extract a single file from the archive
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param string $path
|
|
|
|
|
* @param string $dest
|
2012-03-02 18:57:03 -05:00
|
|
|
* @return bool
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
abstract public function extractFile($path, $dest);
|
2012-03-28 16:31:45 -04:00
|
|
|
/**
|
|
|
|
|
* extract the archive
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param string $dest
|
2012-03-28 16:31:45 -04:00
|
|
|
* @return bool
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
abstract public function extract($dest);
|
2012-03-02 18:57:03 -05:00
|
|
|
/**
|
|
|
|
|
* check if a file or folder exists in the archive
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param string $path
|
2012-03-02 18:57:03 -05:00
|
|
|
* @return bool
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
abstract public function fileExists($path);
|
2012-03-02 18:57:03 -05:00
|
|
|
/**
|
|
|
|
|
* remove a file or folder from the archive
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param string $path
|
2012-03-02 18:57:03 -05:00
|
|
|
* @return bool
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
abstract public function remove($path);
|
2012-03-02 18:57:03 -05:00
|
|
|
/**
|
|
|
|
|
* get a file handler
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param string $path
|
|
|
|
|
* @param string $mode
|
2012-03-02 18:57:03 -05:00
|
|
|
* @return resource
|
|
|
|
|
*/
|
2020-04-10 10:51:06 -04:00
|
|
|
abstract public function getStream($path, $mode);
|
2012-08-17 19:17:28 -04:00
|
|
|
/**
|
2013-07-15 23:56:52 -04:00
|
|
|
* add a folder and all its content
|
2012-08-17 19:17:28 -04:00
|
|
|
* @param string $path
|
2014-02-08 05:47:55 -05:00
|
|
|
* @param string $source
|
2012-08-17 19:17:28 -04:00
|
|
|
*/
|
2017-07-23 15:03:26 -04:00
|
|
|
public function addRecursive($path, $source) {
|
2013-09-04 07:06:04 -04:00
|
|
|
$dh = opendir($source);
|
2020-04-10 08:19:56 -04:00
|
|
|
if (is_resource($dh)) {
|
2012-08-17 19:17:28 -04:00
|
|
|
$this->addFolder($path);
|
2013-08-19 06:04:53 -04:00
|
|
|
while (($file = readdir($dh)) !== false) {
|
2020-04-10 08:19:56 -04:00
|
|
|
if ($file === '.' || $file === '..') {
|
2012-08-17 19:17:28 -04:00
|
|
|
continue;
|
|
|
|
|
}
|
2020-04-10 08:19:56 -04:00
|
|
|
if (is_dir($source.'/'.$file)) {
|
2012-10-05 06:39:43 -04:00
|
|
|
$this->addRecursive($path.'/'.$file, $source.'/'.$file);
|
2020-04-10 08:19:56 -04:00
|
|
|
} else {
|
2012-10-05 06:39:43 -04:00
|
|
|
$this->addFile($path.'/'.$file, $source.'/'.$file);
|
2012-08-17 19:17:28 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-03-02 18:57:03 -05:00
|
|
|
}
|