Passed
Push — 9.x ( 55b0ab...1730b8 )
by Andrey
14:27
created

Missing::packageable()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 7
nc 1
nop 1
dl 0
loc 10
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Helldar\LaravelLangPublisher\Services;
4
5
use Helldar\LaravelLangPublisher\Concerns\Pathable;
6
use Helldar\LaravelLangPublisher\Constants\Locales as LocalesList;
7
use Helldar\LaravelLangPublisher\Facades\ArrayProcessor;
8
use Helldar\LaravelLangPublisher\Facades\Locales;
9
use Helldar\Support\Concerns\Makeable;
10
use Helldar\Support\Facades\Helpers\Filesystem\Directory;
11
12
final class Missing
13
{
14
    use Makeable;
15
    use Pathable;
16
17
    protected $locale = LocalesList::ENGLISH;
18
19
    public function missing(string $package): array
20
    {
21
        return array_diff($this->packageable($package), $this->available());
22
    }
23
24
    public function unnecessary(string $package): array
25
    {
26
        return array_diff($this->available(), $this->packageable($package));
27
    }
28
29
    protected function available(): array
30
    {
31
        return Locales::available(true);
32
    }
33
34
    protected function packageable(string $package): array
35
    {
36
        $items = $this->locales($package);
37
38
        return ArrayProcessor::of($items)
39
            ->push($this->defaultLocale())
40
            ->unique()
41
            ->sort()
42
            ->values()
43
            ->toArray();
44
    }
45
46
    protected function defaultLocale(): string
47
    {
48
        return LocalesList::ENGLISH;
49
    }
50
51
    protected function locales(string $package): array
52
    {
53
        $path = $this->path($package);
54
55
        return Directory::names($path);
56
    }
57
58
    protected function path(string $package): string
59
    {
60
        return $this->pathLocales($package);
61
    }
62
}
63