Use realpath() to secure file and path names.
[core.git] / inc / classes / main / file_directories / input / class_FrameworkFileInputPointer.php
1 <?php
2 /**
3  * A class for reading files
4  *
5  * @author              Roland Haeder <webmaster@shipsimu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 Core Developer Team
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.shipsimu.org
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <http://www.gnu.org/licenses/>.
23  */
24 class FrameworkFileInputPointer extends BaseFileIo {
25         /**
26          * Protected constructor
27          *
28          * @return      void
29          */
30         protected function __construct () {
31                 // Call parent constructor
32                 parent::__construct(__CLASS__);
33         }
34
35         /**
36          * Create a file pointer based on the given file. The file will also
37          * be verified here.
38          *
39          * @param               $fileName       The file name we shall pass to fopen()
40          * @throws      FileIsEmptyException    If the provided file name is empty.
41          * @throws      FileIoException         If fopen() returns not a file resource
42          * @return      void
43          */
44         public static final function createFrameworkFileInputPointer ($fileName) {
45                 // Secure with realpath()
46                 $fileName = realpath($fileName);
47
48                 // Some pre-sanity checks...
49                 if ((is_null($fileName)) || (empty($fileName))) {
50                         // No filename given
51                         throw new FileIsEmptyException(NULL, self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
52                 } elseif (!file_exists($fileName)) {
53                         // File does not exist!
54                         throw new FileIoException($fileName, self::EXCEPTION_FILE_NOT_FOUND);
55                 } elseif (!is_readable($fileName)) {
56                         // File does not exist!
57                         throw new FileReadProtectedException($fileName, self::EXCEPTION_FILE_CANNOT_BE_READ);
58                 }
59
60                 // Try to open a handler
61                 $filePointer = fopen($fileName, 'rb');
62                 if ((is_null($filePointer)) || ($filePointer === FALSE)) {
63                         // Something bad happend
64                         throw new FileIoException($fileName, self::EXCEPTION_FILE_POINTER_INVALID);
65                 } // END - if
66
67                 // Create new instance
68                 $pointerInstance = new FrameworkFileInputPointer();
69
70                 // Set file pointer and file name
71                 $pointerInstance->setPointer($filePointer);
72                 $pointerInstance->setFileName($fileName);
73
74                 // Return the instance
75                 return $pointerInstance;
76         }
77
78         /**
79          * Read data a file pointer
80          *
81          * @return      mixed   The result of fread()
82          * @throws      NullPointerException    If the file pointer instance
83          *                                                                      is not set by setPointer()
84          * @throws      InvalidResourceException        If there is being set
85          */
86         public function readFromFile () {
87                 if (is_null($this->getPointer())) {
88                         // Pointer not initialized
89                         throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
90                 } elseif (!is_resource($this->getPointer())) {
91                         // Pointer is not a valid resource!
92                         throw new InvalidResourceException($this, self::EXCEPTION_INVALID_RESOURCE);
93                 }
94
95                 // Read data from the file pointer and return it
96                 return fread($this->getPointer(), 1024);
97         }
98 }
99
100 // [EOF]
101 ?>