1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Spatie\Translatable; |
4
|
|
|
|
5
|
|
|
use Illuminate\Support\Str; |
6
|
|
|
use Spatie\Translatable\Events\TranslationHasBeenSet; |
7
|
|
|
use Spatie\Translatable\Exceptions\AttributeIsNotTranslatable; |
8
|
|
|
|
9
|
|
|
trait HasTranslations |
10
|
|
|
{ |
11
|
|
|
/** |
12
|
|
|
* @param string $key |
13
|
|
|
* |
14
|
|
|
* @return mixed |
15
|
|
|
*/ |
16
|
|
|
public function getAttributeValue($key) |
17
|
|
|
{ |
18
|
|
|
if (!$this->isTranslatableAttribute($key)) { |
19
|
|
|
return parent::getAttributeValue($key); |
20
|
|
|
} |
21
|
|
|
|
22
|
|
|
return $this->getTranslation($key, config('app.locale')); |
23
|
|
|
} |
24
|
|
|
|
25
|
|
|
/** |
26
|
|
|
* Set a given attribute on the model. |
27
|
|
|
* |
28
|
|
|
* @param string $key |
29
|
|
|
* @param mixed $value |
30
|
|
|
* |
31
|
|
|
* @return $this |
32
|
|
|
*/ |
33
|
|
|
public function setAttribute($key, $value) |
34
|
|
|
{ |
35
|
|
|
// pass arrays and untranslatable attributes to the parent method |
36
|
|
|
if (!$this->isTranslatableAttribute($key) || is_array($value)) { |
37
|
|
|
return parent::setAttribute($key, $value); |
38
|
|
|
} |
39
|
|
|
// if the attribute is translatable and not already translated (=array), |
40
|
|
|
// set a translation for the current app locale |
41
|
|
|
return $this->setTranslation($key, config('app.locale'), $value); |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* @param string $key |
46
|
|
|
* @param string $locale |
47
|
|
|
* |
48
|
|
|
* @return mixed |
49
|
|
|
*/ |
50
|
|
|
public function translate(string $key, string $locale = '') |
51
|
|
|
{ |
52
|
|
|
return $this->getTranslation($key, $locale); |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
/*** |
56
|
|
|
* @param string $key |
57
|
|
|
* @param string $locale |
58
|
|
|
* @param bool $useFallbackLocale |
59
|
|
|
* |
60
|
|
|
* @return mixed |
61
|
|
|
*/ |
62
|
|
|
public function getTranslation(string $key, string $locale, bool $useFallbackLocale = true) |
63
|
|
|
{ |
64
|
|
|
$locale = $this->normalizeLocale($key, $locale, $useFallbackLocale); |
65
|
|
|
|
66
|
|
|
$translations = $this->getTranslations($key); |
67
|
|
|
|
68
|
|
|
$translation = $translations[$locale] ?? ''; |
69
|
|
|
|
70
|
|
|
if ($this->hasGetMutator($key)) { |
|
|
|
|
71
|
|
|
return $this->mutateAttribute($key, $translation); |
|
|
|
|
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
return $translation; |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
public function getTranslationWithFallback(string $key, string $locale) |
78
|
|
|
{ |
79
|
|
|
return $this->getTranslation($key, $locale, true); |
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
public function getTranslationWithoutFallback(string $key, string $locale) |
83
|
|
|
{ |
84
|
|
|
return $this->getTranslation($key, $locale, false); |
85
|
|
|
} |
86
|
|
|
|
87
|
|
|
public function getTranslations($key) : array |
88
|
|
|
{ |
89
|
|
|
$this->guardAgainstUntranslatableAttribute($key); |
90
|
|
|
|
91
|
|
|
return json_decode($this->getAttributes()[$key] ?? '' ?: '{}', true); |
|
|
|
|
92
|
|
|
} |
93
|
|
|
|
94
|
|
|
/** |
95
|
|
|
* @param string $key |
96
|
|
|
* @param string $locale |
97
|
|
|
* @param $value |
98
|
|
|
* |
99
|
|
|
* @return $this |
100
|
|
|
*/ |
101
|
|
|
public function setTranslation(string $key, string $locale, $value) |
102
|
|
|
{ |
103
|
|
|
$this->guardAgainstUntranslatableAttribute($key); |
104
|
|
|
|
105
|
|
|
$translations = $this->getTranslations($key); |
106
|
|
|
|
107
|
|
|
$oldValue = $translations[$locale] ?? ''; |
108
|
|
|
|
109
|
|
|
if ($this->hasSetMutator($key)) { |
|
|
|
|
110
|
|
|
$method = 'set'.Str::studly($key).'Attribute'; |
111
|
|
|
$value = $this->{$method}($value); |
112
|
|
|
} |
113
|
|
|
|
114
|
|
|
$translations[$locale] = $value; |
115
|
|
|
|
116
|
|
|
$this->attributes[$key] = $this->asJson($translations); |
|
|
|
|
117
|
|
|
|
118
|
|
|
event(new TranslationHasBeenSet($this, $key, $locale, $oldValue, $value)); |
119
|
|
|
|
120
|
|
|
return $this; |
121
|
|
|
} |
122
|
|
|
|
123
|
|
|
/** |
124
|
|
|
* Casts the passed value to json |
125
|
|
|
* preserving the unicode chars |
126
|
|
|
* |
127
|
|
|
* @param array $value |
128
|
|
|
* |
129
|
|
|
* @return string |
130
|
|
|
*/ |
131
|
|
|
protected function asJson($value) |
132
|
|
|
{ |
133
|
|
|
return json_encode($value, JSON_UNESCAPED_UNICODE); |
134
|
|
|
} |
135
|
|
|
|
136
|
|
|
/** |
137
|
|
|
* @param string $key |
138
|
|
|
* @param array $translations |
139
|
|
|
* |
140
|
|
|
* @return $this |
141
|
|
|
*/ |
142
|
|
|
public function setTranslations(string $key, array $translations) |
143
|
|
|
{ |
144
|
|
|
$this->guardAgainstUntranslatableAttribute($key); |
145
|
|
|
|
146
|
|
|
foreach ($translations as $locale => $translation) { |
147
|
|
|
$this->setTranslation($key, $locale, $translation); |
148
|
|
|
} |
149
|
|
|
|
150
|
|
|
return $this; |
151
|
|
|
} |
152
|
|
|
|
153
|
|
|
/** |
154
|
|
|
* @param string $key |
155
|
|
|
* @param string $locale |
156
|
|
|
* |
157
|
|
|
* @return $this |
158
|
|
|
*/ |
159
|
|
|
public function forgetTranslation(string $key, string $locale) |
160
|
|
|
{ |
161
|
|
|
$translations = $this->getTranslations($key); |
162
|
|
|
|
163
|
|
|
unset($translations[$locale]); |
164
|
|
|
|
165
|
|
|
$this->setAttribute($key, $translations); |
166
|
|
|
|
167
|
|
|
return $this; |
168
|
|
|
} |
169
|
|
|
|
170
|
|
|
public function forgetAllTranslations(string $locale) |
171
|
|
|
{ |
172
|
|
|
collect($this->getTranslatableAttributes())->each(function (string $attribute) use ($locale) { |
173
|
|
|
$this->forgetTranslation($attribute, $locale); |
174
|
|
|
}); |
175
|
|
|
} |
176
|
|
|
|
177
|
|
|
public function getTranslatedLocales(string $key) : array |
178
|
|
|
{ |
179
|
|
|
return array_keys($this->getTranslations($key)); |
180
|
|
|
} |
181
|
|
|
|
182
|
|
|
public function isTranslatableAttribute(string $key) : bool |
183
|
|
|
{ |
184
|
|
|
return in_array($key, $this->getTranslatableAttributes()); |
185
|
|
|
} |
186
|
|
|
|
187
|
|
|
protected function guardAgainstUntranslatableAttribute(string $key) |
188
|
|
|
{ |
189
|
|
|
if (!$this->isTranslatableAttribute($key)) { |
190
|
|
|
throw AttributeIsNotTranslatable::make($key, $this); |
191
|
|
|
} |
192
|
|
|
} |
193
|
|
|
|
194
|
|
|
protected function normalizeLocale(string $key, string $locale, bool $useFallbackLocale) : string |
195
|
|
|
{ |
196
|
|
|
if (in_array($locale, $this->getTranslatedLocales($key))) { |
197
|
|
|
return $locale; |
198
|
|
|
} |
199
|
|
|
|
200
|
|
|
if (!$useFallbackLocale) { |
201
|
|
|
return $locale; |
202
|
|
|
} |
203
|
|
|
|
204
|
|
|
if (!is_null($fallbackLocale = config('translatable.fallback_locale'))) { |
205
|
|
|
return $fallbackLocale; |
206
|
|
|
} |
207
|
|
|
|
208
|
|
|
return $locale; |
209
|
|
|
} |
210
|
|
|
|
211
|
|
|
public function getTranslatableAttributes() : array |
212
|
|
|
{ |
213
|
|
|
return is_array($this->translatable) |
|
|
|
|
214
|
|
|
? $this->translatable |
215
|
|
|
: []; |
216
|
|
|
} |
217
|
|
|
|
218
|
|
|
public function getCasts() : array |
219
|
|
|
{ |
220
|
|
|
return array_merge( |
221
|
|
|
parent::getCasts(), |
222
|
|
|
array_fill_keys($this->getTranslatableAttributes(), 'array') |
223
|
|
|
); |
224
|
|
|
} |
225
|
|
|
} |
226
|
|
|
|
This check looks for methods that are used by a trait but not required by it.
To illustrate, let’s look at the following code example
The trait
Idable
provides a methodequalsId
that in turn relies on the methodgetId()
. If this method does not exist on a class mixing in this trait, the method will fail.Adding the
getId()
as an abstract method to the trait will make sure it is available.