9
9
use Codedge \Updater \Events \UpdateAvailable ;
10
10
use Codedge \Updater \Events \UpdateFailed ;
11
11
use Codedge \Updater \Events \UpdateSucceeded ;
12
- use File ;
13
12
use GuzzleHttp \Client ;
13
+ use Illuminate \Support \Facades \File ;
14
14
use Storage ;
15
15
use Symfony \Component \Finder \Finder ;
16
16
@@ -56,7 +56,7 @@ public function __construct(Client $client, array $config)
56
56
*
57
57
* @return bool
58
58
*/
59
- public function isNewVersionAvailable ($ currentVersion = '' ) : bool
59
+ public function isNewVersionAvailable ($ currentVersion = '' ): bool
60
60
{
61
61
$ version = $ currentVersion ?: $ this ->getVersionInstalled ();
62
62
@@ -124,7 +124,7 @@ public function fetch($version = '')
124
124
*
125
125
* @return bool
126
126
*/
127
- public function update ($ version = '' ) : bool
127
+ public function update ($ version = '' ): bool
128
128
{
129
129
$ this ->setPathToUpdate (base_path (), $ this ->config ['exclude_folders ' ]);
130
130
@@ -138,15 +138,16 @@ public function update($version = '') : bool
138
138
// Move all directories first
139
139
collect ((new Finder ())->in ($ sourcePath )->exclude ($ this ->config ['exclude_folders ' ])->directories ()->sort (function ($ a , $ b ) {
140
140
return strlen ($ b ->getRealpath ()) - strlen ($ a ->getRealpath ());
141
- }))->each (function ($ directory ) { /** @var \SplFileInfo $directory */
142
- if (count ( array_intersect (File:: directories (
143
- $ directory ->getRealPath ()), $ this ->config ['exclude_folders ' ]) == 0 )
141
+ }))->each (function (/** @var \SplFileInfo $directory */ $ directory ) {
142
+ if (! $ this -> isDirectoryExcluded (
143
+ File:: directories ( $ directory ->getRealPath ()), $ this ->config ['exclude_folders ' ])
144
144
) {
145
145
File::copyDirectory (
146
146
$ directory ->getRealPath (),
147
147
base_path ($ directory ->getRelativePath ()).'/ ' .$ directory ->getBasename ()
148
148
);
149
149
}
150
+
150
151
File::deleteDirectory ($ directory ->getRealPath ());
151
152
});
152
153
@@ -178,7 +179,7 @@ public function update($version = '') : bool
178
179
*
179
180
* @return string
180
181
*/
181
- public function getVersionInstalled ($ prepend = '' , $ append = '' ) : string
182
+ public function getVersionInstalled ($ prepend = '' , $ append = '' ): string
182
183
{
183
184
return $ prepend .$ this ->config ['version_installed ' ].$ append ;
184
185
}
@@ -192,7 +193,7 @@ public function getVersionInstalled($prepend = '', $append = '') : string
192
193
*
193
194
* @return string
194
195
*/
195
- public function getVersionAvailable ($ prepend = '' , $ append = '' ) : string
196
+ public function getVersionAvailable ($ prepend = '' , $ append = '' ): string
196
197
{
197
198
if ($ this ->versionFileExists ()) {
198
199
$ version = $ prepend .$ this ->getVersionFile ().$ append ;
@@ -240,7 +241,7 @@ protected function getRepositoryReleases()
240
241
*
241
242
* @return bool
242
243
*/
243
- protected function versionFileExists () : bool
244
+ protected function versionFileExists (): bool
244
245
{
245
246
return Storage::exists (static ::NEW_VERSION_FILE );
246
247
}
@@ -252,7 +253,7 @@ protected function versionFileExists() : bool
252
253
*
253
254
* @return bool
254
255
*/
255
- protected function setVersionFile (string $ content ) : bool
256
+ protected function setVersionFile (string $ content ): bool
256
257
{
257
258
return Storage::put (static ::NEW_VERSION_FILE , $ content );
258
259
}
@@ -262,7 +263,7 @@ protected function setVersionFile(string $content) : bool
262
263
*
263
264
* @return string
264
265
*/
265
- protected function getVersionFile () : string
266
+ protected function getVersionFile (): string
266
267
{
267
268
return Storage::get (static ::NEW_VERSION_FILE );
268
269
}
@@ -272,7 +273,7 @@ protected function getVersionFile() : string
272
273
*
273
274
* @return bool
274
275
*/
275
- protected function deleteVersionFile () : bool
276
+ protected function deleteVersionFile (): bool
276
277
{
277
278
return Storage::delete (static ::NEW_VERSION_FILE );
278
279
}
0 commit comments