@@ -4,9 +4,12 @@ |
||
4 | 4 | <?php foreach ($class as $i => $name) : ?> |
5 | 5 | <?php if ($i == count($class) - 1): ?> |
6 | 6 | <h1><?= $template->escape($name) ?></h1> |
7 | - <?php else: ?> |
|
7 | + <?php else { |
|
8 | + : ?> |
|
8 | 9 | <?= $template->escape($name).' \\' ?> |
9 | - <?php endif; ?> |
|
10 | + <?php endif; |
|
11 | +} |
|
12 | +?> |
|
10 | 13 | <?php endforeach; ?> |
11 | 14 | <?php if ($code): ?> |
12 | 15 | <span class="subtitle" title="Exception Code">(<?= $template->escape($code) ?>)</span> |
@@ -51,7 +51,7 @@ |
||
51 | 51 | */ |
52 | 52 | public function __construct(array $frames) |
53 | 53 | { |
54 | - $this->frames = array_map(function ($frame) { |
|
54 | + $this->frames = array_map(function($frame) { |
|
55 | 55 | return new Frame($frame); |
56 | 56 | }, $frames); |
57 | 57 | } |
@@ -219,13 +219,13 @@ |
||
219 | 219 | return $this->file; |
220 | 220 | } |
221 | 221 | |
222 | - /** |
|
223 | - * Sets the file path. |
|
224 | - * |
|
225 | - * @param string $file |
|
226 | - * |
|
227 | - * @return $this |
|
228 | - */ |
|
222 | + /** |
|
223 | + * Sets the file path. |
|
224 | + * |
|
225 | + * @param string $file |
|
226 | + * |
|
227 | + * @return $this |
|
228 | + */ |
|
229 | 229 | public function setFile($file) |
230 | 230 | { |
231 | 231 | $this->file = $file; |
@@ -39,7 +39,7 @@ |
||
39 | 39 | */ |
40 | 40 | public function register() |
41 | 41 | { |
42 | - $this->app->singleton('events', function ($app) { |
|
42 | + $this->app->singleton('events', function($app) { |
|
43 | 43 | return new Dispatcher($app); |
44 | 44 | }); |
45 | 45 | } |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | { |
203 | 203 | $result = []; |
204 | 204 | |
205 | - array_walk_recursive($array, function ($value) use (&$result) { |
|
205 | + array_walk_recursive($array, function($value) use (&$result) { |
|
206 | 206 | $result[] = $value; |
207 | 207 | }); |
208 | 208 | |
@@ -370,7 +370,7 @@ discard block |
||
370 | 370 | $array[$key] = []; |
371 | 371 | } |
372 | 372 | |
373 | - $array =& $array[$key]; |
|
373 | + $array = & $array[$key]; |
|
374 | 374 | } |
375 | 375 | |
376 | 376 | $array[array_shift($keys)] = $value; |
@@ -232,7 +232,9 @@ discard block |
||
232 | 232 | public static function first($array, callable $callback, $default = null) |
233 | 233 | { |
234 | 234 | foreach ($array as $key => $value) { |
235 | - if (call_user_func($callback, $key, $value)) return $value; |
|
235 | + if (call_user_func($callback, $key, $value)) { |
|
236 | + return $value; |
|
237 | + } |
|
236 | 238 | } |
237 | 239 | |
238 | 240 | return value($default); |
@@ -294,9 +296,13 @@ discard block |
||
294 | 296 | */ |
295 | 297 | public static function has($array, $key) |
296 | 298 | { |
297 | - if (empty($array) || is_null($key)) return false; |
|
299 | + if (empty($array) || is_null($key)) { |
|
300 | + return false; |
|
301 | + } |
|
298 | 302 | |
299 | - if (array_key_exists($key, $array)) return true; |
|
303 | + if (array_key_exists($key, $array)) { |
|
304 | + return true; |
|
305 | + } |
|
300 | 306 | |
301 | 307 | foreach (explode('.', $key) as $segment) { |
302 | 308 | if ( ! is_array($array) || ! static::exists($array, $segment)) { |
@@ -32,39 +32,39 @@ discard block |
||
32 | 32 | */ |
33 | 33 | class Arr |
34 | 34 | { |
35 | - /** |
|
36 | - * Determine whether the value is accessible in a array. |
|
37 | - * |
|
38 | - * @param mixed $value The default value |
|
39 | - * |
|
40 | - * @return bool |
|
41 | - * |
|
42 | - * @uses instanceof ArrayAccess |
|
43 | - */ |
|
44 | - public static function access($value) |
|
45 | - { |
|
46 | - return is_array($value) || $value instanceof ArrayAccess; |
|
47 | - } |
|
48 | - |
|
49 | - /** |
|
50 | - * Add an element to an array using "dot" notation if it doesn't exist. |
|
51 | - * |
|
52 | - * @param array $array The search array |
|
53 | - * @param string $key The key exist |
|
54 | - * @param mixed $value The default value |
|
55 | - * |
|
56 | - * @return array |
|
57 | - */ |
|
58 | - public static function add($array, $key, $value) |
|
59 | - { |
|
60 | - if (is_null(static::get($array, $key))) { |
|
61 | - static::set($array, $key, $value); |
|
62 | - } |
|
63 | - |
|
64 | - return $array; |
|
65 | - } |
|
66 | - |
|
67 | - /** |
|
35 | + /** |
|
36 | + * Determine whether the value is accessible in a array. |
|
37 | + * |
|
38 | + * @param mixed $value The default value |
|
39 | + * |
|
40 | + * @return bool |
|
41 | + * |
|
42 | + * @uses instanceof ArrayAccess |
|
43 | + */ |
|
44 | + public static function access($value) |
|
45 | + { |
|
46 | + return is_array($value) || $value instanceof ArrayAccess; |
|
47 | + } |
|
48 | + |
|
49 | + /** |
|
50 | + * Add an element to an array using "dot" notation if it doesn't exist. |
|
51 | + * |
|
52 | + * @param array $array The search array |
|
53 | + * @param string $key The key exist |
|
54 | + * @param mixed $value The default value |
|
55 | + * |
|
56 | + * @return array |
|
57 | + */ |
|
58 | + public static function add($array, $key, $value) |
|
59 | + { |
|
60 | + if (is_null(static::get($array, $key))) { |
|
61 | + static::set($array, $key, $value); |
|
62 | + } |
|
63 | + |
|
64 | + return $array; |
|
65 | + } |
|
66 | + |
|
67 | + /** |
|
68 | 68 | * Collapse the collection items into a single array. |
69 | 69 | * |
70 | 70 | * @return static |
@@ -74,389 +74,389 @@ discard block |
||
74 | 74 | $results = []; |
75 | 75 | |
76 | 76 | foreach ($array as $values) { |
77 | - if ($values instanceof Collection) { |
|
78 | - $values = $values->all(); |
|
79 | - } elseif ( ! is_array($values)) { |
|
80 | - continue; |
|
81 | - } |
|
77 | + if ($values instanceof Collection) { |
|
78 | + $values = $values->all(); |
|
79 | + } elseif ( ! is_array($values)) { |
|
80 | + continue; |
|
81 | + } |
|
82 | 82 | |
83 | - $results[] = $values; |
|
83 | + $results[] = $values; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | return array_merge([], ...$results); |
87 | 87 | } |
88 | 88 | |
89 | - /** |
|
90 | - * Divide an array into two arrays. One with keys and the other with values. |
|
91 | - * |
|
92 | - * @param array $array |
|
93 | - * |
|
94 | - * @return array |
|
95 | - */ |
|
96 | - public static function divide($array) |
|
97 | - { |
|
98 | - return [array_keys($array), array_values($array)]; |
|
99 | - } |
|
100 | - |
|
101 | - /** |
|
102 | - * Get all of the given array except for a specified array of items. |
|
103 | - * |
|
104 | - * @param array $array |
|
105 | - * @param string|array $keys |
|
106 | - * |
|
107 | - * @return array |
|
108 | - */ |
|
109 | - public static function except($array, $keys) |
|
110 | - { |
|
111 | - static::erase($array, $keys); |
|
112 | - |
|
113 | - return $array; |
|
114 | - } |
|
89 | + /** |
|
90 | + * Divide an array into two arrays. One with keys and the other with values. |
|
91 | + * |
|
92 | + * @param array $array |
|
93 | + * |
|
94 | + * @return array |
|
95 | + */ |
|
96 | + public static function divide($array) |
|
97 | + { |
|
98 | + return [array_keys($array), array_values($array)]; |
|
99 | + } |
|
100 | + |
|
101 | + /** |
|
102 | + * Get all of the given array except for a specified array of items. |
|
103 | + * |
|
104 | + * @param array $array |
|
105 | + * @param string|array $keys |
|
106 | + * |
|
107 | + * @return array |
|
108 | + */ |
|
109 | + public static function except($array, $keys) |
|
110 | + { |
|
111 | + static::erase($array, $keys); |
|
112 | + |
|
113 | + return $array; |
|
114 | + } |
|
115 | 115 | |
116 | - /** |
|
117 | - * Determine if the given key exists in the provided array. |
|
118 | - * |
|
119 | - * @param ArrayAccess|array $array The search array |
|
120 | - * @param string|int $key The key exist |
|
121 | - * |
|
122 | - * @return bool |
|
123 | - * |
|
124 | - * @uses instaceof ArrayAccess |
|
125 | - */ |
|
126 | - public static function exists($array, $key) |
|
127 | - { |
|
128 | - if ($array instanceof ArrayAccess) { |
|
129 | - return $array->offsetExists($key); |
|
130 | - } |
|
116 | + /** |
|
117 | + * Determine if the given key exists in the provided array. |
|
118 | + * |
|
119 | + * @param ArrayAccess|array $array The search array |
|
120 | + * @param string|int $key The key exist |
|
121 | + * |
|
122 | + * @return bool |
|
123 | + * |
|
124 | + * @uses instaceof ArrayAccess |
|
125 | + */ |
|
126 | + public static function exists($array, $key) |
|
127 | + { |
|
128 | + if ($array instanceof ArrayAccess) { |
|
129 | + return $array->offsetExists($key); |
|
130 | + } |
|
131 | 131 | |
132 | - return array_key_exists($key, $array); |
|
133 | - } |
|
134 | - |
|
135 | - /** |
|
136 | - * Unsets dot-notated key from an array. |
|
137 | - * |
|
138 | - * @param array $array The search array |
|
139 | - * @param mixed $keys The dot-notated key or array of keys |
|
140 | - * |
|
141 | - * @return mixed |
|
142 | - */ |
|
143 | - public static function erase(&$array, $keys) |
|
144 | - { |
|
145 | - $original = &$array; |
|
146 | - |
|
147 | - $keys = (array) $keys; |
|
148 | - |
|
149 | - if (count($keys) === 0) { |
|
150 | - return; |
|
151 | - } |
|
152 | - |
|
153 | - foreach ($keys as $key) { |
|
154 | - if (static::exists($array, $key)) { |
|
155 | - unset($array[$key]); |
|
156 | - |
|
157 | - continue; |
|
158 | - } |
|
132 | + return array_key_exists($key, $array); |
|
133 | + } |
|
134 | + |
|
135 | + /** |
|
136 | + * Unsets dot-notated key from an array. |
|
137 | + * |
|
138 | + * @param array $array The search array |
|
139 | + * @param mixed $keys The dot-notated key or array of keys |
|
140 | + * |
|
141 | + * @return mixed |
|
142 | + */ |
|
143 | + public static function erase(&$array, $keys) |
|
144 | + { |
|
145 | + $original = &$array; |
|
146 | + |
|
147 | + $keys = (array) $keys; |
|
148 | + |
|
149 | + if (count($keys) === 0) { |
|
150 | + return; |
|
151 | + } |
|
152 | + |
|
153 | + foreach ($keys as $key) { |
|
154 | + if (static::exists($array, $key)) { |
|
155 | + unset($array[$key]); |
|
156 | + |
|
157 | + continue; |
|
158 | + } |
|
159 | 159 | |
160 | - $parts = explode('.', $key); |
|
160 | + $parts = explode('.', $key); |
|
161 | 161 | |
162 | - // Clean up after each pass |
|
163 | - $array = &$original; |
|
162 | + // Clean up after each pass |
|
163 | + $array = &$original; |
|
164 | 164 | |
165 | - // traverse the array into the second last key |
|
166 | - while (count($parts) > 1) { |
|
167 | - $part = array_shift($parts); |
|
165 | + // traverse the array into the second last key |
|
166 | + while (count($parts) > 1) { |
|
167 | + $part = array_shift($parts); |
|
168 | 168 | |
169 | - if (isset($array[$part]) && is_array($array[$part])) { |
|
170 | - $array = &$array[$key]; |
|
171 | - } else { |
|
172 | - continue 2; |
|
173 | - } |
|
174 | - } |
|
175 | - |
|
176 | - unset($array[array_shift($parts)]); |
|
177 | - } |
|
178 | - } |
|
179 | - |
|
180 | - /** |
|
181 | - * Flatten a multi-dimensional array into a single level. |
|
182 | - * |
|
183 | - * @param array $array |
|
184 | - * |
|
185 | - * @return array |
|
186 | - */ |
|
187 | - public static function flatten($array) |
|
188 | - { |
|
189 | - $result = []; |
|
190 | - |
|
191 | - array_walk_recursive($array, function ($value) use (&$result) { |
|
192 | - $result[] = $value; |
|
193 | - }); |
|
194 | - |
|
195 | - return $result; |
|
196 | - } |
|
169 | + if (isset($array[$part]) && is_array($array[$part])) { |
|
170 | + $array = &$array[$key]; |
|
171 | + } else { |
|
172 | + continue 2; |
|
173 | + } |
|
174 | + } |
|
175 | + |
|
176 | + unset($array[array_shift($parts)]); |
|
177 | + } |
|
178 | + } |
|
179 | + |
|
180 | + /** |
|
181 | + * Flatten a multi-dimensional array into a single level. |
|
182 | + * |
|
183 | + * @param array $array |
|
184 | + * |
|
185 | + * @return array |
|
186 | + */ |
|
187 | + public static function flatten($array) |
|
188 | + { |
|
189 | + $result = []; |
|
190 | + |
|
191 | + array_walk_recursive($array, function ($value) use (&$result) { |
|
192 | + $result[] = $value; |
|
193 | + }); |
|
194 | + |
|
195 | + return $result; |
|
196 | + } |
|
197 | 197 | |
198 | - /** |
|
199 | - * Fetch a flattened array of a nested array element. |
|
200 | - * |
|
201 | - * @param array $array |
|
202 | - * @param string $key |
|
203 | - * |
|
204 | - * @return array |
|
205 | - */ |
|
206 | - public static function fetch($array, $key) |
|
207 | - { |
|
208 | - foreach (explode('.', $key) as $segment) { |
|
209 | - $results = array(); |
|
198 | + /** |
|
199 | + * Fetch a flattened array of a nested array element. |
|
200 | + * |
|
201 | + * @param array $array |
|
202 | + * @param string $key |
|
203 | + * |
|
204 | + * @return array |
|
205 | + */ |
|
206 | + public static function fetch($array, $key) |
|
207 | + { |
|
208 | + foreach (explode('.', $key) as $segment) { |
|
209 | + $results = array(); |
|
210 | 210 | |
211 | - foreach ($array as $value) { |
|
212 | - if (array_key_exists($segment, $value = (array) $value)) { |
|
213 | - $results[] = $value[$segment]; |
|
214 | - } |
|
215 | - } |
|
211 | + foreach ($array as $value) { |
|
212 | + if (array_key_exists($segment, $value = (array) $value)) { |
|
213 | + $results[] = $value[$segment]; |
|
214 | + } |
|
215 | + } |
|
216 | 216 | |
217 | - $array = array_values($results); |
|
218 | - } |
|
217 | + $array = array_values($results); |
|
218 | + } |
|
219 | 219 | |
220 | - return array_values($results); |
|
221 | - } |
|
222 | - |
|
223 | - /** |
|
224 | - * Return the first element in an array passing a given truth test. |
|
225 | - * |
|
226 | - * @param array $array |
|
227 | - * @param \Closure $callback |
|
228 | - * @param mixed $default |
|
229 | - * |
|
230 | - * @return mixed |
|
231 | - */ |
|
232 | - public static function first($array, callable $callback, $default = null) |
|
233 | - { |
|
234 | - foreach ($array as $key => $value) { |
|
235 | - if (call_user_func($callback, $key, $value)) return $value; |
|
236 | - } |
|
237 | - |
|
238 | - return value($default); |
|
239 | - } |
|
240 | - |
|
241 | - /** |
|
242 | - * Get an item from an array using "dot" notation. |
|
243 | - * |
|
244 | - * @param \ArrayAccess|array $array The search array |
|
245 | - * @param string $key The dot-notated key or array of keys |
|
246 | - * @param mixed $default The default value |
|
247 | - * |
|
248 | - * @return mixed |
|
249 | - */ |
|
250 | - public static function get($array, $key, $default = null) |
|
251 | - { |
|
252 | - if ( ! static::access($array)) { |
|
253 | - return value($default); |
|
254 | - } |
|
255 | - |
|
256 | - if (static::exists($array, $key)) { |
|
257 | - return $array[$key]; |
|
258 | - } |
|
259 | - |
|
260 | - foreach (explode('.', $key) as $segm) { |
|
261 | - if (static::access($array) && static::exists($array, $segm)) { |
|
262 | - $array = $array[$segm]; |
|
263 | - } else { |
|
264 | - return value($default); |
|
265 | - } |
|
266 | - } |
|
267 | - |
|
268 | - return $array; |
|
269 | - } |
|
270 | - |
|
271 | - /** |
|
272 | - * Return the last element in an array passing a given truth test. |
|
273 | - * |
|
274 | - * @param array $array |
|
275 | - * @param \Closure $callback |
|
276 | - * @param mixed $default |
|
277 | - * |
|
278 | - * @return mixed |
|
279 | - * |
|
280 | - * @uses \Syscodes\Support\Arr::first |
|
281 | - */ |
|
282 | - public static function last($array, $callback, $default = null) |
|
283 | - { |
|
284 | - return static::first(array_reverse($array), $callback, $default); |
|
285 | - } |
|
286 | - |
|
287 | - /** |
|
288 | - * Check if an item exists in an array using "dot" notation. |
|
289 | - * |
|
290 | - * @param array $array |
|
291 | - * @param string $key |
|
292 | - * |
|
293 | - * @return bool |
|
294 | - */ |
|
295 | - public static function has($array, $key) |
|
296 | - { |
|
297 | - if (empty($array) || is_null($key)) return false; |
|
220 | + return array_values($results); |
|
221 | + } |
|
222 | + |
|
223 | + /** |
|
224 | + * Return the first element in an array passing a given truth test. |
|
225 | + * |
|
226 | + * @param array $array |
|
227 | + * @param \Closure $callback |
|
228 | + * @param mixed $default |
|
229 | + * |
|
230 | + * @return mixed |
|
231 | + */ |
|
232 | + public static function first($array, callable $callback, $default = null) |
|
233 | + { |
|
234 | + foreach ($array as $key => $value) { |
|
235 | + if (call_user_func($callback, $key, $value)) return $value; |
|
236 | + } |
|
237 | + |
|
238 | + return value($default); |
|
239 | + } |
|
240 | + |
|
241 | + /** |
|
242 | + * Get an item from an array using "dot" notation. |
|
243 | + * |
|
244 | + * @param \ArrayAccess|array $array The search array |
|
245 | + * @param string $key The dot-notated key or array of keys |
|
246 | + * @param mixed $default The default value |
|
247 | + * |
|
248 | + * @return mixed |
|
249 | + */ |
|
250 | + public static function get($array, $key, $default = null) |
|
251 | + { |
|
252 | + if ( ! static::access($array)) { |
|
253 | + return value($default); |
|
254 | + } |
|
255 | + |
|
256 | + if (static::exists($array, $key)) { |
|
257 | + return $array[$key]; |
|
258 | + } |
|
259 | + |
|
260 | + foreach (explode('.', $key) as $segm) { |
|
261 | + if (static::access($array) && static::exists($array, $segm)) { |
|
262 | + $array = $array[$segm]; |
|
263 | + } else { |
|
264 | + return value($default); |
|
265 | + } |
|
266 | + } |
|
267 | + |
|
268 | + return $array; |
|
269 | + } |
|
270 | + |
|
271 | + /** |
|
272 | + * Return the last element in an array passing a given truth test. |
|
273 | + * |
|
274 | + * @param array $array |
|
275 | + * @param \Closure $callback |
|
276 | + * @param mixed $default |
|
277 | + * |
|
278 | + * @return mixed |
|
279 | + * |
|
280 | + * @uses \Syscodes\Support\Arr::first |
|
281 | + */ |
|
282 | + public static function last($array, $callback, $default = null) |
|
283 | + { |
|
284 | + return static::first(array_reverse($array), $callback, $default); |
|
285 | + } |
|
286 | + |
|
287 | + /** |
|
288 | + * Check if an item exists in an array using "dot" notation. |
|
289 | + * |
|
290 | + * @param array $array |
|
291 | + * @param string $key |
|
292 | + * |
|
293 | + * @return bool |
|
294 | + */ |
|
295 | + public static function has($array, $key) |
|
296 | + { |
|
297 | + if (empty($array) || is_null($key)) return false; |
|
298 | 298 | |
299 | - if (array_key_exists($key, $array)) return true; |
|
299 | + if (array_key_exists($key, $array)) return true; |
|
300 | 300 | |
301 | - foreach (explode('.', $key) as $segment) { |
|
302 | - if ( ! is_array($array) || ! static::exists($array, $segment)) { |
|
303 | - return false; |
|
304 | - } |
|
301 | + foreach (explode('.', $key) as $segment) { |
|
302 | + if ( ! is_array($array) || ! static::exists($array, $segment)) { |
|
303 | + return false; |
|
304 | + } |
|
305 | 305 | |
306 | - $array = $array[$segment]; |
|
307 | - } |
|
306 | + $array = $array[$segment]; |
|
307 | + } |
|
308 | 308 | |
309 | - return true; |
|
310 | - } |
|
311 | - |
|
312 | - /** |
|
313 | - * Get a subset of the items from the given array. |
|
314 | - * |
|
315 | - * @param array $array |
|
316 | - * @param array|string $keys |
|
317 | - * |
|
318 | - * @return array |
|
319 | - */ |
|
320 | - public static function only($array, $keys) |
|
321 | - { |
|
322 | - return array_intersect_key($array, array_flip($array), $keys); |
|
323 | - } |
|
324 | - |
|
325 | - /** |
|
326 | - * Sets a value in an array using "dot" notation. |
|
327 | - * |
|
328 | - * @param array $array The search array |
|
329 | - * @param string $key The dot-notated key or array of keys |
|
330 | - * @param mixed $value The default value |
|
331 | - * |
|
332 | - * @return mixed |
|
333 | - */ |
|
334 | - public static function set(& $array, $key, $value = null) |
|
335 | - { |
|
336 | - $keys = explode('.', $key); |
|
337 | - |
|
338 | - while (count($keys) > 1) { |
|
339 | - $key = array_shift($keys); |
|
340 | - |
|
341 | - if ( ! static::exists($array, $key)) { |
|
342 | - $array[$key] = []; |
|
343 | - } |
|
344 | - |
|
345 | - $array =& $array[$key]; |
|
346 | - } |
|
347 | - |
|
348 | - $array[array_shift($keys)] = $value; |
|
349 | - |
|
350 | - return $array; |
|
351 | - } |
|
352 | - |
|
353 | - /** |
|
354 | - * Push an item onto the beginning of an array. |
|
355 | - * |
|
356 | - * @param mixed $array |
|
357 | - * @param mixed $value |
|
358 | - * @param mixed key |
|
359 | - * |
|
360 | - * @return array |
|
361 | - */ |
|
362 | - public static function prepend($array, $value, $key = null) |
|
363 | - { |
|
364 | - if (func_num_args() == 2) { |
|
365 | - array_unshift($array, $value); |
|
366 | - } else { |
|
367 | - $array = [$key => $value] + $array; |
|
368 | - } |
|
369 | - |
|
370 | - return $array; |
|
371 | - } |
|
372 | - |
|
373 | - /** |
|
374 | - * Get a value from the array, and remove it. |
|
375 | - * |
|
376 | - * @param array $array |
|
377 | - * @param string $key |
|
378 | - * @param mixed $default |
|
379 | - * |
|
380 | - * @return mixed |
|
381 | - */ |
|
382 | - public static function pull(&$array, $key, $default = null) |
|
383 | - { |
|
384 | - $value = static::get($array, $key, $default); |
|
385 | - |
|
386 | - static::erase($array, $key); |
|
387 | - |
|
388 | - return $value; |
|
389 | - } |
|
309 | + return true; |
|
310 | + } |
|
311 | + |
|
312 | + /** |
|
313 | + * Get a subset of the items from the given array. |
|
314 | + * |
|
315 | + * @param array $array |
|
316 | + * @param array|string $keys |
|
317 | + * |
|
318 | + * @return array |
|
319 | + */ |
|
320 | + public static function only($array, $keys) |
|
321 | + { |
|
322 | + return array_intersect_key($array, array_flip($array), $keys); |
|
323 | + } |
|
324 | + |
|
325 | + /** |
|
326 | + * Sets a value in an array using "dot" notation. |
|
327 | + * |
|
328 | + * @param array $array The search array |
|
329 | + * @param string $key The dot-notated key or array of keys |
|
330 | + * @param mixed $value The default value |
|
331 | + * |
|
332 | + * @return mixed |
|
333 | + */ |
|
334 | + public static function set(& $array, $key, $value = null) |
|
335 | + { |
|
336 | + $keys = explode('.', $key); |
|
337 | + |
|
338 | + while (count($keys) > 1) { |
|
339 | + $key = array_shift($keys); |
|
340 | + |
|
341 | + if ( ! static::exists($array, $key)) { |
|
342 | + $array[$key] = []; |
|
343 | + } |
|
344 | + |
|
345 | + $array =& $array[$key]; |
|
346 | + } |
|
347 | + |
|
348 | + $array[array_shift($keys)] = $value; |
|
349 | + |
|
350 | + return $array; |
|
351 | + } |
|
352 | + |
|
353 | + /** |
|
354 | + * Push an item onto the beginning of an array. |
|
355 | + * |
|
356 | + * @param mixed $array |
|
357 | + * @param mixed $value |
|
358 | + * @param mixed key |
|
359 | + * |
|
360 | + * @return array |
|
361 | + */ |
|
362 | + public static function prepend($array, $value, $key = null) |
|
363 | + { |
|
364 | + if (func_num_args() == 2) { |
|
365 | + array_unshift($array, $value); |
|
366 | + } else { |
|
367 | + $array = [$key => $value] + $array; |
|
368 | + } |
|
369 | + |
|
370 | + return $array; |
|
371 | + } |
|
372 | + |
|
373 | + /** |
|
374 | + * Get a value from the array, and remove it. |
|
375 | + * |
|
376 | + * @param array $array |
|
377 | + * @param string $key |
|
378 | + * @param mixed $default |
|
379 | + * |
|
380 | + * @return mixed |
|
381 | + */ |
|
382 | + public static function pull(&$array, $key, $default = null) |
|
383 | + { |
|
384 | + $value = static::get($array, $key, $default); |
|
385 | + |
|
386 | + static::erase($array, $key); |
|
387 | + |
|
388 | + return $value; |
|
389 | + } |
|
390 | 390 | |
391 | - /** |
|
392 | - * Pluck an array of values from an array. |
|
393 | - * |
|
394 | - * @param iterable $array |
|
395 | - * @param string|array|int|null $value |
|
396 | - * @param string|array|null $key |
|
397 | - * |
|
398 | - * @return array |
|
399 | - */ |
|
400 | - public static function pluck($array, $value, $key = null) |
|
401 | - { |
|
402 | - $results = []; |
|
403 | - |
|
404 | - foreach ($array as $item) { |
|
405 | - $itemValue = is_object($item) ? $item->{$value} : $item[$value]; |
|
391 | + /** |
|
392 | + * Pluck an array of values from an array. |
|
393 | + * |
|
394 | + * @param iterable $array |
|
395 | + * @param string|array|int|null $value |
|
396 | + * @param string|array|null $key |
|
397 | + * |
|
398 | + * @return array |
|
399 | + */ |
|
400 | + public static function pluck($array, $value, $key = null) |
|
401 | + { |
|
402 | + $results = []; |
|
403 | + |
|
404 | + foreach ($array as $item) { |
|
405 | + $itemValue = is_object($item) ? $item->{$value} : $item[$value]; |
|
406 | 406 | |
407 | - // If the key is "null", we will just append the value to the array and keep |
|
408 | - // looping. Otherwise we will key the array using the value of the key we |
|
409 | - // received from the developer. Then we'll return the final array form. |
|
410 | - if (is_null($key)) { |
|
411 | - $results[] = $itemValue; |
|
412 | - } else { |
|
413 | - $itemKey = is_object($item) ? $item->{$key} : $item[$key]; |
|
407 | + // If the key is "null", we will just append the value to the array and keep |
|
408 | + // looping. Otherwise we will key the array using the value of the key we |
|
409 | + // received from the developer. Then we'll return the final array form. |
|
410 | + if (is_null($key)) { |
|
411 | + $results[] = $itemValue; |
|
412 | + } else { |
|
413 | + $itemKey = is_object($item) ? $item->{$key} : $item[$key]; |
|
414 | 414 | |
415 | - $results[$itemKey] = $itemValue; |
|
416 | - } |
|
417 | - } |
|
415 | + $results[$itemKey] = $itemValue; |
|
416 | + } |
|
417 | + } |
|
418 | 418 | |
419 | - return $results; |
|
420 | - } |
|
421 | - |
|
422 | - /** |
|
423 | - * Convert the array into a query string. |
|
424 | - * |
|
425 | - * @param array $array |
|
426 | - * |
|
427 | - * @return array |
|
428 | - */ |
|
429 | - public static function query($array) |
|
430 | - { |
|
431 | - return http_build_query($array, null, '&', PHP_QUERY_RFC3986); |
|
432 | - } |
|
433 | - |
|
434 | - /** |
|
435 | - * Filter the array using the given callback. |
|
436 | - * |
|
437 | - * @param array $array |
|
438 | - * @param \Callable $callback |
|
439 | - * |
|
440 | - * @return array |
|
441 | - */ |
|
442 | - public static function where($array, Callable $callback) |
|
443 | - { |
|
444 | - return array_filter($array, $callback, ARRAY_FILTER_USE_BOTH); |
|
445 | - } |
|
446 | - |
|
447 | - /** |
|
448 | - * If the given value is not an array and not null, wrap it in one. |
|
449 | - * |
|
450 | - * @param mixed $value |
|
451 | - * |
|
452 | - * @return array |
|
453 | - */ |
|
454 | - public static function wrap($value) |
|
455 | - { |
|
456 | - if (is_null($value)) { |
|
457 | - return []; |
|
458 | - } |
|
459 | - |
|
460 | - return is_array($value) ? $value : [$value]; |
|
461 | - } |
|
419 | + return $results; |
|
420 | + } |
|
421 | + |
|
422 | + /** |
|
423 | + * Convert the array into a query string. |
|
424 | + * |
|
425 | + * @param array $array |
|
426 | + * |
|
427 | + * @return array |
|
428 | + */ |
|
429 | + public static function query($array) |
|
430 | + { |
|
431 | + return http_build_query($array, null, '&', PHP_QUERY_RFC3986); |
|
432 | + } |
|
433 | + |
|
434 | + /** |
|
435 | + * Filter the array using the given callback. |
|
436 | + * |
|
437 | + * @param array $array |
|
438 | + * @param \Callable $callback |
|
439 | + * |
|
440 | + * @return array |
|
441 | + */ |
|
442 | + public static function where($array, Callable $callback) |
|
443 | + { |
|
444 | + return array_filter($array, $callback, ARRAY_FILTER_USE_BOTH); |
|
445 | + } |
|
446 | + |
|
447 | + /** |
|
448 | + * If the given value is not an array and not null, wrap it in one. |
|
449 | + * |
|
450 | + * @param mixed $value |
|
451 | + * |
|
452 | + * @return array |
|
453 | + */ |
|
454 | + public static function wrap($value) |
|
455 | + { |
|
456 | + if (is_null($value)) { |
|
457 | + return []; |
|
458 | + } |
|
459 | + |
|
460 | + return is_array($value) ? $value : [$value]; |
|
461 | + } |
|
462 | 462 | } |
463 | 463 | \ No newline at end of file |
@@ -275,11 +275,11 @@ |
||
275 | 275 | return new static(array_combine($keys, $items)); |
276 | 276 | } |
277 | 277 | |
278 | - /** |
|
279 | - * Reset the keys of the collection. |
|
280 | - * |
|
281 | - * @return static |
|
282 | - */ |
|
278 | + /** |
|
279 | + * Reset the keys of the collection. |
|
280 | + * |
|
281 | + * @return static |
|
282 | + */ |
|
283 | 283 | public function keys() |
284 | 284 | { |
285 | 285 | return new static(array_keys($this->items)); |
@@ -516,7 +516,7 @@ discard block |
||
516 | 516 | return array_search($value, $this->items, $strict); |
517 | 517 | } |
518 | 518 | |
519 | - foreach($this->items as $key => $item) { |
|
519 | + foreach ($this->items as $key => $item) { |
|
520 | 520 | if ($value($item, $key)) { |
521 | 521 | return $key; |
522 | 522 | } |
@@ -676,7 +676,7 @@ discard block |
||
676 | 676 | { |
677 | 677 | if (is_array($items)) { |
678 | 678 | return $items; |
679 | - } elseif($items instanceof Arrayable) { |
|
679 | + } elseif ($items instanceof Arrayable) { |
|
680 | 680 | return $items->toArray(); |
681 | 681 | } elseif ($items instanceof Jsonable) { |
682 | 682 | return json_decode($items->toJson(), true); |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | $__path = $path; |
244 | 244 | $__data = $data; |
245 | 245 | |
246 | - return (static function () use ($__path, $__data) { |
|
246 | + return (static function() use ($__path, $__data) { |
|
247 | 247 | extract($__data, EXTR_SKIP); |
248 | 248 | |
249 | 249 | return require $__path; |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | $__path = $path; |
270 | 270 | $__data = $data; |
271 | 271 | |
272 | - return (static function () use ($__path, $__data) { |
|
272 | + return (static function() use ($__path, $__data) { |
|
273 | 273 | extract($__data, EXTR_SKIP); |
274 | 274 | |
275 | 275 | return require_once $__path; |
@@ -488,7 +488,9 @@ discard block |
||
488 | 488 | */ |
489 | 489 | public function copyDirectory($directory, $destination, $options = null) |
490 | 490 | { |
491 | - if ( ! $this->isDirectory($directory)) return false; |
|
491 | + if ( ! $this->isDirectory($directory)) { |
|
492 | + return false; |
|
493 | + } |
|
492 | 494 | |
493 | 495 | $options = $options ?: FilesystemIterator::SKIP_DOTS; |
494 | 496 | |
@@ -508,13 +510,17 @@ discard block |
||
508 | 510 | // a directory or a file. When it is actually a directory we will need to call |
509 | 511 | // back into this function recursively to keep copying these nested folders. |
510 | 512 | if ($iterator->isDir()) { |
511 | - if ( ! $this->copyDirectory($iterator->getPathname(), $target, $options)) return false; |
|
513 | + if ( ! $this->copyDirectory($iterator->getPathname(), $target, $options)) { |
|
514 | + return false; |
|
515 | + } |
|
512 | 516 | } |
513 | 517 | // If the current items is just a regular file, we will just copy this to the new |
514 | 518 | // location and keep looping. If for some reason the copy fails we'll bail out |
515 | 519 | // and return false, so the developer is aware that the copy process failed. |
516 | 520 | else { |
517 | - if ( ! $this->copy($iterator->getPathname(), $target)) return false; |
|
521 | + if ( ! $this->copy($iterator->getPathname(), $target)) { |
|
522 | + return false; |
|
523 | + } |
|
518 | 524 | } |
519 | 525 | } |
520 | 526 | |
@@ -532,7 +538,9 @@ discard block |
||
532 | 538 | */ |
533 | 539 | public function deleteDirectory($directory, $keep = false) |
534 | 540 | { |
535 | - if ( ! $this->isDirectory($directory)) return false; |
|
541 | + if ( ! $this->isDirectory($directory)) { |
|
542 | + return false; |
|
543 | + } |
|
536 | 544 | |
537 | 545 | $iterators = new filesystemIterator($directory); |
538 | 546 | |
@@ -551,7 +559,9 @@ discard block |
||
551 | 559 | } |
552 | 560 | } |
553 | 561 | |
554 | - if ( ! $keep) @rmdir($directory); |
|
562 | + if ( ! $keep) { |
|
563 | + @rmdir($directory); |
|
564 | + } |
|
555 | 565 | |
556 | 566 | return true; |
557 | 567 | } |
@@ -580,7 +590,9 @@ discard block |
||
580 | 590 | */ |
581 | 591 | public function moveDirectory($from, $to, $overwrite = false) |
582 | 592 | { |
583 | - if ($overwrite && $this->isDirectory($to) && ! $this->deleteDirectory($to)) return false; |
|
593 | + if ($overwrite && $this->isDirectory($to) && ! $this->deleteDirectory($to)) { |
|
594 | + return false; |
|
595 | + } |
|
584 | 596 | |
585 | 597 | if (false === @rename($from, $to)) { |
586 | 598 | $error = error_get_last(); |
@@ -35,842 +35,842 @@ |
||
35 | 35 | */ |
36 | 36 | class Filesystem |
37 | 37 | { |
38 | - /** |
|
39 | - * Enable locking for file reading and writing. |
|
40 | - * |
|
41 | - * @var null|bool $lock |
|
42 | - */ |
|
43 | - public $lock = null; |
|
44 | - |
|
45 | - /** |
|
46 | - * Holds the file handler resource if the file is opened. |
|
47 | - * |
|
48 | - * @var resource $handler |
|
49 | - */ |
|
50 | - protected $handler; |
|
51 | - |
|
52 | - /** |
|
53 | - * The files size in bytes. |
|
54 | - * |
|
55 | - * @var float $size |
|
56 | - */ |
|
57 | - protected $size; |
|
58 | - |
|
59 | - /** |
|
60 | - * Append given data string to this file. |
|
61 | - * |
|
62 | - * @param string $path |
|
63 | - * @param string $data |
|
64 | - * |
|
65 | - * @return bool |
|
66 | - */ |
|
67 | - public function append($path, $data) |
|
68 | - { |
|
69 | - return file_put_contents($path, $data, FILE_APPEND); |
|
70 | - } |
|
71 | - |
|
72 | - /** |
|
73 | - * Copy a file to a new location. |
|
74 | - * |
|
75 | - * @param string $path |
|
76 | - * @param string $target |
|
77 | - * |
|
78 | - * @return bool |
|
79 | - */ |
|
80 | - public function copy($path, $target) |
|
81 | - { |
|
82 | - return copy($path, $target); |
|
83 | - } |
|
84 | - |
|
85 | - /** |
|
86 | - * Get the contents of a file. |
|
87 | - * |
|
88 | - * @param string $path |
|
89 | - * @param bool $lock |
|
90 | - * @param bool $force |
|
91 | - * |
|
92 | - * @return string |
|
93 | - * |
|
94 | - * @throws FileNotFoundException |
|
95 | - */ |
|
96 | - public function get($path, $lock = false, $force = false) |
|
97 | - { |
|
98 | - if ($this->isFile($path)) { |
|
99 | - return $lock ? $this->read($path, $force) : file_get_contents($path); |
|
100 | - } |
|
101 | - |
|
102 | - throw new FileNotFoundException($path); |
|
103 | - } |
|
104 | - |
|
105 | - /** |
|
106 | - * Get contents of a file with shared access. |
|
107 | - * |
|
108 | - * @param string $path |
|
109 | - * @param bool $force |
|
110 | - * |
|
111 | - * @return string |
|
112 | - */ |
|
113 | - protected function read($path, $force = false) |
|
114 | - { |
|
115 | - $contents = ''; |
|
116 | - |
|
117 | - $this->open($path, 'rb', $force); |
|
38 | + /** |
|
39 | + * Enable locking for file reading and writing. |
|
40 | + * |
|
41 | + * @var null|bool $lock |
|
42 | + */ |
|
43 | + public $lock = null; |
|
44 | + |
|
45 | + /** |
|
46 | + * Holds the file handler resource if the file is opened. |
|
47 | + * |
|
48 | + * @var resource $handler |
|
49 | + */ |
|
50 | + protected $handler; |
|
51 | + |
|
52 | + /** |
|
53 | + * The files size in bytes. |
|
54 | + * |
|
55 | + * @var float $size |
|
56 | + */ |
|
57 | + protected $size; |
|
58 | + |
|
59 | + /** |
|
60 | + * Append given data string to this file. |
|
61 | + * |
|
62 | + * @param string $path |
|
63 | + * @param string $data |
|
64 | + * |
|
65 | + * @return bool |
|
66 | + */ |
|
67 | + public function append($path, $data) |
|
68 | + { |
|
69 | + return file_put_contents($path, $data, FILE_APPEND); |
|
70 | + } |
|
71 | + |
|
72 | + /** |
|
73 | + * Copy a file to a new location. |
|
74 | + * |
|
75 | + * @param string $path |
|
76 | + * @param string $target |
|
77 | + * |
|
78 | + * @return bool |
|
79 | + */ |
|
80 | + public function copy($path, $target) |
|
81 | + { |
|
82 | + return copy($path, $target); |
|
83 | + } |
|
84 | + |
|
85 | + /** |
|
86 | + * Get the contents of a file. |
|
87 | + * |
|
88 | + * @param string $path |
|
89 | + * @param bool $lock |
|
90 | + * @param bool $force |
|
91 | + * |
|
92 | + * @return string |
|
93 | + * |
|
94 | + * @throws FileNotFoundException |
|
95 | + */ |
|
96 | + public function get($path, $lock = false, $force = false) |
|
97 | + { |
|
98 | + if ($this->isFile($path)) { |
|
99 | + return $lock ? $this->read($path, $force) : file_get_contents($path); |
|
100 | + } |
|
101 | + |
|
102 | + throw new FileNotFoundException($path); |
|
103 | + } |
|
104 | + |
|
105 | + /** |
|
106 | + * Get contents of a file with shared access. |
|
107 | + * |
|
108 | + * @param string $path |
|
109 | + * @param bool $force |
|
110 | + * |
|
111 | + * @return string |
|
112 | + */ |
|
113 | + protected function read($path, $force = false) |
|
114 | + { |
|
115 | + $contents = ''; |
|
116 | + |
|
117 | + $this->open($path, 'rb', $force); |
|
118 | 118 | |
119 | - if ($this->handler) { |
|
120 | - try { |
|
121 | - if (flock($this->handler, LOCK_SH)) { |
|
122 | - $this->clearStatCache($path); |
|
119 | + if ($this->handler) { |
|
120 | + try { |
|
121 | + if (flock($this->handler, LOCK_SH)) { |
|
122 | + $this->clearStatCache($path); |
|
123 | 123 | |
124 | - $contents = fread($this->handler, $this->getSize($path) ?: 1); |
|
124 | + $contents = fread($this->handler, $this->getSize($path) ?: 1); |
|
125 | 125 | |
126 | - while ( ! feof($this->handler)) { |
|
127 | - $contents .= fgets($this->handler, 4096); |
|
128 | - } |
|
129 | - |
|
130 | - flock($this->handler, LOCK_UN); |
|
131 | - } |
|
132 | - } finally { |
|
133 | - $this->close(); |
|
134 | - } |
|
135 | - } |
|
136 | - |
|
137 | - return trim($contents); |
|
138 | - } |
|
139 | - |
|
140 | - /** |
|
141 | - * Opens the current file with a given $mode. |
|
142 | - * |
|
143 | - * @param string $path |
|
144 | - * @param string $mode A valid 'fopen' mode string (r|w|a ...) |
|
145 | - * @param bool $force |
|
146 | - * |
|
147 | - * @return bool |
|
148 | - */ |
|
149 | - public function open($path, $mode, $force = false) |
|
150 | - { |
|
151 | - if ( ! $force && is_resource($this->handler)) { |
|
152 | - return true; |
|
153 | - } |
|
154 | - |
|
155 | - if ($this->exists($path) === false) { |
|
156 | - if ($this->create($path) === false) { |
|
157 | - return false; |
|
158 | - } |
|
159 | - } |
|
160 | - |
|
161 | - $this->handler = fopen($path, $mode); |
|
162 | - |
|
163 | - return is_resource($this->handler); |
|
164 | - } |
|
165 | - |
|
166 | - /** |
|
167 | - * Creates the file. |
|
168 | - * |
|
169 | - * @param string $path |
|
170 | - * |
|
171 | - * @return bool |
|
172 | - */ |
|
173 | - public function create($path) |
|
174 | - { |
|
175 | - if (($this->isDirectory($path)) && ($this->isWritable($path)) || ( ! $this->exists($path))) { |
|
176 | - if (touch($path)) { |
|
177 | - return true; |
|
178 | - } |
|
179 | - } |
|
180 | - |
|
181 | - return false; |
|
182 | - } |
|
183 | - |
|
184 | - /** |
|
185 | - * Determine if a file exists. |
|
186 | - * |
|
187 | - * @param string $path |
|
188 | - * |
|
189 | - * @return bool |
|
190 | - */ |
|
191 | - public function exists($path) |
|
192 | - { |
|
193 | - $this->clearStatCache($path); |
|
194 | - |
|
195 | - return file_exists($path); |
|
196 | - } |
|
197 | - |
|
198 | - /** |
|
199 | - * Clear PHP's internal stat cache. |
|
200 | - * |
|
201 | - * @param string $path |
|
202 | - * @param bool $all Clear all cache or not |
|
203 | - * |
|
204 | - * @return void |
|
205 | - */ |
|
206 | - public function clearStatCache($path, $all = false) |
|
207 | - { |
|
208 | - if ($all === false) { |
|
209 | - clearstatcache(true, $path); |
|
210 | - } |
|
211 | - |
|
212 | - clearstatcache(); |
|
213 | - } |
|
214 | - |
|
215 | - /** |
|
216 | - * Get the returned value of a file. |
|
217 | - * |
|
218 | - * @param string $path |
|
219 | - * @param array $data |
|
220 | - * |
|
221 | - * @return mixed |
|
222 | - * |
|
223 | - * @throws \Syscodes\Filesystem\Exceptions\FileNotFoundException |
|
224 | - */ |
|
225 | - public function getRequire($path, array $data = []) |
|
226 | - { |
|
227 | - if ($this->isFile($path)) { |
|
228 | - $__path = $path; |
|
229 | - $__data = $data; |
|
230 | - |
|
231 | - return (static function () use ($__path, $__data) { |
|
232 | - extract($__data, EXTR_SKIP); |
|
233 | - |
|
234 | - return require $__path; |
|
235 | - })(); |
|
236 | - } |
|
237 | - |
|
238 | - throw new FileNotFoundException($path); |
|
239 | - } |
|
240 | - |
|
241 | - /** |
|
242 | - * Require the given file once. |
|
243 | - * |
|
244 | - * @param string $path |
|
245 | - * @param array $data |
|
246 | - * |
|
247 | - * @return mixed |
|
248 | - * |
|
249 | - * @throws \Syscodes\Filesystem\Exceptions\FileNotFoundException |
|
250 | - */ |
|
251 | - public function getRequireOnce($path, array $data = []) |
|
252 | - { |
|
253 | - if ($this->isFile($path)) { |
|
254 | - $__path = $path; |
|
255 | - $__data = $data; |
|
256 | - |
|
257 | - return (static function () use ($__path, $__data) { |
|
258 | - extract($__data, EXTR_SKIP); |
|
259 | - |
|
260 | - return require_once $__path; |
|
261 | - })(); |
|
262 | - } |
|
263 | - |
|
264 | - throw new FileNotFoundException($path); |
|
265 | - } |
|
266 | - |
|
267 | - /** |
|
268 | - * Retrieve the file size. |
|
269 | - * |
|
270 | - * Implementations SHOULD return the value stored in the "size" key of |
|
271 | - * the file in the $_FILES array if available, as PHP calculates this |
|
272 | - * based on the actual size transmitted. |
|
273 | - * |
|
274 | - * @param string $path |
|
275 | - * @param string $unit ('b' by default) |
|
276 | - * |
|
277 | - * @return int|null The file size in bytes or null if unknown |
|
278 | - */ |
|
279 | - public function getSize($path, $unit = 'b') |
|
280 | - { |
|
281 | - if ($this->exists($path)) { |
|
282 | - if (is_null($this->size)) { |
|
283 | - $this->size = filesize($path); |
|
284 | - } |
|
285 | - |
|
286 | - switch (strtolower($unit)) { |
|
287 | - case 'kb': |
|
288 | - return number_format($this->size / 1024, 3); |
|
289 | - break; |
|
290 | - case 'mb': |
|
291 | - return number_format(($this->size / 1024) / 1024, 3); |
|
292 | - break; |
|
293 | - } |
|
294 | - |
|
295 | - return $this->size; |
|
296 | - } |
|
297 | - } |
|
126 | + while ( ! feof($this->handler)) { |
|
127 | + $contents .= fgets($this->handler, 4096); |
|
128 | + } |
|
129 | + |
|
130 | + flock($this->handler, LOCK_UN); |
|
131 | + } |
|
132 | + } finally { |
|
133 | + $this->close(); |
|
134 | + } |
|
135 | + } |
|
136 | + |
|
137 | + return trim($contents); |
|
138 | + } |
|
139 | + |
|
140 | + /** |
|
141 | + * Opens the current file with a given $mode. |
|
142 | + * |
|
143 | + * @param string $path |
|
144 | + * @param string $mode A valid 'fopen' mode string (r|w|a ...) |
|
145 | + * @param bool $force |
|
146 | + * |
|
147 | + * @return bool |
|
148 | + */ |
|
149 | + public function open($path, $mode, $force = false) |
|
150 | + { |
|
151 | + if ( ! $force && is_resource($this->handler)) { |
|
152 | + return true; |
|
153 | + } |
|
154 | + |
|
155 | + if ($this->exists($path) === false) { |
|
156 | + if ($this->create($path) === false) { |
|
157 | + return false; |
|
158 | + } |
|
159 | + } |
|
160 | + |
|
161 | + $this->handler = fopen($path, $mode); |
|
162 | + |
|
163 | + return is_resource($this->handler); |
|
164 | + } |
|
165 | + |
|
166 | + /** |
|
167 | + * Creates the file. |
|
168 | + * |
|
169 | + * @param string $path |
|
170 | + * |
|
171 | + * @return bool |
|
172 | + */ |
|
173 | + public function create($path) |
|
174 | + { |
|
175 | + if (($this->isDirectory($path)) && ($this->isWritable($path)) || ( ! $this->exists($path))) { |
|
176 | + if (touch($path)) { |
|
177 | + return true; |
|
178 | + } |
|
179 | + } |
|
180 | + |
|
181 | + return false; |
|
182 | + } |
|
183 | + |
|
184 | + /** |
|
185 | + * Determine if a file exists. |
|
186 | + * |
|
187 | + * @param string $path |
|
188 | + * |
|
189 | + * @return bool |
|
190 | + */ |
|
191 | + public function exists($path) |
|
192 | + { |
|
193 | + $this->clearStatCache($path); |
|
194 | + |
|
195 | + return file_exists($path); |
|
196 | + } |
|
197 | + |
|
198 | + /** |
|
199 | + * Clear PHP's internal stat cache. |
|
200 | + * |
|
201 | + * @param string $path |
|
202 | + * @param bool $all Clear all cache or not |
|
203 | + * |
|
204 | + * @return void |
|
205 | + */ |
|
206 | + public function clearStatCache($path, $all = false) |
|
207 | + { |
|
208 | + if ($all === false) { |
|
209 | + clearstatcache(true, $path); |
|
210 | + } |
|
211 | + |
|
212 | + clearstatcache(); |
|
213 | + } |
|
214 | + |
|
215 | + /** |
|
216 | + * Get the returned value of a file. |
|
217 | + * |
|
218 | + * @param string $path |
|
219 | + * @param array $data |
|
220 | + * |
|
221 | + * @return mixed |
|
222 | + * |
|
223 | + * @throws \Syscodes\Filesystem\Exceptions\FileNotFoundException |
|
224 | + */ |
|
225 | + public function getRequire($path, array $data = []) |
|
226 | + { |
|
227 | + if ($this->isFile($path)) { |
|
228 | + $__path = $path; |
|
229 | + $__data = $data; |
|
230 | + |
|
231 | + return (static function () use ($__path, $__data) { |
|
232 | + extract($__data, EXTR_SKIP); |
|
233 | + |
|
234 | + return require $__path; |
|
235 | + })(); |
|
236 | + } |
|
237 | + |
|
238 | + throw new FileNotFoundException($path); |
|
239 | + } |
|
240 | + |
|
241 | + /** |
|
242 | + * Require the given file once. |
|
243 | + * |
|
244 | + * @param string $path |
|
245 | + * @param array $data |
|
246 | + * |
|
247 | + * @return mixed |
|
248 | + * |
|
249 | + * @throws \Syscodes\Filesystem\Exceptions\FileNotFoundException |
|
250 | + */ |
|
251 | + public function getRequireOnce($path, array $data = []) |
|
252 | + { |
|
253 | + if ($this->isFile($path)) { |
|
254 | + $__path = $path; |
|
255 | + $__data = $data; |
|
256 | + |
|
257 | + return (static function () use ($__path, $__data) { |
|
258 | + extract($__data, EXTR_SKIP); |
|
259 | + |
|
260 | + return require_once $__path; |
|
261 | + })(); |
|
262 | + } |
|
263 | + |
|
264 | + throw new FileNotFoundException($path); |
|
265 | + } |
|
266 | + |
|
267 | + /** |
|
268 | + * Retrieve the file size. |
|
269 | + * |
|
270 | + * Implementations SHOULD return the value stored in the "size" key of |
|
271 | + * the file in the $_FILES array if available, as PHP calculates this |
|
272 | + * based on the actual size transmitted. |
|
273 | + * |
|
274 | + * @param string $path |
|
275 | + * @param string $unit ('b' by default) |
|
276 | + * |
|
277 | + * @return int|null The file size in bytes or null if unknown |
|
278 | + */ |
|
279 | + public function getSize($path, $unit = 'b') |
|
280 | + { |
|
281 | + if ($this->exists($path)) { |
|
282 | + if (is_null($this->size)) { |
|
283 | + $this->size = filesize($path); |
|
284 | + } |
|
285 | + |
|
286 | + switch (strtolower($unit)) { |
|
287 | + case 'kb': |
|
288 | + return number_format($this->size / 1024, 3); |
|
289 | + break; |
|
290 | + case 'mb': |
|
291 | + return number_format(($this->size / 1024) / 1024, 3); |
|
292 | + break; |
|
293 | + } |
|
294 | + |
|
295 | + return $this->size; |
|
296 | + } |
|
297 | + } |
|
298 | 298 | |
299 | - /** |
|
300 | - * Returns the file's group. |
|
301 | - * |
|
302 | - * @param string $path |
|
303 | - * |
|
304 | - * @return int|bool The file group, or false in case of an error |
|
305 | - */ |
|
306 | - public function group($path) |
|
307 | - { |
|
308 | - if ($this->exists($path)) { |
|
309 | - return filegroup($path); |
|
310 | - } |
|
311 | - |
|
312 | - return false; |
|
313 | - } |
|
299 | + /** |
|
300 | + * Returns the file's group. |
|
301 | + * |
|
302 | + * @param string $path |
|
303 | + * |
|
304 | + * @return int|bool The file group, or false in case of an error |
|
305 | + */ |
|
306 | + public function group($path) |
|
307 | + { |
|
308 | + if ($this->exists($path)) { |
|
309 | + return filegroup($path); |
|
310 | + } |
|
311 | + |
|
312 | + return false; |
|
313 | + } |
|
314 | 314 | |
315 | - /** |
|
316 | - * Returns true if the file is executable. |
|
317 | - * |
|
318 | - * @param string $path |
|
319 | - * |
|
320 | - * @return bool True if file is executable, false otherwise |
|
321 | - */ |
|
322 | - public function exec($path) |
|
323 | - { |
|
324 | - return is_executable($path); |
|
325 | - } |
|
326 | - |
|
327 | - /** |
|
328 | - * Determine if the given path is a directory. |
|
329 | - * |
|
330 | - * @param string $directory |
|
331 | - * |
|
332 | - * @return bool |
|
333 | - */ |
|
334 | - public function isDirectory($directory) |
|
335 | - { |
|
336 | - return is_dir($directory); |
|
337 | - } |
|
338 | - |
|
339 | - /** |
|
340 | - * Determine if the given path is a file. |
|
341 | - * |
|
342 | - * @param string $file |
|
343 | - * |
|
344 | - * @return bool |
|
345 | - */ |
|
346 | - public function isFile($file) |
|
347 | - { |
|
348 | - return is_file($file); |
|
349 | - } |
|
350 | - |
|
351 | - /** |
|
352 | - * Determine if the given path is writable. |
|
353 | - * |
|
354 | - * @param string $path |
|
355 | - * |
|
356 | - * @return bool |
|
357 | - */ |
|
358 | - public function isWritable($path) |
|
359 | - { |
|
360 | - return is_writable($path); |
|
361 | - } |
|
362 | - |
|
363 | - /** |
|
364 | - * Returns if true the file is readable. |
|
365 | - * |
|
366 | - * @param string $path |
|
367 | - * |
|
368 | - * @return bool True if file is readable, false otherwise |
|
369 | - */ |
|
370 | - public function isReadable($path) |
|
371 | - { |
|
372 | - return is_readable($path); |
|
373 | - } |
|
374 | - |
|
375 | - /** |
|
376 | - * Returns last access time. |
|
377 | - * |
|
378 | - * @param string $path |
|
379 | - * |
|
380 | - * @return int|bool Timestamp of last access time, or false in case of an error |
|
381 | - */ |
|
382 | - public function lastAccess($path) |
|
383 | - { |
|
384 | - if ($this->exists($path)) { |
|
385 | - return fileatime($path); |
|
386 | - } |
|
387 | - |
|
388 | - return false; |
|
389 | - } |
|
390 | - |
|
391 | - /** |
|
392 | - * Returns last modified time. |
|
393 | - * |
|
394 | - * @param string $path |
|
395 | - * |
|
396 | - * @return int|bool Timestamp of last modified time, or false in case of an error |
|
397 | - */ |
|
398 | - public function lastModified($path) |
|
399 | - { |
|
400 | - if ($this->exists($path)) { |
|
401 | - return filemtime($path); |
|
402 | - } |
|
403 | - |
|
404 | - return false; |
|
405 | - } |
|
406 | - |
|
407 | - /** |
|
408 | - * Get all of the directories within a given directory. |
|
409 | - * |
|
410 | - * @param string $directory |
|
411 | - * |
|
412 | - * @return array |
|
413 | - */ |
|
414 | - public function directories($directory) |
|
415 | - { |
|
416 | - $directories = []; |
|
417 | - |
|
418 | - $iterators = new FilesystemIterator($directory); |
|
419 | - |
|
420 | - foreach ($iterators as $iterator) { |
|
421 | - $directories[] = trim($iterator->getPathname(), '/').'/'; |
|
422 | - } |
|
423 | - |
|
424 | - return $directories; |
|
425 | - } |
|
426 | - |
|
427 | - /** |
|
428 | - * Delete the file at a given path. |
|
429 | - * |
|
430 | - * @param string $paths |
|
431 | - * |
|
432 | - * @return bool |
|
433 | - */ |
|
434 | - public function delete($paths) |
|
435 | - { |
|
436 | - if (is_resource($this->handler)) { |
|
437 | - fclose($this->handler); |
|
438 | - $this->handler = null; |
|
439 | - } |
|
440 | - |
|
441 | - $paths = is_array($paths) ? $paths : func_get_args(); |
|
442 | - |
|
443 | - $success = true; |
|
444 | - |
|
445 | - foreach ($paths as $path) { |
|
446 | - try { |
|
447 | - if ( ! @unlink($path)) { |
|
448 | - return $success = false; |
|
449 | - } |
|
450 | - } catch (ErrorException $e) { |
|
451 | - return $success = false; |
|
452 | - } |
|
453 | - } |
|
454 | - |
|
455 | - return $success; |
|
456 | - } |
|
457 | - |
|
458 | - /** |
|
459 | - * Create a directory. |
|
460 | - * |
|
461 | - * @param string $path |
|
462 | - * @param int $mode |
|
463 | - * @param bool $recursive |
|
464 | - * @param bool $force |
|
465 | - * |
|
466 | - * @return bool |
|
467 | - * |
|
468 | - * @throws FileException |
|
469 | - */ |
|
470 | - public function makeDirectory($path, $mode = 0755, $recursive = false, $force = false) |
|
471 | - { |
|
472 | - if ($force) { |
|
473 | - return @mkdir($path, $mode, $recursive); |
|
474 | - } |
|
475 | - |
|
476 | - mkdir($path, $mode, $recursive); |
|
477 | - } |
|
478 | - |
|
479 | - /** |
|
480 | - * Copy a directory from one location to another. |
|
481 | - * |
|
482 | - * @param string $directory |
|
483 | - * @param string $destination |
|
484 | - * @param int $options |
|
485 | - * |
|
486 | - * @return bool |
|
487 | - */ |
|
488 | - public function copyDirectory($directory, $destination, $options = null) |
|
489 | - { |
|
490 | - if ( ! $this->isDirectory($directory)) return false; |
|
491 | - |
|
492 | - $options = $options ?: FilesystemIterator::SKIP_DOTS; |
|
315 | + /** |
|
316 | + * Returns true if the file is executable. |
|
317 | + * |
|
318 | + * @param string $path |
|
319 | + * |
|
320 | + * @return bool True if file is executable, false otherwise |
|
321 | + */ |
|
322 | + public function exec($path) |
|
323 | + { |
|
324 | + return is_executable($path); |
|
325 | + } |
|
326 | + |
|
327 | + /** |
|
328 | + * Determine if the given path is a directory. |
|
329 | + * |
|
330 | + * @param string $directory |
|
331 | + * |
|
332 | + * @return bool |
|
333 | + */ |
|
334 | + public function isDirectory($directory) |
|
335 | + { |
|
336 | + return is_dir($directory); |
|
337 | + } |
|
338 | + |
|
339 | + /** |
|
340 | + * Determine if the given path is a file. |
|
341 | + * |
|
342 | + * @param string $file |
|
343 | + * |
|
344 | + * @return bool |
|
345 | + */ |
|
346 | + public function isFile($file) |
|
347 | + { |
|
348 | + return is_file($file); |
|
349 | + } |
|
350 | + |
|
351 | + /** |
|
352 | + * Determine if the given path is writable. |
|
353 | + * |
|
354 | + * @param string $path |
|
355 | + * |
|
356 | + * @return bool |
|
357 | + */ |
|
358 | + public function isWritable($path) |
|
359 | + { |
|
360 | + return is_writable($path); |
|
361 | + } |
|
362 | + |
|
363 | + /** |
|
364 | + * Returns if true the file is readable. |
|
365 | + * |
|
366 | + * @param string $path |
|
367 | + * |
|
368 | + * @return bool True if file is readable, false otherwise |
|
369 | + */ |
|
370 | + public function isReadable($path) |
|
371 | + { |
|
372 | + return is_readable($path); |
|
373 | + } |
|
374 | + |
|
375 | + /** |
|
376 | + * Returns last access time. |
|
377 | + * |
|
378 | + * @param string $path |
|
379 | + * |
|
380 | + * @return int|bool Timestamp of last access time, or false in case of an error |
|
381 | + */ |
|
382 | + public function lastAccess($path) |
|
383 | + { |
|
384 | + if ($this->exists($path)) { |
|
385 | + return fileatime($path); |
|
386 | + } |
|
387 | + |
|
388 | + return false; |
|
389 | + } |
|
390 | + |
|
391 | + /** |
|
392 | + * Returns last modified time. |
|
393 | + * |
|
394 | + * @param string $path |
|
395 | + * |
|
396 | + * @return int|bool Timestamp of last modified time, or false in case of an error |
|
397 | + */ |
|
398 | + public function lastModified($path) |
|
399 | + { |
|
400 | + if ($this->exists($path)) { |
|
401 | + return filemtime($path); |
|
402 | + } |
|
403 | + |
|
404 | + return false; |
|
405 | + } |
|
406 | + |
|
407 | + /** |
|
408 | + * Get all of the directories within a given directory. |
|
409 | + * |
|
410 | + * @param string $directory |
|
411 | + * |
|
412 | + * @return array |
|
413 | + */ |
|
414 | + public function directories($directory) |
|
415 | + { |
|
416 | + $directories = []; |
|
417 | + |
|
418 | + $iterators = new FilesystemIterator($directory); |
|
419 | + |
|
420 | + foreach ($iterators as $iterator) { |
|
421 | + $directories[] = trim($iterator->getPathname(), '/').'/'; |
|
422 | + } |
|
423 | + |
|
424 | + return $directories; |
|
425 | + } |
|
426 | + |
|
427 | + /** |
|
428 | + * Delete the file at a given path. |
|
429 | + * |
|
430 | + * @param string $paths |
|
431 | + * |
|
432 | + * @return bool |
|
433 | + */ |
|
434 | + public function delete($paths) |
|
435 | + { |
|
436 | + if (is_resource($this->handler)) { |
|
437 | + fclose($this->handler); |
|
438 | + $this->handler = null; |
|
439 | + } |
|
440 | + |
|
441 | + $paths = is_array($paths) ? $paths : func_get_args(); |
|
442 | + |
|
443 | + $success = true; |
|
444 | + |
|
445 | + foreach ($paths as $path) { |
|
446 | + try { |
|
447 | + if ( ! @unlink($path)) { |
|
448 | + return $success = false; |
|
449 | + } |
|
450 | + } catch (ErrorException $e) { |
|
451 | + return $success = false; |
|
452 | + } |
|
453 | + } |
|
454 | + |
|
455 | + return $success; |
|
456 | + } |
|
457 | + |
|
458 | + /** |
|
459 | + * Create a directory. |
|
460 | + * |
|
461 | + * @param string $path |
|
462 | + * @param int $mode |
|
463 | + * @param bool $recursive |
|
464 | + * @param bool $force |
|
465 | + * |
|
466 | + * @return bool |
|
467 | + * |
|
468 | + * @throws FileException |
|
469 | + */ |
|
470 | + public function makeDirectory($path, $mode = 0755, $recursive = false, $force = false) |
|
471 | + { |
|
472 | + if ($force) { |
|
473 | + return @mkdir($path, $mode, $recursive); |
|
474 | + } |
|
475 | + |
|
476 | + mkdir($path, $mode, $recursive); |
|
477 | + } |
|
478 | + |
|
479 | + /** |
|
480 | + * Copy a directory from one location to another. |
|
481 | + * |
|
482 | + * @param string $directory |
|
483 | + * @param string $destination |
|
484 | + * @param int $options |
|
485 | + * |
|
486 | + * @return bool |
|
487 | + */ |
|
488 | + public function copyDirectory($directory, $destination, $options = null) |
|
489 | + { |
|
490 | + if ( ! $this->isDirectory($directory)) return false; |
|
491 | + |
|
492 | + $options = $options ?: FilesystemIterator::SKIP_DOTS; |
|
493 | 493 | |
494 | - // If the destination directory does not actually exist, we will go ahead and |
|
495 | - // create it recursively, which just gets the destination prepared to copy |
|
496 | - // the files over. Once we make the directory we'll proceed the copying. |
|
497 | - if ( ! $this->isdirectory($destination)) { |
|
498 | - $this->makeDirectory($destination, 0777, true); |
|
499 | - } |
|
494 | + // If the destination directory does not actually exist, we will go ahead and |
|
495 | + // create it recursively, which just gets the destination prepared to copy |
|
496 | + // the files over. Once we make the directory we'll proceed the copying. |
|
497 | + if ( ! $this->isdirectory($destination)) { |
|
498 | + $this->makeDirectory($destination, 0777, true); |
|
499 | + } |
|
500 | 500 | |
501 | - $iterators = new FilesystemIterator($directory, $options); |
|
501 | + $iterators = new FilesystemIterator($directory, $options); |
|
502 | 502 | |
503 | - foreach ($iterators as $iterator) { |
|
504 | - $target = $destination.DIRECTORY_SEPARATOR.$iterator->getBasename(); |
|
503 | + foreach ($iterators as $iterator) { |
|
504 | + $target = $destination.DIRECTORY_SEPARATOR.$iterator->getBasename(); |
|
505 | 505 | |
506 | - // As we spin through items, we will check to see if the current file is actually |
|
506 | + // As we spin through items, we will check to see if the current file is actually |
|
507 | 507 | // a directory or a file. When it is actually a directory we will need to call |
508 | 508 | // back into this function recursively to keep copying these nested folders. |
509 | - if ($iterator->isDir()) { |
|
510 | - if ( ! $this->copyDirectory($iterator->getPathname(), $target, $options)) return false; |
|
511 | - } |
|
512 | - // If the current items is just a regular file, we will just copy this to the new |
|
513 | - // location and keep looping. If for some reason the copy fails we'll bail out |
|
514 | - // and return false, so the developer is aware that the copy process failed. |
|
515 | - else { |
|
516 | - if ( ! $this->copy($iterator->getPathname(), $target)) return false; |
|
517 | - } |
|
518 | - } |
|
519 | - |
|
520 | - return true; |
|
521 | - } |
|
522 | - |
|
523 | - /** |
|
524 | - * Recursively delete a directory and optionally you can keep |
|
525 | - * the directory if you wish. |
|
526 | - * |
|
527 | - * @param string $directory |
|
528 | - * @param bool $keep |
|
529 | - * |
|
530 | - * @return bool |
|
531 | - */ |
|
532 | - public function deleteDirectory($directory, $keep = false) |
|
533 | - { |
|
534 | - if ( ! $this->isDirectory($directory)) return false; |
|
535 | - |
|
536 | - $iterators = new filesystemIterator($directory); |
|
537 | - |
|
538 | - foreach ($iterators as $iterator) { |
|
539 | - // If the item is a directory, we can just recurse into the function and delete |
|
540 | - // that sub-directory otherwise we'll just delete the file and keep iterating |
|
541 | - // through each file until the directory is cleaned. |
|
542 | - if ($iterator->isDir() && ! $iterator->isLink()) { |
|
543 | - $this->deleteDirectory($iterator->getPathname()); |
|
544 | - } |
|
545 | - // If the item is just a file, we can go ahead and delete it since we're |
|
546 | - // just looping through and waxing all of the files in this directory |
|
547 | - // and calling directories recursively, so we delete the real path. |
|
548 | - else { |
|
549 | - $this->delete($iterator->getPathname()); |
|
550 | - } |
|
551 | - } |
|
552 | - |
|
553 | - if ( ! $keep) @rmdir($directory); |
|
554 | - |
|
555 | - return true; |
|
556 | - } |
|
557 | - |
|
558 | - /** |
|
559 | - * Empty the specified directory of all files and folders. |
|
560 | - * |
|
561 | - * |
|
562 | - * @param string $directory |
|
563 | - * |
|
564 | - * @return bool |
|
565 | - */ |
|
566 | - public function cleanDirectory($directory) |
|
567 | - { |
|
568 | - return $this->deleteDirectory($directory, true); |
|
569 | - } |
|
570 | - |
|
571 | - /** |
|
572 | - * Moves a file to a new location. |
|
573 | - * |
|
574 | - * @param string $from |
|
575 | - * @param string $to |
|
576 | - * @param bool $overwrite |
|
577 | - * |
|
578 | - * @return bool |
|
579 | - */ |
|
580 | - public function moveDirectory($from, $to, $overwrite = false) |
|
581 | - { |
|
582 | - if ($overwrite && $this->isDirectory($to) && ! $this->deleteDirectory($to)) return false; |
|
583 | - |
|
584 | - if (false === @rename($from, $to)) { |
|
585 | - $error = error_get_last(); |
|
586 | - |
|
587 | - throw new FileUnableToMoveException($from, $to, strip_tags($error['message'])); |
|
588 | - } |
|
589 | - |
|
590 | - $this->perms($to, 0777 & ~umask()); |
|
591 | - } |
|
592 | - |
|
593 | - /** |
|
594 | - * Attempts to determine the file extension based on the trusted |
|
595 | - * getType() method. If the mime type is unknown, will return null. |
|
596 | - * |
|
597 | - * @param string $path |
|
598 | - * |
|
599 | - * @return string|null |
|
600 | - */ |
|
601 | - public function guessExtension($path) |
|
602 | - { |
|
603 | - return FileMimeType::guessExtensionFromType($this->getMimeType($path)); |
|
604 | - } |
|
605 | - |
|
606 | - /** |
|
607 | - * Retrieve the media type of the file. |
|
608 | - * |
|
609 | - * @param string $path |
|
610 | - * |
|
611 | - * @return string|null |
|
612 | - */ |
|
613 | - public function getMimeType($path) |
|
614 | - { |
|
615 | - $finfo = finfo_open(FILEINFO_MIME_TYPE); |
|
616 | - $mimeType = finfo_file($finfo, $path); |
|
617 | - |
|
618 | - finfo_close($finfo); |
|
619 | - |
|
620 | - return $mimeType; |
|
621 | - } |
|
622 | - |
|
623 | - /** |
|
624 | - * Move a file to a new location. |
|
625 | - * |
|
626 | - * @param string $path |
|
627 | - * @param string $target |
|
628 | - * |
|
629 | - * @return bool |
|
630 | - */ |
|
631 | - public function move($path, $target) |
|
632 | - { |
|
633 | - if ($this->exists($path)) { |
|
634 | - return rename($path, $target); |
|
635 | - } |
|
636 | - } |
|
637 | - |
|
638 | - /** |
|
639 | - * Extract the file name from a file path. |
|
640 | - * |
|
641 | - * @param string $path |
|
642 | - * |
|
643 | - * @return string |
|
644 | - */ |
|
645 | - public function name($path) |
|
646 | - { |
|
647 | - return pathinfo($path, PATHINFO_FILENAME); |
|
648 | - } |
|
649 | - |
|
650 | - /** |
|
651 | - * Extract the trailing name component from a file path. |
|
652 | - * |
|
653 | - * @param string $path |
|
654 | - * |
|
655 | - * @return string |
|
656 | - */ |
|
657 | - public function basename($path) |
|
658 | - { |
|
659 | - return pathinfo($path, PATHINFO_BASENAME); |
|
660 | - } |
|
661 | - |
|
662 | - /** |
|
663 | - * Extract the parent directory from a file path. |
|
664 | - * |
|
665 | - * @param string $path |
|
666 | - * |
|
667 | - * @return string |
|
668 | - */ |
|
669 | - public function dirname($path) |
|
670 | - { |
|
671 | - return pathinfo($path, PATHINFO_DIRNAME); |
|
672 | - } |
|
673 | - |
|
674 | - /** |
|
675 | - * Extract the file extension from a file path. |
|
676 | - * |
|
677 | - * @param string $path |
|
678 | - * |
|
679 | - * @return string |
|
680 | - */ |
|
681 | - public function extension($path) |
|
682 | - { |
|
683 | - return pathinfo($path, PATHINFO_EXTENSION); |
|
684 | - } |
|
685 | - |
|
686 | - /** |
|
687 | - * Find path names matching a given pattern. |
|
688 | - * |
|
689 | - * @param string $pattern |
|
690 | - * @param int $flags (0 by default) |
|
691 | - * |
|
692 | - * @return array |
|
693 | - */ |
|
694 | - public function glob($pattern, $flags = 0) |
|
695 | - { |
|
696 | - return glob($pattern, $flags); |
|
697 | - } |
|
698 | - |
|
699 | - /** |
|
700 | - * Returns the file's owner. |
|
701 | - * |
|
702 | - * @param string $path |
|
703 | - * |
|
704 | - * @return int|bool The file owner, or false in case of an error |
|
705 | - */ |
|
706 | - public function owner($path) |
|
707 | - { |
|
708 | - if ($this->exists($path)) { |
|
709 | - return fileowner($path); |
|
710 | - } |
|
711 | - |
|
712 | - return false; |
|
713 | - } |
|
714 | - |
|
715 | - /** |
|
716 | - * Returns the "chmod" (permissions) of the file. |
|
717 | - * |
|
718 | - * @param string $path |
|
719 | - * @param int|null $mode |
|
720 | - * |
|
721 | - * @return mixed Permissions for the file, or false in case of an error |
|
722 | - */ |
|
723 | - public function perms($path, $mode = null) |
|
724 | - { |
|
725 | - if ($mode) { |
|
726 | - chmod($path, $mode); |
|
727 | - } |
|
728 | - |
|
729 | - return substr(sprintf('%o', fileperms($path)), -4); |
|
730 | - } |
|
731 | - |
|
732 | - /** |
|
733 | - * Prepend to a file. |
|
734 | - * |
|
735 | - * @param string $path |
|
736 | - * @param string $data |
|
737 | - * |
|
738 | - * @return int |
|
739 | - */ |
|
740 | - public function prepend($path, $data) |
|
741 | - { |
|
742 | - if ($this->exists($path)) { |
|
743 | - $this->put($path, $data.$this->get($path)); |
|
744 | - } |
|
745 | - |
|
746 | - return $this->put($path, $data); |
|
747 | - } |
|
748 | - |
|
749 | - /** |
|
750 | - * Write the content of a file. |
|
751 | - * |
|
752 | - * @param string $path |
|
753 | - * @param string $contents |
|
754 | - * @param bool $lock |
|
755 | - * |
|
756 | - * @return int |
|
757 | - */ |
|
758 | - public function put($path, $contents, $lock = false) |
|
759 | - { |
|
760 | - return file_put_contents($path, $contents, $lock ? LOCK_EX : 0); |
|
761 | - } |
|
762 | - |
|
763 | - /** |
|
764 | - * Get the file type of a given file. |
|
765 | - * |
|
766 | - * @param string $path |
|
767 | - * |
|
768 | - * @return string |
|
769 | - */ |
|
770 | - public function type($path) |
|
771 | - { |
|
772 | - return filetype($path); |
|
773 | - } |
|
509 | + if ($iterator->isDir()) { |
|
510 | + if ( ! $this->copyDirectory($iterator->getPathname(), $target, $options)) return false; |
|
511 | + } |
|
512 | + // If the current items is just a regular file, we will just copy this to the new |
|
513 | + // location and keep looping. If for some reason the copy fails we'll bail out |
|
514 | + // and return false, so the developer is aware that the copy process failed. |
|
515 | + else { |
|
516 | + if ( ! $this->copy($iterator->getPathname(), $target)) return false; |
|
517 | + } |
|
518 | + } |
|
519 | + |
|
520 | + return true; |
|
521 | + } |
|
522 | + |
|
523 | + /** |
|
524 | + * Recursively delete a directory and optionally you can keep |
|
525 | + * the directory if you wish. |
|
526 | + * |
|
527 | + * @param string $directory |
|
528 | + * @param bool $keep |
|
529 | + * |
|
530 | + * @return bool |
|
531 | + */ |
|
532 | + public function deleteDirectory($directory, $keep = false) |
|
533 | + { |
|
534 | + if ( ! $this->isDirectory($directory)) return false; |
|
535 | + |
|
536 | + $iterators = new filesystemIterator($directory); |
|
537 | + |
|
538 | + foreach ($iterators as $iterator) { |
|
539 | + // If the item is a directory, we can just recurse into the function and delete |
|
540 | + // that sub-directory otherwise we'll just delete the file and keep iterating |
|
541 | + // through each file until the directory is cleaned. |
|
542 | + if ($iterator->isDir() && ! $iterator->isLink()) { |
|
543 | + $this->deleteDirectory($iterator->getPathname()); |
|
544 | + } |
|
545 | + // If the item is just a file, we can go ahead and delete it since we're |
|
546 | + // just looping through and waxing all of the files in this directory |
|
547 | + // and calling directories recursively, so we delete the real path. |
|
548 | + else { |
|
549 | + $this->delete($iterator->getPathname()); |
|
550 | + } |
|
551 | + } |
|
552 | + |
|
553 | + if ( ! $keep) @rmdir($directory); |
|
554 | + |
|
555 | + return true; |
|
556 | + } |
|
557 | + |
|
558 | + /** |
|
559 | + * Empty the specified directory of all files and folders. |
|
560 | + * |
|
561 | + * |
|
562 | + * @param string $directory |
|
563 | + * |
|
564 | + * @return bool |
|
565 | + */ |
|
566 | + public function cleanDirectory($directory) |
|
567 | + { |
|
568 | + return $this->deleteDirectory($directory, true); |
|
569 | + } |
|
570 | + |
|
571 | + /** |
|
572 | + * Moves a file to a new location. |
|
573 | + * |
|
574 | + * @param string $from |
|
575 | + * @param string $to |
|
576 | + * @param bool $overwrite |
|
577 | + * |
|
578 | + * @return bool |
|
579 | + */ |
|
580 | + public function moveDirectory($from, $to, $overwrite = false) |
|
581 | + { |
|
582 | + if ($overwrite && $this->isDirectory($to) && ! $this->deleteDirectory($to)) return false; |
|
583 | + |
|
584 | + if (false === @rename($from, $to)) { |
|
585 | + $error = error_get_last(); |
|
586 | + |
|
587 | + throw new FileUnableToMoveException($from, $to, strip_tags($error['message'])); |
|
588 | + } |
|
589 | + |
|
590 | + $this->perms($to, 0777 & ~umask()); |
|
591 | + } |
|
592 | + |
|
593 | + /** |
|
594 | + * Attempts to determine the file extension based on the trusted |
|
595 | + * getType() method. If the mime type is unknown, will return null. |
|
596 | + * |
|
597 | + * @param string $path |
|
598 | + * |
|
599 | + * @return string|null |
|
600 | + */ |
|
601 | + public function guessExtension($path) |
|
602 | + { |
|
603 | + return FileMimeType::guessExtensionFromType($this->getMimeType($path)); |
|
604 | + } |
|
605 | + |
|
606 | + /** |
|
607 | + * Retrieve the media type of the file. |
|
608 | + * |
|
609 | + * @param string $path |
|
610 | + * |
|
611 | + * @return string|null |
|
612 | + */ |
|
613 | + public function getMimeType($path) |
|
614 | + { |
|
615 | + $finfo = finfo_open(FILEINFO_MIME_TYPE); |
|
616 | + $mimeType = finfo_file($finfo, $path); |
|
617 | + |
|
618 | + finfo_close($finfo); |
|
619 | + |
|
620 | + return $mimeType; |
|
621 | + } |
|
622 | + |
|
623 | + /** |
|
624 | + * Move a file to a new location. |
|
625 | + * |
|
626 | + * @param string $path |
|
627 | + * @param string $target |
|
628 | + * |
|
629 | + * @return bool |
|
630 | + */ |
|
631 | + public function move($path, $target) |
|
632 | + { |
|
633 | + if ($this->exists($path)) { |
|
634 | + return rename($path, $target); |
|
635 | + } |
|
636 | + } |
|
637 | + |
|
638 | + /** |
|
639 | + * Extract the file name from a file path. |
|
640 | + * |
|
641 | + * @param string $path |
|
642 | + * |
|
643 | + * @return string |
|
644 | + */ |
|
645 | + public function name($path) |
|
646 | + { |
|
647 | + return pathinfo($path, PATHINFO_FILENAME); |
|
648 | + } |
|
649 | + |
|
650 | + /** |
|
651 | + * Extract the trailing name component from a file path. |
|
652 | + * |
|
653 | + * @param string $path |
|
654 | + * |
|
655 | + * @return string |
|
656 | + */ |
|
657 | + public function basename($path) |
|
658 | + { |
|
659 | + return pathinfo($path, PATHINFO_BASENAME); |
|
660 | + } |
|
661 | + |
|
662 | + /** |
|
663 | + * Extract the parent directory from a file path. |
|
664 | + * |
|
665 | + * @param string $path |
|
666 | + * |
|
667 | + * @return string |
|
668 | + */ |
|
669 | + public function dirname($path) |
|
670 | + { |
|
671 | + return pathinfo($path, PATHINFO_DIRNAME); |
|
672 | + } |
|
673 | + |
|
674 | + /** |
|
675 | + * Extract the file extension from a file path. |
|
676 | + * |
|
677 | + * @param string $path |
|
678 | + * |
|
679 | + * @return string |
|
680 | + */ |
|
681 | + public function extension($path) |
|
682 | + { |
|
683 | + return pathinfo($path, PATHINFO_EXTENSION); |
|
684 | + } |
|
685 | + |
|
686 | + /** |
|
687 | + * Find path names matching a given pattern. |
|
688 | + * |
|
689 | + * @param string $pattern |
|
690 | + * @param int $flags (0 by default) |
|
691 | + * |
|
692 | + * @return array |
|
693 | + */ |
|
694 | + public function glob($pattern, $flags = 0) |
|
695 | + { |
|
696 | + return glob($pattern, $flags); |
|
697 | + } |
|
698 | + |
|
699 | + /** |
|
700 | + * Returns the file's owner. |
|
701 | + * |
|
702 | + * @param string $path |
|
703 | + * |
|
704 | + * @return int|bool The file owner, or false in case of an error |
|
705 | + */ |
|
706 | + public function owner($path) |
|
707 | + { |
|
708 | + if ($this->exists($path)) { |
|
709 | + return fileowner($path); |
|
710 | + } |
|
711 | + |
|
712 | + return false; |
|
713 | + } |
|
714 | + |
|
715 | + /** |
|
716 | + * Returns the "chmod" (permissions) of the file. |
|
717 | + * |
|
718 | + * @param string $path |
|
719 | + * @param int|null $mode |
|
720 | + * |
|
721 | + * @return mixed Permissions for the file, or false in case of an error |
|
722 | + */ |
|
723 | + public function perms($path, $mode = null) |
|
724 | + { |
|
725 | + if ($mode) { |
|
726 | + chmod($path, $mode); |
|
727 | + } |
|
728 | + |
|
729 | + return substr(sprintf('%o', fileperms($path)), -4); |
|
730 | + } |
|
731 | + |
|
732 | + /** |
|
733 | + * Prepend to a file. |
|
734 | + * |
|
735 | + * @param string $path |
|
736 | + * @param string $data |
|
737 | + * |
|
738 | + * @return int |
|
739 | + */ |
|
740 | + public function prepend($path, $data) |
|
741 | + { |
|
742 | + if ($this->exists($path)) { |
|
743 | + $this->put($path, $data.$this->get($path)); |
|
744 | + } |
|
745 | + |
|
746 | + return $this->put($path, $data); |
|
747 | + } |
|
748 | + |
|
749 | + /** |
|
750 | + * Write the content of a file. |
|
751 | + * |
|
752 | + * @param string $path |
|
753 | + * @param string $contents |
|
754 | + * @param bool $lock |
|
755 | + * |
|
756 | + * @return int |
|
757 | + */ |
|
758 | + public function put($path, $contents, $lock = false) |
|
759 | + { |
|
760 | + return file_put_contents($path, $contents, $lock ? LOCK_EX : 0); |
|
761 | + } |
|
762 | + |
|
763 | + /** |
|
764 | + * Get the file type of a given file. |
|
765 | + * |
|
766 | + * @param string $path |
|
767 | + * |
|
768 | + * @return string |
|
769 | + */ |
|
770 | + public function type($path) |
|
771 | + { |
|
772 | + return filetype($path); |
|
773 | + } |
|
774 | 774 | |
775 | - /** |
|
776 | - * Write the contents of a file, replacing it atomically if it already exists. |
|
777 | - * |
|
778 | - * @param string $path |
|
779 | - * @param string $content |
|
780 | - * |
|
781 | - * @return void |
|
782 | - */ |
|
783 | - public function replace($path, $content) |
|
784 | - { |
|
785 | - $this->clearstatcache($path); |
|
775 | + /** |
|
776 | + * Write the contents of a file, replacing it atomically if it already exists. |
|
777 | + * |
|
778 | + * @param string $path |
|
779 | + * @param string $content |
|
780 | + * |
|
781 | + * @return void |
|
782 | + */ |
|
783 | + public function replace($path, $content) |
|
784 | + { |
|
785 | + $this->clearstatcache($path); |
|
786 | 786 | |
787 | - $path = realpath($path) ?: $path; |
|
787 | + $path = realpath($path) ?: $path; |
|
788 | 788 | |
789 | - $tempPath = tempnam(dirname($path), basename($path)); |
|
789 | + $tempPath = tempnam(dirname($path), basename($path)); |
|
790 | 790 | |
791 | - $this->perms($tempPath, 0777 - umask()); |
|
791 | + $this->perms($tempPath, 0777 - umask()); |
|
792 | 792 | |
793 | - $this->put($tempPath, $content); |
|
793 | + $this->put($tempPath, $content); |
|
794 | 794 | |
795 | - $this->move($tempPath, $path); |
|
796 | - } |
|
797 | - |
|
798 | - /** |
|
799 | - * Searches for a given text and replaces the text if found. |
|
800 | - * |
|
801 | - * @param string $path |
|
802 | - * @param string $search |
|
803 | - * @param string $replace |
|
804 | - * |
|
805 | - * @return bool |
|
806 | - */ |
|
807 | - public function replaceText($path, $search, $replace) |
|
808 | - { |
|
809 | - if ( ! $this->open($path, 'r+')) { |
|
810 | - return false; |
|
811 | - } |
|
812 | - |
|
813 | - if ($this->lock !== null) { |
|
814 | - if (flock($this->handler, LOCK_EX) === false) |
|
815 | - { |
|
816 | - return false; |
|
817 | - } |
|
818 | - } |
|
819 | - |
|
820 | - $replaced = $this->write($path, str_replace($search, $replace, $this->get($path)), true); |
|
821 | - |
|
822 | - if ($this->lock !== null) { |
|
823 | - flock($this->handler, LOCK_UN); |
|
824 | - } |
|
825 | - |
|
826 | - $this->close(); |
|
827 | - |
|
828 | - return $replaced; |
|
829 | - } |
|
830 | - |
|
831 | - /** |
|
832 | - * Closes the current file if it is opened. |
|
833 | - * |
|
834 | - * @return bool |
|
835 | - */ |
|
836 | - public function close() |
|
837 | - { |
|
838 | - if ( ! is_resource($this->handler)) { |
|
839 | - return true; |
|
840 | - } |
|
841 | - |
|
842 | - return fclose($this->handler); |
|
843 | - } |
|
844 | - |
|
845 | - /** |
|
846 | - * Write given data to this file. |
|
847 | - * |
|
848 | - * @param string $path |
|
849 | - * @param string $data Data to write to this File |
|
850 | - * @param bool $force The file to open |
|
851 | - * |
|
852 | - * @return bool |
|
853 | - */ |
|
854 | - public function write($path, $data, $force = false) |
|
855 | - { |
|
856 | - $success = false; |
|
857 | - |
|
858 | - if ($this->open($path, 'w', $force) === true) { |
|
859 | - if ($this->lock !== null) { |
|
860 | - if (flock($this->handler, LOCK_EX) === false) { |
|
861 | - return false; |
|
862 | - } |
|
863 | - } |
|
864 | - |
|
865 | - if (fwrite($this->handler, $data) !== false) { |
|
866 | - $success = true; |
|
867 | - } |
|
868 | - |
|
869 | - if ($this->lock !== null) { |
|
870 | - flock($this->handler, LOCK_UN); |
|
871 | - } |
|
872 | - } |
|
873 | - |
|
874 | - return $success; |
|
875 | - } |
|
795 | + $this->move($tempPath, $path); |
|
796 | + } |
|
797 | + |
|
798 | + /** |
|
799 | + * Searches for a given text and replaces the text if found. |
|
800 | + * |
|
801 | + * @param string $path |
|
802 | + * @param string $search |
|
803 | + * @param string $replace |
|
804 | + * |
|
805 | + * @return bool |
|
806 | + */ |
|
807 | + public function replaceText($path, $search, $replace) |
|
808 | + { |
|
809 | + if ( ! $this->open($path, 'r+')) { |
|
810 | + return false; |
|
811 | + } |
|
812 | + |
|
813 | + if ($this->lock !== null) { |
|
814 | + if (flock($this->handler, LOCK_EX) === false) |
|
815 | + { |
|
816 | + return false; |
|
817 | + } |
|
818 | + } |
|
819 | + |
|
820 | + $replaced = $this->write($path, str_replace($search, $replace, $this->get($path)), true); |
|
821 | + |
|
822 | + if ($this->lock !== null) { |
|
823 | + flock($this->handler, LOCK_UN); |
|
824 | + } |
|
825 | + |
|
826 | + $this->close(); |
|
827 | + |
|
828 | + return $replaced; |
|
829 | + } |
|
830 | + |
|
831 | + /** |
|
832 | + * Closes the current file if it is opened. |
|
833 | + * |
|
834 | + * @return bool |
|
835 | + */ |
|
836 | + public function close() |
|
837 | + { |
|
838 | + if ( ! is_resource($this->handler)) { |
|
839 | + return true; |
|
840 | + } |
|
841 | + |
|
842 | + return fclose($this->handler); |
|
843 | + } |
|
844 | + |
|
845 | + /** |
|
846 | + * Write given data to this file. |
|
847 | + * |
|
848 | + * @param string $path |
|
849 | + * @param string $data Data to write to this File |
|
850 | + * @param bool $force The file to open |
|
851 | + * |
|
852 | + * @return bool |
|
853 | + */ |
|
854 | + public function write($path, $data, $force = false) |
|
855 | + { |
|
856 | + $success = false; |
|
857 | + |
|
858 | + if ($this->open($path, 'w', $force) === true) { |
|
859 | + if ($this->lock !== null) { |
|
860 | + if (flock($this->handler, LOCK_EX) === false) { |
|
861 | + return false; |
|
862 | + } |
|
863 | + } |
|
864 | + |
|
865 | + if (fwrite($this->handler, $data) !== false) { |
|
866 | + $success = true; |
|
867 | + } |
|
868 | + |
|
869 | + if ($this->lock !== null) { |
|
870 | + flock($this->handler, LOCK_UN); |
|
871 | + } |
|
872 | + } |
|
873 | + |
|
874 | + return $success; |
|
875 | + } |
|
876 | 876 | } |
877 | 877 | \ No newline at end of file |
@@ -46,13 +46,13 @@ |
||
46 | 46 | */ |
47 | 47 | protected $keyName; |
48 | 48 | |
49 | - /** |
|
50 | - * Constructor. Create a new cache key instance. |
|
51 | - * |
|
52 | - * @param string $key |
|
53 | - * |
|
54 | - * @return string |
|
55 | - */ |
|
49 | + /** |
|
50 | + * Constructor. Create a new cache key instance. |
|
51 | + * |
|
52 | + * @param string $key |
|
53 | + * |
|
54 | + * @return string |
|
55 | + */ |
|
56 | 56 | public function __construct($key) |
57 | 57 | { |
58 | 58 | $this->keyName = $this->getFixKeyChars($key); |
@@ -310,11 +310,11 @@ |
||
310 | 310 | return $this->files; |
311 | 311 | } |
312 | 312 | |
313 | - /** |
|
314 | - * Get the cache key prefix. |
|
315 | - * |
|
316 | - * @return string |
|
317 | - */ |
|
313 | + /** |
|
314 | + * Get the cache key prefix. |
|
315 | + * |
|
316 | + * @return string |
|
317 | + */ |
|
318 | 318 | public function getPrefix() |
319 | 319 | { |
320 | 320 | return ''; |