Blame view

sources/lib/private/archive/tar.php 7.73 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <?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.
   */
  
  require_once OC::$THIRDPARTYROOT . '/3rdparty/Archive/Tar.php';
  
  class OC_Archive_TAR extends OC_Archive{
  	const PLAIN=0;
  	const GZIP=1;
  	const BZIP=2;
  
  	private $fileList;
  	private $cachedHeaders;
  
  	/**
  	 * @var Archive_Tar tar
  	 */
  	private $tar=null;
  	private $path;
6d9380f96   Cédric Dupont   Update sources OC...
24
25
26
  	/**
  	 * @param string $source
  	 */
03e52840d   Kload   Init
27
28
29
30
31
32
33
34
  	function __construct($source) {
  		$types=array(null, 'gz', 'bz');
  		$this->path=$source;
  		$this->tar=new Archive_Tar($source, $types[self::getTarType($source)]);
  	}
  
  	/**
  	 * try to detect the type of tar compression
6d9380f96   Cédric Dupont   Update sources OC...
35
36
  	 * @param string $file
  	 * @return integer
03e52840d   Kload   Init
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
  	 */
  	static public function getTarType($file) {
  		if(strpos($file, '.')) {
  			$extension=substr($file, strrpos($file, '.'));
  			switch($extension) {
  				case 'gz':
  				case 'tgz':
  					return self::GZIP;
  				case 'bz':
  				case 'bz2':
  					return self::BZIP;
  				default:
  					return self::PLAIN;
  			}
  		}else{
  			return self::PLAIN;
  		}
  	}
  
  	/**
  	 * add an empty folder to the archive
6d9380f96   Cédric Dupont   Update sources OC...
58
  	 * @param string $path
03e52840d   Kload   Init
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
  	 * @return bool
  	 */
  	function addFolder($path) {
  		$tmpBase=OC_Helper::tmpFolder();
  		if(substr($path, -1, 1)!='/') {
  			$path.='/';
  		}
  		if($this->fileExists($path)) {
  			return false;
  		}
  		$parts=explode('/', $path);
  		$folder=$tmpBase;
  		foreach($parts as $part) {
  			$folder.='/'.$part;
  			if(!is_dir($folder)) {
  				mkdir($folder);
  			}
  		}
  		$result=$this->tar->addModify(array($tmpBase.$path), '', $tmpBase);
  		rmdir($tmpBase.$path);
  		$this->fileList=false;
  		$this->cachedHeaders=false;
  		return $result;
  	}
  	/**
  	 * add a file to the archive
6d9380f96   Cédric Dupont   Update sources OC...
85
86
  	 * @param string $path
  	 * @param string $source either a local file or string data
03e52840d   Kload   Init
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
  	 * @return bool
  	 */
  	function addFile($path, $source='') {
  		if($this->fileExists($path)) {
  			$this->remove($path);
  		}
  		if($source and $source[0]=='/' and file_exists($source)) {
  			$header=array();
  			$dummy='';
  			$this->tar->_openAppend();
  			$result=$this->tar->_addfile($source, $header, $dummy, $dummy, $path);
  		}else{
  			$result=$this->tar->addString($path, $source);
  		}
  		$this->fileList=false;
  		$this->cachedHeaders=false;
  		return $result;
  	}
  
  	/**
  	 * rename a file or folder in the archive
6d9380f96   Cédric Dupont   Update sources OC...
108
109
  	 * @param string $source
  	 * @param string $dest
03e52840d   Kload   Init
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
  	 * @return bool
  	 */
  	function rename($source, $dest) {
  		//no proper way to delete, rename entire archive, rename file and remake archive
  		$tmp=OCP\Files::tmpFolder();
  		$this->tar->extract($tmp);
  		rename($tmp.$source, $tmp.$dest);
  		$this->tar=null;
  		unlink($this->path);
  		$types=array(null, 'gz', 'bz');
  		$this->tar=new Archive_Tar($this->path, $types[self::getTarType($this->path)]);
  		$this->tar->createModify(array($tmp), '', $tmp.'/');
  		$this->fileList=false;
  		$this->cachedHeaders=false;
  		return true;
  	}
6d9380f96   Cédric Dupont   Update sources OC...
126
127
128
  	/**
  	 * @param string $file
  	 */
03e52840d   Kload   Init
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
  	private function getHeader($file) {
  		if ( ! $this->cachedHeaders ) {
  			$this->cachedHeaders = $this->tar->listContent();
  		}
  		foreach($this->cachedHeaders as $header) {
  			if(        $file     == $header['filename']
  				or     $file.'/' == $header['filename']
  				or '/'.$file.'/' == $header['filename']
  				or '/'.$file     == $header['filename']) {
  				return $header;
  			}
  		}
  		return null;
  	}
  
  	/**
  	 * get the uncompressed size of a file in the archive
6d9380f96   Cédric Dupont   Update sources OC...
146
  	 * @param string $path
03e52840d   Kload   Init
147
148
149
150
151
152
153
154
  	 * @return int
  	 */
  	function filesize($path) {
  		$stat=$this->getHeader($path);
  		return $stat['size'];
  	}
  	/**
  	 * get the last modified time of a file in the archive
6d9380f96   Cédric Dupont   Update sources OC...
155
  	 * @param string $path
03e52840d   Kload   Init
156
157
158
159
160
161
162
163
164
  	 * @return int
  	 */
  	function mtime($path) {
  		$stat=$this->getHeader($path);
  		return $stat['mtime'];
  	}
  
  	/**
  	 * get the files in a folder
6d9380f96   Cédric Dupont   Update sources OC...
165
  	 * @param string $path
03e52840d   Kload   Init
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
  	 * @return array
  	 */
  	function getFolder($path) {
  		$files=$this->getFiles();
  		$folderContent=array();
  		$pathLength=strlen($path);
  		foreach($files as $file) {
  			if($file[0]=='/') {
  				$file=substr($file, 1);
  			}
  			if(substr($file, 0, $pathLength)==$path and $file!=$path) {
  				$result=substr($file, $pathLength);
  				if($pos=strpos($result, '/')) {
  					$result=substr($result, 0, $pos+1);
  				}
  				if(array_search($result, $folderContent)===false) {
  					$folderContent[]=$result;
  				}
  			}
  		}
  		return $folderContent;
  	}
  	/**
31b7f2792   Kload   Upgrade to ownclo...
189
  	 * get all files in the archive
03e52840d   Kload   Init
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
  	 * @return array
  	 */
  	function getFiles() {
  		if($this->fileList) {
  			return $this->fileList;
  		}
  		if ( ! $this->cachedHeaders ) {
  			$this->cachedHeaders = $this->tar->listContent();
  		}
  		$files=array();
  		foreach($this->cachedHeaders as $header) {
  			$files[]=$header['filename'];
  		}
  		$this->fileList=$files;
  		return $files;
  	}
  	/**
  	 * get the content of a file
6d9380f96   Cédric Dupont   Update sources OC...
208
  	 * @param string $path
03e52840d   Kload   Init
209
210
211
212
213
214
215
  	 * @return string
  	 */
  	function getFile($path) {
  		return $this->tar->extractInString($path);
  	}
  	/**
  	 * extract a single file from the archive
6d9380f96   Cédric Dupont   Update sources OC...
216
217
  	 * @param string $path
  	 * @param string $dest
03e52840d   Kload   Init
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
  	 * @return bool
  	 */
  	function extractFile($path, $dest) {
  		$tmp=OCP\Files::tmpFolder();
  		if(!$this->fileExists($path)) {
  			return false;
  		}
  		if($this->fileExists('/'.$path)) {
  			$success=$this->tar->extractList(array('/'.$path), $tmp);
  		}else{
  			$success=$this->tar->extractList(array($path), $tmp);
  		}
  		if($success) {
  			rename($tmp.$path, $dest);
  		}
  		OCP\Files::rmdirr($tmp);
  		return $success;
  	}
  	/**
  	 * extract the archive
6d9380f96   Cédric Dupont   Update sources OC...
238
  	 * @param string $dest
03e52840d   Kload   Init
239
240
241
242
243
244
245
  	 * @return bool
  	 */
  	function extract($dest) {
  		return $this->tar->extract($dest);
  	}
  	/**
  	 * check if a file or folder exists in the archive
6d9380f96   Cédric Dupont   Update sources OC...
246
  	 * @param string $path
03e52840d   Kload   Init
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
  	 * @return bool
  	 */
  	function fileExists($path) {
  		$files=$this->getFiles();
  		if((array_search($path, $files)!==false) or (array_search($path.'/', $files)!==false)) {
  			return true;
  		}else{
  			$folderPath=$path;
  			if(substr($folderPath, -1, 1)!='/') {
  				$folderPath.='/';
  			}
  			$pathLength=strlen($folderPath);
  			foreach($files as $file) {
  				if(strlen($file)>$pathLength and substr($file, 0, $pathLength)==$folderPath) {
  					return true;
  				}
  			}
  		}
  		if($path[0]!='/') {//not all programs agree on the use of a leading /
  			return $this->fileExists('/'.$path);
  		}else{
  			return false;
  		}
  	}
  
  	/**
  	 * remove a file or folder from the archive
6d9380f96   Cédric Dupont   Update sources OC...
274
  	 * @param string $path
03e52840d   Kload   Init
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
  	 * @return bool
  	 */
  	function remove($path) {
  		if(!$this->fileExists($path)) {
  			return false;
  		}
  		$this->fileList=false;
  		$this->cachedHeaders=false;
  		//no proper way to delete, extract entire archive, delete file and remake archive
  		$tmp=OCP\Files::tmpFolder();
  		$this->tar->extract($tmp);
  		OCP\Files::rmdirr($tmp.$path);
  		$this->tar=null;
  		unlink($this->path);
  		$this->reopen();
  		$this->tar->createModify(array($tmp), '', $tmp);
  		return true;
  	}
  	/**
  	 * get a file handler
6d9380f96   Cédric Dupont   Update sources OC...
295
296
  	 * @param string $path
  	 * @param string $mode
03e52840d   Kload   Init
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
  	 * @return resource
  	 */
  	function getStream($path, $mode) {
  		if(strrpos($path, '.')!==false) {
  			$ext=substr($path, strrpos($path, '.'));
  		}else{
  			$ext='';
  		}
  		$tmpFile=OCP\Files::tmpFile($ext);
  		if($this->fileExists($path)) {
  			$this->extractFile($path, $tmpFile);
  		}elseif($mode=='r' or $mode=='rb') {
  			return false;
  		}
  		if($mode=='r' or $mode=='rb') {
  			return fopen($tmpFile, $mode);
  		}else{
  			\OC\Files\Stream\Close::registerCallback($tmpFile, array($this, 'writeBack'));
  			self::$tempFiles[$tmpFile]=$path;
  			return fopen('close://'.$tmpFile, $mode);
  		}
  	}
  
  	private static $tempFiles=array();
  	/**
  	 * write back temporary files
  	 */
  	function writeBack($tmpFile) {
  		if(isset(self::$tempFiles[$tmpFile])) {
  			$this->addFile(self::$tempFiles[$tmpFile], $tmpFile);
  			unlink($tmpFile);
  		}
  	}
  
  	/**
  	 * reopen the archive to ensure everything is written
  	 */
  	private function reopen() {
  		if($this->tar) {
  			$this->tar->_close();
  			$this->tar=null;
  		}
  		$types=array(null, 'gz', 'bz');
  		$this->tar=new Archive_Tar($this->path, $types[self::getTarType($this->path)]);
  	}
  }