nextcloud/lib/archive.php

137 lines
2.9 KiB
PHP
Raw Normal View History

<?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{
/**
* open any of the supporeted archive types
* @param string path
* @return OC_Archive
*/
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) {
case '.zip':
return new OC_Archive_ZIP($path);
case '.gz':
case '.bz':
case '.bz2':
2012-10-05 14:39:43 +04:00
if(strpos($path, '.tar.')) {
return new OC_Archive_TAR($path);
}
break;
case '.tgz':
return new OC_Archive_TAR($path);
}
}
2012-08-29 10:38:33 +04:00
abstract function __construct($source);
/**
* add an empty folder to the archive
* @param string path
* @return bool
*/
abstract function addFolder($path);
/**
* add a file to the archive
* @param string path
* @param string source either a local file or string data
* @return bool
*/
2012-11-02 22:53:02 +04:00
abstract function addFile($path, $source='');
/**
* rename a file or folder in the archive
* @param string source
* @param string dest
* @return bool
*/
2012-11-02 22:53:02 +04:00
abstract function rename($source, $dest);
/**
* get the uncompressed size of a file in the archive
* @param string path
* @return int
*/
abstract function filesize($path);
/**
* get the last modified time of a file in the archive
* @param string path
* @return int
*/
abstract function mtime($path);
/**
* get the files in a folder
* @param path
* @return array
*/
abstract function getFolder($path);
/**
*get all files in the archive
* @return array
*/
abstract function getFiles();
/**
* get the content of a file
* @param string path
* @return string
*/
abstract function getFile($path);
/**
* extract a single file from the archive
* @param string path
* @param string dest
* @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
* @param string path
* @param string dest
* @return bool
*/
abstract function extract($dest);
/**
* check if a file or folder exists in the archive
* @param string path
* @return bool
*/
abstract function fileExists($path);
/**
* remove a file or folder from the archive
* @param string path
* @return bool
*/
abstract function remove($path);
/**
* get a file handler
* @param string path
* @param string mode
* @return resource
*/
2012-11-02 22:53:02 +04:00
abstract function getStream($path, $mode);
2012-08-18 03:17:28 +04:00
/**
* add a folder and all it's content
* @param string $path
* @param string source
* @return bool
*/
2012-11-02 22:53:02 +04:00
function addRecursive($path, $source) {
2012-09-07 17:22:01 +04:00
if($dh=opendir($source)) {
2012-08-18 03:17:28 +04:00
$this->addFolder($path);
2012-09-07 17:22:01 +04:00
while($file=readdir($dh)) {
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
}
}
}
}
}