-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathGitPathsRepository.php
More file actions
63 lines (53 loc) · 1.71 KB
/
Copy pathGitPathsRepository.php
File metadata and controls
63 lines (53 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
namespace App\Repositories;
use App\Contracts\PathsRepository;
use App\Factories\ConfigurationFactory;
use Illuminate\Support\Str;
use Symfony\Component\Process\Process;
class GitPathsRepository implements PathsRepository
{
/**
* The project path.
*
* @var string
*/
protected $path;
/**
* Creates a new Paths Repository instance.
*
* @param string $path
*/
public function __construct($path)
{
$this->path = $path;
}
/**
* {@inheritDoc}
*/
public function dirty()
{
$process = tap(new Process(['git', 'status', '--short', '--', '**.php']))->run();
if (! $process->isSuccessful()) {
abort(1, 'The [--dirty] option is only available when using Git.');
}
$dirtyFiles = collect(preg_split('/\R+/', $process->getOutput(), flags: PREG_SPLIT_NO_EMPTY))
->mapWithKeys(fn ($file) => [substr($file, 3) => trim(substr($file, 0, 3))])
->reject(fn ($status) => $status === 'D')
->map(fn ($status, $file) => $status === 'R' ? Str::after($file, ' -> ') : $file)
->map(function ($file) {
if (PHP_OS_FAMILY === 'Windows') {
$file = str_replace('/', DIRECTORY_SEPARATOR, $file);
}
return $this->path.DIRECTORY_SEPARATOR.$file;
})
->values()
->all();
$files = array_values(array_map(function ($splFile) {
return $splFile->getPathname();
}, iterator_to_array(ConfigurationFactory::finder()
->in($this->path)
->files()
)));
return array_values(array_intersect($files, $dirtyFiles));
}
}