-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKeySetDiffer.php
65 lines (57 loc) · 2.16 KB
/
KeySetDiffer.php
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
64
65
<?php
namespace clentfort\LaravelFindJsLocalizations;
use Illuminate\Support\Collection;
class KeySetDiffer
{
/**
* Builds a list of keys that are missing in the given KeySet.
*
* @param Collection $keys A collection of $keys to
* check the translation status
* for
* @param KeySet $keySet The KeySet used to read files
*
* @return Collection A nested collection of untranslated keys. The
* structure is `[prefix => [keys]]`. Where `prefix` is a
* common prefix shared by all keys in that collection.
* I.e for the string `some.string` and
* `some.otherstring` the collection would look liked
* `['some' => ['string', 'otherstring']]`.
*/
public static function diffKeys(
KeySet $keySet,
Collection $keys
) {
// Translations are stored in "prefix"-files. This means a key
// `some.string` will be saved in `some.php` with the index `string`.
$groupedKeys = static::groupKeysByPrefix($keys);
$groupedNewKeys = new Collection();
foreach ($groupedKeys as $prefix => $keys) {
$currentKeys = $keySet->getKeysWithPrefix($prefix);
$newKeys = $keys->diff($currentKeys->keys());
if (!$newKeys->isEmpty()) {
$groupedNewKeys[$prefix] = $newKeys;
}
}
return $groupedNewKeys;
}
/**
* Groups the keys in $keys by their common prefix and removes the prefix
* from the elements in a group.
*
* @param Collection $keys
*
* @return Collection A collection of collections of the form
* `['common_prefix' => ['key1', 'key2', ...]]`.
*/
protected static function groupKeysByPrefix(Collection $keys)
{
return $keys->unique()->groupBy(function ($key) {
return strstr($key, '.', true);
})->map(function ($group) {
return $group->map(function ($key) {
return mb_substr(strstr($key, '.'), 1);
});
});
}
}