1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* Translation handler for cached translations in JSON Format |
5
|
|
|
*/ |
|
|
|
|
6
|
|
|
namespace Hokan22\LaravelTranslator\Handler; |
7
|
|
|
|
8
|
|
|
use Hokan22\LaravelTranslator\Models\TranslationIdentifier; |
9
|
|
|
use Symfony\Component\Translation\Exception\NotFoundResourceException; |
10
|
|
|
|
11
|
|
|
/** |
12
|
|
|
* Class LocaleHandler |
13
|
|
|
* |
14
|
|
|
* @category TranslatorHandler |
15
|
|
|
* @package Hokan22\LaravelTranslator\Handler |
16
|
|
|
* @author Alexander Viertel <[email protected]> |
17
|
|
|
* @license http://opensource.org/licenses/MIT MIT |
18
|
|
|
* @link https://github.com/Hokan22/laravel-translator |
19
|
|
|
*/ |
20
|
|
|
class DatabaseHandler implements HandlerInterface |
21
|
|
|
{ |
22
|
|
|
/** |
|
|
|
|
23
|
|
|
* @var string $locale The locale to translate to |
24
|
|
|
* @var array|array[] $translations Array with the identifiers as keys and the Texts object as value |
25
|
|
|
*/ |
26
|
|
|
protected $locale, $translations; |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* DatabaseHandler constructor. |
30
|
|
|
* |
31
|
|
|
* @param string $locale The locale of the translations |
32
|
|
|
*/ |
33
|
|
|
public function __construct($locale) |
34
|
|
|
{ |
35
|
|
|
$this->locale = $locale; |
36
|
|
|
|
37
|
|
|
$this->refreshCache(); |
38
|
|
|
} |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* Returns the currently set locale |
42
|
|
|
* |
43
|
|
|
* @return string Return the locale to translate to |
44
|
|
|
*/ |
45
|
|
|
public function getLocale() |
46
|
|
|
{ |
47
|
|
|
return $this->locale; |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* Returns the translation for the given identifier |
52
|
|
|
* |
53
|
|
|
* @param string $identifier Identifier of the translation |
|
|
|
|
54
|
|
|
* @param string $group Group for the database query |
|
|
|
|
55
|
|
|
* @throws NotFoundResourceException |
|
|
|
|
56
|
|
|
* @throws TranslationNotFoundException |
|
|
|
|
57
|
|
|
* @return string returns the found translation for identifier |
|
|
|
|
58
|
|
|
*/ |
59
|
|
|
public function getTranslation($identifier, $group) |
60
|
|
|
{ |
61
|
|
|
|
62
|
|
|
if (isset($this->translations[$identifier])) { |
63
|
|
|
if ($this->translations[$identifier]->translation == null) { |
64
|
|
|
throw new TranslationNotFoundException("The translation for identifier '".$identifier."' and locale '".$this->locale."' could not be found"); |
65
|
|
|
} |
66
|
|
|
return $this->translations[$identifier]->translation; |
67
|
|
|
} else { |
68
|
|
|
throw new NotFoundResourceException("The translation identifier '".$identifier."' could not be found"); |
69
|
|
|
} |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
/** |
73
|
|
|
* Refresh the internal Cache |
74
|
|
|
* |
75
|
|
|
* @return void |
76
|
|
|
*/ |
77
|
|
|
public function refreshCache() |
78
|
|
|
{ |
79
|
|
|
// Get all Texts with translations for the given locale |
80
|
|
|
$translations = new TranslationIdentifier(); |
81
|
|
|
$translations = $translations->leftJoin('translations', function ($join) |
|
|
|
|
82
|
|
|
{ |
|
|
|
|
83
|
|
|
$join->on( 'translation_identifiers.id', '=', 'translations.translation_identifier_id') |
|
|
|
|
84
|
|
|
->where('locale', $this->locale); |
|
|
|
|
85
|
|
|
} |
|
|
|
|
86
|
|
|
)->get(); |
|
|
|
|
87
|
|
|
|
88
|
|
|
foreach ($translations as $identifier) { |
89
|
|
|
$this->translations[$identifier->identifier] = $identifier; |
90
|
|
|
} |
91
|
|
|
} |
92
|
|
|
|
93
|
|
|
/** |
94
|
|
|
* Get all translation of $group |
95
|
|
|
* |
96
|
|
|
* @param string $group Group of the translations to return |
|
|
|
|
97
|
|
|
* @return array|mixed Translations of the given group |
|
|
|
|
98
|
|
|
*/ |
99
|
|
|
public function getAllTranslations($group = 'default') |
100
|
|
|
{ |
101
|
|
|
$return = []; |
102
|
|
|
foreach (collect($this->translations)->where('group', $group) as $key => $translation) { |
103
|
|
|
if ($translation->translation == null) { |
104
|
|
|
$return[$key] = $translation->identifier; |
105
|
|
|
} else { |
106
|
|
|
$return[$key] = $translation->translation; |
107
|
|
|
} |
108
|
|
|
} |
109
|
|
|
return $return; |
110
|
|
|
} |
111
|
|
|
|
112
|
|
|
/** |
|
|
|
|
113
|
|
|
* Get the DB ID of the Identifier |
114
|
|
|
* |
115
|
|
|
* @param $identifier |
|
|
|
|
116
|
|
|
* @throws NotFoundResourceException |
|
|
|
|
117
|
|
|
* @return integer |
|
|
|
|
118
|
|
|
*/ |
119
|
|
|
function getDatabaseID($identifier) |
|
|
|
|
120
|
|
|
{ |
121
|
|
|
if(isset($this->translations[$identifier])) { |
|
|
|
|
122
|
|
|
return $this->translations[$identifier]->id; |
123
|
|
|
} else { |
124
|
|
|
throw new NotFoundResourceException("The translation identifier '".$identifier."' could not be found"); |
125
|
|
|
} |
126
|
|
|
} |
127
|
|
|
} |