1 | <?php |
||
11 | class File |
||
12 | { |
||
13 | /** |
||
14 | * @var ClientInterface |
||
15 | */ |
||
16 | private $guzzleClient; |
||
17 | |||
18 | /** |
||
19 | * @var Filesystem |
||
20 | */ |
||
21 | private $filesystem; |
||
22 | |||
23 | 27 | public function __construct(ClientInterface $guzzleClient = null) |
|
28 | |||
29 | /** |
||
30 | * @param $source |
||
31 | * @param null|string $destination |
||
32 | * |
||
33 | * @throws Exception |
||
34 | * |
||
35 | * @return bool|string |
||
36 | */ |
||
37 | 2 | public function copyFile($source, $destination = null) |
|
38 | { |
||
39 | 2 | if (preg_match('/^http(s?):\/\//', $source)) { |
|
40 | 2 | if ($destination === null) { |
|
41 | 1 | throw new Exception('No file destination given.'); |
|
42 | } |
||
43 | 1 | $destination = $this->download($source, $destination); |
|
44 | 1 | } else { |
|
45 | 1 | if ($destination !== null) { |
|
46 | 1 | $this->filesystem->copy($source, $destination); |
|
47 | 1 | } else { |
|
48 | 1 | $destination = $source; |
|
49 | } |
||
50 | } |
||
51 | |||
52 | 1 | if (!$this->filesystem->exists($destination)) { |
|
53 | 1 | return false; |
|
54 | } |
||
55 | |||
56 | 1 | return $destination; |
|
57 | } |
||
58 | |||
59 | /** |
||
60 | * @param string $url |
||
61 | * @param string $destination |
||
62 | * |
||
63 | * @throws CurlException |
||
64 | * @throws HttpStatusCodeException |
||
65 | * @throws \Exception |
||
66 | * |
||
67 | * @return string |
||
68 | */ |
||
69 | 2 | public function download($url, $destination) |
|
75 | |||
76 | /** |
||
77 | * @param string $file zipFile we want to open |
||
78 | * @param null|string $extractTo |
||
79 | * @param true|bool $delete |
||
80 | * |
||
81 | * @throws Exception |
||
82 | * |
||
83 | * @return array |
||
84 | */ |
||
85 | 2 | public function unZip($file, $extractTo = null, $delete = true) |
|
105 | |||
106 | /** |
||
107 | * @param string $file |
||
108 | * @return string[] |
||
109 | */ |
||
110 | public function readFileLinesIntoArray($file) |
||
114 | |||
115 | /** |
||
116 | * @param string[] $lines |
||
117 | * @param string $file |
||
118 | */ |
||
119 | public function writeLinesToFile($lines, $file) |
||
125 | } |
||
126 |
It is generally a best practice as it is often more readable to use concatenation instead of interpolation for variables inside strings.