xref: /dokuwiki/vendor/splitbrain/php-archive/src/FileInfo.php (revision 530d672995040c320a9506a0b93258a49c4d0b29)
1605f8e8dSAndreas Gohr<?php
2605f8e8dSAndreas Gohr
3605f8e8dSAndreas Gohrnamespace splitbrain\PHPArchive;
4605f8e8dSAndreas Gohr
5605f8e8dSAndreas Gohr/**
6605f8e8dSAndreas Gohr * Class FileInfo
7605f8e8dSAndreas Gohr *
8605f8e8dSAndreas Gohr * stores meta data about a file in an Archive
9605f8e8dSAndreas Gohr *
10605f8e8dSAndreas Gohr * @author  Andreas Gohr <andi@splitbrain.org>
11605f8e8dSAndreas Gohr * @package splitbrain\PHPArchive
12605f8e8dSAndreas Gohr * @license MIT
13605f8e8dSAndreas Gohr */
14605f8e8dSAndreas Gohrclass FileInfo
15605f8e8dSAndreas Gohr{
16605f8e8dSAndreas Gohr
17605f8e8dSAndreas Gohr    protected $isdir = false;
18605f8e8dSAndreas Gohr    protected $path = '';
19605f8e8dSAndreas Gohr    protected $size = 0;
20605f8e8dSAndreas Gohr    protected $csize = 0;
21605f8e8dSAndreas Gohr    protected $mtime = 0;
22605f8e8dSAndreas Gohr    protected $mode = 0664;
23605f8e8dSAndreas Gohr    protected $owner = '';
24605f8e8dSAndreas Gohr    protected $group = '';
25605f8e8dSAndreas Gohr    protected $uid = 0;
26605f8e8dSAndreas Gohr    protected $gid = 0;
27605f8e8dSAndreas Gohr    protected $comment = '';
28605f8e8dSAndreas Gohr
29605f8e8dSAndreas Gohr    /**
30605f8e8dSAndreas Gohr     * initialize dynamic defaults
31605f8e8dSAndreas Gohr     *
32605f8e8dSAndreas Gohr     * @param string $path The path of the file, can also be set later through setPath()
33605f8e8dSAndreas Gohr     */
34605f8e8dSAndreas Gohr    public function __construct($path = '')
35605f8e8dSAndreas Gohr    {
36605f8e8dSAndreas Gohr        $this->mtime = time();
37605f8e8dSAndreas Gohr        $this->setPath($path);
38605f8e8dSAndreas Gohr    }
39605f8e8dSAndreas Gohr
40605f8e8dSAndreas Gohr    /**
41605f8e8dSAndreas Gohr     * Factory to build FileInfo from existing file or directory
42605f8e8dSAndreas Gohr     *
43605f8e8dSAndreas Gohr     * @param string $path path to a file on the local file system
44605f8e8dSAndreas Gohr     * @param string $as   optional path to use inside the archive
45605f8e8dSAndreas Gohr     * @throws FileInfoException
46605f8e8dSAndreas Gohr     * @return FileInfo
47605f8e8dSAndreas Gohr     */
48605f8e8dSAndreas Gohr    public static function fromPath($path, $as = '')
49605f8e8dSAndreas Gohr    {
50605f8e8dSAndreas Gohr        clearstatcache(false, $path);
51605f8e8dSAndreas Gohr
52605f8e8dSAndreas Gohr        if (!file_exists($path)) {
53605f8e8dSAndreas Gohr            throw new FileInfoException("$path does not exist");
54605f8e8dSAndreas Gohr        }
55605f8e8dSAndreas Gohr
56605f8e8dSAndreas Gohr        $stat = stat($path);
57605f8e8dSAndreas Gohr        $file = new FileInfo();
58605f8e8dSAndreas Gohr
59605f8e8dSAndreas Gohr        $file->setPath($path);
60605f8e8dSAndreas Gohr        $file->setIsdir(is_dir($path));
61605f8e8dSAndreas Gohr        $file->setMode(fileperms($path));
62605f8e8dSAndreas Gohr        $file->setOwner(fileowner($path));
63605f8e8dSAndreas Gohr        $file->setGroup(filegroup($path));
64*530d6729SAndreas Gohr        $file->setSize(filesize($path));
65605f8e8dSAndreas Gohr        $file->setUid($stat['uid']);
66605f8e8dSAndreas Gohr        $file->setGid($stat['gid']);
67605f8e8dSAndreas Gohr        $file->setMtime($stat['mtime']);
68605f8e8dSAndreas Gohr
69605f8e8dSAndreas Gohr        if ($as) {
70605f8e8dSAndreas Gohr            $file->setPath($as);
71605f8e8dSAndreas Gohr        }
72605f8e8dSAndreas Gohr
73605f8e8dSAndreas Gohr        return $file;
74605f8e8dSAndreas Gohr    }
75605f8e8dSAndreas Gohr
76605f8e8dSAndreas Gohr    /**
77605f8e8dSAndreas Gohr     * @return int
78605f8e8dSAndreas Gohr     */
79605f8e8dSAndreas Gohr    public function getSize()
80605f8e8dSAndreas Gohr    {
81605f8e8dSAndreas Gohr        return $this->size;
82605f8e8dSAndreas Gohr    }
83605f8e8dSAndreas Gohr
84605f8e8dSAndreas Gohr    /**
85605f8e8dSAndreas Gohr     * @param int $size
86605f8e8dSAndreas Gohr     */
87605f8e8dSAndreas Gohr    public function setSize($size)
88605f8e8dSAndreas Gohr    {
89605f8e8dSAndreas Gohr        $this->size = $size;
90605f8e8dSAndreas Gohr    }
91605f8e8dSAndreas Gohr
92605f8e8dSAndreas Gohr    /**
93605f8e8dSAndreas Gohr     * @return int
94605f8e8dSAndreas Gohr     */
95605f8e8dSAndreas Gohr    public function getCompressedSize()
96605f8e8dSAndreas Gohr    {
97605f8e8dSAndreas Gohr        return $this->csize;
98605f8e8dSAndreas Gohr    }
99605f8e8dSAndreas Gohr
100605f8e8dSAndreas Gohr    /**
101605f8e8dSAndreas Gohr     * @param int $csize
102605f8e8dSAndreas Gohr     */
103605f8e8dSAndreas Gohr    public function setCompressedSize($csize)
104605f8e8dSAndreas Gohr    {
105605f8e8dSAndreas Gohr        $this->csize = $csize;
106605f8e8dSAndreas Gohr    }
107605f8e8dSAndreas Gohr
108605f8e8dSAndreas Gohr    /**
109605f8e8dSAndreas Gohr     * @return int
110605f8e8dSAndreas Gohr     */
111605f8e8dSAndreas Gohr    public function getMtime()
112605f8e8dSAndreas Gohr    {
113605f8e8dSAndreas Gohr        return $this->mtime;
114605f8e8dSAndreas Gohr    }
115605f8e8dSAndreas Gohr
116605f8e8dSAndreas Gohr    /**
117605f8e8dSAndreas Gohr     * @param int $mtime
118605f8e8dSAndreas Gohr     */
119605f8e8dSAndreas Gohr    public function setMtime($mtime)
120605f8e8dSAndreas Gohr    {
121605f8e8dSAndreas Gohr        $this->mtime = $mtime;
122605f8e8dSAndreas Gohr    }
123605f8e8dSAndreas Gohr
124605f8e8dSAndreas Gohr    /**
125605f8e8dSAndreas Gohr     * @return int
126605f8e8dSAndreas Gohr     */
127605f8e8dSAndreas Gohr    public function getGid()
128605f8e8dSAndreas Gohr    {
129605f8e8dSAndreas Gohr        return $this->gid;
130605f8e8dSAndreas Gohr    }
131605f8e8dSAndreas Gohr
132605f8e8dSAndreas Gohr    /**
133605f8e8dSAndreas Gohr     * @param int $gid
134605f8e8dSAndreas Gohr     */
135605f8e8dSAndreas Gohr    public function setGid($gid)
136605f8e8dSAndreas Gohr    {
137605f8e8dSAndreas Gohr        $this->gid = $gid;
138605f8e8dSAndreas Gohr    }
139605f8e8dSAndreas Gohr
140605f8e8dSAndreas Gohr    /**
141605f8e8dSAndreas Gohr     * @return int
142605f8e8dSAndreas Gohr     */
143605f8e8dSAndreas Gohr    public function getUid()
144605f8e8dSAndreas Gohr    {
145605f8e8dSAndreas Gohr        return $this->uid;
146605f8e8dSAndreas Gohr    }
147605f8e8dSAndreas Gohr
148605f8e8dSAndreas Gohr    /**
149605f8e8dSAndreas Gohr     * @param int $uid
150605f8e8dSAndreas Gohr     */
151605f8e8dSAndreas Gohr    public function setUid($uid)
152605f8e8dSAndreas Gohr    {
153605f8e8dSAndreas Gohr        $this->uid = $uid;
154605f8e8dSAndreas Gohr    }
155605f8e8dSAndreas Gohr
156605f8e8dSAndreas Gohr    /**
157605f8e8dSAndreas Gohr     * @return string
158605f8e8dSAndreas Gohr     */
159605f8e8dSAndreas Gohr    public function getComment()
160605f8e8dSAndreas Gohr    {
161605f8e8dSAndreas Gohr        return $this->comment;
162605f8e8dSAndreas Gohr    }
163605f8e8dSAndreas Gohr
164605f8e8dSAndreas Gohr    /**
165605f8e8dSAndreas Gohr     * @param string $comment
166605f8e8dSAndreas Gohr     */
167605f8e8dSAndreas Gohr    public function setComment($comment)
168605f8e8dSAndreas Gohr    {
169605f8e8dSAndreas Gohr        $this->comment = $comment;
170605f8e8dSAndreas Gohr    }
171605f8e8dSAndreas Gohr
172605f8e8dSAndreas Gohr    /**
173605f8e8dSAndreas Gohr     * @return string
174605f8e8dSAndreas Gohr     */
175605f8e8dSAndreas Gohr    public function getGroup()
176605f8e8dSAndreas Gohr    {
177605f8e8dSAndreas Gohr        return $this->group;
178605f8e8dSAndreas Gohr    }
179605f8e8dSAndreas Gohr
180605f8e8dSAndreas Gohr    /**
181605f8e8dSAndreas Gohr     * @param string $group
182605f8e8dSAndreas Gohr     */
183605f8e8dSAndreas Gohr    public function setGroup($group)
184605f8e8dSAndreas Gohr    {
185605f8e8dSAndreas Gohr        $this->group = $group;
186605f8e8dSAndreas Gohr    }
187605f8e8dSAndreas Gohr
188605f8e8dSAndreas Gohr    /**
189605f8e8dSAndreas Gohr     * @return boolean
190605f8e8dSAndreas Gohr     */
191605f8e8dSAndreas Gohr    public function getIsdir()
192605f8e8dSAndreas Gohr    {
193605f8e8dSAndreas Gohr        return $this->isdir;
194605f8e8dSAndreas Gohr    }
195605f8e8dSAndreas Gohr
196605f8e8dSAndreas Gohr    /**
197605f8e8dSAndreas Gohr     * @param boolean $isdir
198605f8e8dSAndreas Gohr     */
199605f8e8dSAndreas Gohr    public function setIsdir($isdir)
200605f8e8dSAndreas Gohr    {
201605f8e8dSAndreas Gohr        // default mode for directories
202605f8e8dSAndreas Gohr        if ($isdir && $this->mode === 0664) {
203605f8e8dSAndreas Gohr            $this->mode = 0775;
204605f8e8dSAndreas Gohr        }
205605f8e8dSAndreas Gohr        $this->isdir = $isdir;
206605f8e8dSAndreas Gohr    }
207605f8e8dSAndreas Gohr
208605f8e8dSAndreas Gohr    /**
209605f8e8dSAndreas Gohr     * @return int
210605f8e8dSAndreas Gohr     */
211605f8e8dSAndreas Gohr    public function getMode()
212605f8e8dSAndreas Gohr    {
213605f8e8dSAndreas Gohr        return $this->mode;
214605f8e8dSAndreas Gohr    }
215605f8e8dSAndreas Gohr
216605f8e8dSAndreas Gohr    /**
217605f8e8dSAndreas Gohr     * @param int $mode
218605f8e8dSAndreas Gohr     */
219605f8e8dSAndreas Gohr    public function setMode($mode)
220605f8e8dSAndreas Gohr    {
221605f8e8dSAndreas Gohr        $this->mode = $mode;
222605f8e8dSAndreas Gohr    }
223605f8e8dSAndreas Gohr
224605f8e8dSAndreas Gohr    /**
225605f8e8dSAndreas Gohr     * @return string
226605f8e8dSAndreas Gohr     */
227605f8e8dSAndreas Gohr    public function getOwner()
228605f8e8dSAndreas Gohr    {
229605f8e8dSAndreas Gohr        return $this->owner;
230605f8e8dSAndreas Gohr    }
231605f8e8dSAndreas Gohr
232605f8e8dSAndreas Gohr    /**
233605f8e8dSAndreas Gohr     * @param string $owner
234605f8e8dSAndreas Gohr     */
235605f8e8dSAndreas Gohr    public function setOwner($owner)
236605f8e8dSAndreas Gohr    {
237605f8e8dSAndreas Gohr        $this->owner = $owner;
238605f8e8dSAndreas Gohr    }
239605f8e8dSAndreas Gohr
240605f8e8dSAndreas Gohr    /**
241605f8e8dSAndreas Gohr     * @return string
242605f8e8dSAndreas Gohr     */
243605f8e8dSAndreas Gohr    public function getPath()
244605f8e8dSAndreas Gohr    {
245605f8e8dSAndreas Gohr        return $this->path;
246605f8e8dSAndreas Gohr    }
247605f8e8dSAndreas Gohr
248605f8e8dSAndreas Gohr    /**
249605f8e8dSAndreas Gohr     * @param string $path
250605f8e8dSAndreas Gohr     */
251605f8e8dSAndreas Gohr    public function setPath($path)
252605f8e8dSAndreas Gohr    {
253605f8e8dSAndreas Gohr        $this->path = $this->cleanPath($path);
254605f8e8dSAndreas Gohr    }
255605f8e8dSAndreas Gohr
256605f8e8dSAndreas Gohr    /**
257605f8e8dSAndreas Gohr     * Cleans up a path and removes relative parts, also strips leading slashes
258605f8e8dSAndreas Gohr     *
259605f8e8dSAndreas Gohr     * @param string $path
260605f8e8dSAndreas Gohr     * @return string
261605f8e8dSAndreas Gohr     */
262605f8e8dSAndreas Gohr    protected function cleanPath($path)
263605f8e8dSAndreas Gohr    {
264605f8e8dSAndreas Gohr        $path    = str_replace('\\', '/', $path);
265605f8e8dSAndreas Gohr        $path    = explode('/', $path);
266605f8e8dSAndreas Gohr        $newpath = array();
267605f8e8dSAndreas Gohr        foreach ($path as $p) {
268605f8e8dSAndreas Gohr            if ($p === '' || $p === '.') {
269605f8e8dSAndreas Gohr                continue;
270605f8e8dSAndreas Gohr            }
271605f8e8dSAndreas Gohr            if ($p === '..') {
272605f8e8dSAndreas Gohr                array_pop($newpath);
273605f8e8dSAndreas Gohr                continue;
274605f8e8dSAndreas Gohr            }
275605f8e8dSAndreas Gohr            array_push($newpath, $p);
276605f8e8dSAndreas Gohr        }
277605f8e8dSAndreas Gohr        return trim(implode('/', $newpath), '/');
278605f8e8dSAndreas Gohr    }
279605f8e8dSAndreas Gohr
280605f8e8dSAndreas Gohr    /**
281605f8e8dSAndreas Gohr     * Strip given prefix or number of path segments from the filename
282605f8e8dSAndreas Gohr     *
283605f8e8dSAndreas Gohr     * The $strip parameter allows you to strip a certain number of path components from the filenames
284605f8e8dSAndreas Gohr     * found in the tar file, similar to the --strip-components feature of GNU tar. This is triggered when
285605f8e8dSAndreas Gohr     * an integer is passed as $strip.
286605f8e8dSAndreas Gohr     * Alternatively a fixed string prefix may be passed in $strip. If the filename matches this prefix,
287605f8e8dSAndreas Gohr     * the prefix will be stripped. It is recommended to give prefixes with a trailing slash.
288605f8e8dSAndreas Gohr     *
289605f8e8dSAndreas Gohr     * @param  int|string $strip
290605f8e8dSAndreas Gohr     * @return FileInfo
291605f8e8dSAndreas Gohr     */
292605f8e8dSAndreas Gohr    public function strip($strip)
293605f8e8dSAndreas Gohr    {
294605f8e8dSAndreas Gohr        $filename = $this->getPath();
295605f8e8dSAndreas Gohr        $striplen = strlen($strip);
296605f8e8dSAndreas Gohr        if (is_int($strip)) {
297605f8e8dSAndreas Gohr            // if $strip is an integer we strip this many path components
298605f8e8dSAndreas Gohr            $parts = explode('/', $filename);
299605f8e8dSAndreas Gohr            if (!$this->getIsdir()) {
300605f8e8dSAndreas Gohr                $base = array_pop($parts); // keep filename itself
301605f8e8dSAndreas Gohr            } else {
302605f8e8dSAndreas Gohr                $base = '';
303605f8e8dSAndreas Gohr            }
304605f8e8dSAndreas Gohr            $filename = join('/', array_slice($parts, $strip));
305605f8e8dSAndreas Gohr            if ($base) {
306605f8e8dSAndreas Gohr                $filename .= "/$base";
307605f8e8dSAndreas Gohr            }
308605f8e8dSAndreas Gohr        } else {
309605f8e8dSAndreas Gohr            // if strip is a string, we strip a prefix here
310605f8e8dSAndreas Gohr            if (substr($filename, 0, $striplen) == $strip) {
311605f8e8dSAndreas Gohr                $filename = substr($filename, $striplen);
312605f8e8dSAndreas Gohr            }
313605f8e8dSAndreas Gohr        }
314605f8e8dSAndreas Gohr
315605f8e8dSAndreas Gohr        $this->setPath($filename);
316605f8e8dSAndreas Gohr    }
317605f8e8dSAndreas Gohr
318605f8e8dSAndreas Gohr    /**
319605f8e8dSAndreas Gohr     * Does the file match the given include and exclude expressions?
320605f8e8dSAndreas Gohr     *
321605f8e8dSAndreas Gohr     * Exclude rules take precedence over include rules
322605f8e8dSAndreas Gohr     *
323605f8e8dSAndreas Gohr     * @param string $include Regular expression of files to include
324605f8e8dSAndreas Gohr     * @param string $exclude Regular expression of files to exclude
325605f8e8dSAndreas Gohr     * @return bool
326605f8e8dSAndreas Gohr     */
327605f8e8dSAndreas Gohr    public function match($include = '', $exclude = '')
328605f8e8dSAndreas Gohr    {
329605f8e8dSAndreas Gohr        $extract = true;
330605f8e8dSAndreas Gohr        if ($include && !preg_match($include, $this->getPath())) {
331605f8e8dSAndreas Gohr            $extract = false;
332605f8e8dSAndreas Gohr        }
333605f8e8dSAndreas Gohr        if ($exclude && preg_match($exclude, $this->getPath())) {
334605f8e8dSAndreas Gohr            $extract = false;
335605f8e8dSAndreas Gohr        }
336605f8e8dSAndreas Gohr
337605f8e8dSAndreas Gohr        return $extract;
338605f8e8dSAndreas Gohr    }
339605f8e8dSAndreas Gohr}
340605f8e8dSAndreas Gohr
341605f8e8dSAndreas Gohrclass FileInfoException extends \Exception
342605f8e8dSAndreas Gohr{
343605f8e8dSAndreas Gohr}