-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComponent.php
308 lines (284 loc) · 10.8 KB
/
Component.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
<?php
namespace lmsmartins\languagepicker;
use Yii;
/**
* Component.
*
* Examples:
*
* Minimal code:
*
* ~~~
* 'language' => 'en',
* 'bootstrap' => ['languagepicker'],
* 'components' => [
* 'languagepicker' => [
* 'class' => 'pickuz\languagepicker\Component',
* 'languages' => ['en', 'de', 'fr'] // List of available languages
* ]
* ],
* ~~~
*
* Complete example:
*
* ~~~
* 'language' => 'en-US',
* 'bootstrap' => ['languagepicker'],
* 'components' => [
* 'languagepicker' => [
* 'class' => 'pickuz\languagepicker\Component',
* 'languages' => ['en-US', 'de-DE', 'fr-FR'], // List of available languages
* 'cookieName' => 'language', // Name of the cookie.
* 'cookieDomain' => 'example.com', // Domain of the cookie.
* 'expireDays' => 64, // The expiration time of the cookie is 64 days.
* 'callback' => function() {
* if (!\Yii::$app->user->isGuest) {
* $user = User::findOne(\Yii::$app->user->id);
* $user->language = \Yii::$app->language;
* $user->save();
* }
* }
* ]
* ]
*/
class Component extends \yii\base\Component
{
/**
* @var function - function to execute after changing the language of the site.
*/
public $callback;
/**
* @var integer expiration date of the cookie storing the language of the site.
*/
public $expireDays = 40;
public $languageCookieName = 'language';
public $currencyCookieName = 'currency';
/**
* @var string The domain that the language cookie is available to.
* For details see the $domain parameter description of PHP setcookie() function.
*/
public $cookieDomain = '';
/**
* @var array List of available languages
* Formats supported in the pre-defined skins:
*
* ~~~
* ['en', 'de', 'es']
* ['en' => 'English', 'de' => 'Deutsch', 'fr' => 'Français']
* ['en-US', 'de-DE', 'fr-FR']
* ['en-US' => 'English', 'de-DE' => 'Deutsch', 'fr-FR' => 'Français']
* ~~~
*
*/
public $languages;
public $languagesTextOnly;
public $currencies;
public $languagesCurrenciesAssignment;
public $defaultCurrency;
public function __construct($config = array())
{
if (empty($config['languages'])) {
throw new \yii\base\InvalidConfigException('Missing languages');
} else if (is_callable($config['languages'])) {
$config['languages'] = call_user_func($config['languages']);
}
if (empty($config['currencies'])) {
throw new \yii\base\InvalidConfigException('Missing currencies');
} else if (is_callable($config['currencies'])) {
$config['currencies'] = call_user_func($config['currencies']);
}
if (empty($config['languagesCurrenciesAssignment'])) {
throw new \yii\base\InvalidConfigException('Missing languagesCurrenciesAssignment');
} else if (is_callable($config['languagesCurrenciesAssignment'])) {
$config['languagesCurrenciesAssignment'] = call_user_func($config['languagesCurrenciesAssignment']);
}
if (empty($config['defaultCurrency'])) {
throw new \yii\base\InvalidConfigException('Missing default currency');
} else if (is_callable($config['defaultCurrency'])) {
$config['defaultCurrency'] = call_user_func($config['defaultCurrency']);
}
parent::__construct($config);
}
public function init()
{
if (Yii::$app->request->cookies->getValue($this->currencyCookieName) == "usd" || Yii::$app->request->cookies->getValue($this->currencyCookieName) == "euro" || Yii::$app->request->cookies->getValue($this->currencyCookieName) == "cad" || Yii::$app->request->cookies->getValue($this->currencyCookieName) == "pound") {
Yii::$app->session->set('user.currency', "USD");
$this->saveCurrencyIntoCookie('USD');
}
$this->initLanguage();
$this->initCurrency();
parent::init();
}
/**
* Setting the language of the site.
*/
public function initLanguage()
{
if (isset($_GET['language-picker-hidden'])) {
if ($this->isValidLanguage($_GET['language-picker-hidden'])) {
return $this->saveLanguage($_GET['language-picker-hidden']);
} else if (!Yii::$app->request->isAjax) {
return $this->redirect();
}
} else if (Yii::$app->request->cookies->has($this->languageCookieName)) {
if ($this->isValidLanguage(Yii::$app->request->cookies->getValue($this->languageCookieName))) {
Yii::$app->language = Yii::$app->request->cookies->getValue($this->languageCookieName);
return;
} else {
Yii::$app->response->cookies->remove($this->languageCookieName);
}
}
$this->detectLanguage();
}
public function initCurrency()
{
//Fix for the currencies key values (reset the cookie and session value).
if (isset($_GET['currency-picker-hidden'])) {
if ($this->isValidCurrency($_GET['currency-picker-hidden'])) {
return $this->saveCurrency($_GET['currency-picker-hidden']);
} else if (!Yii::$app->request->isAjax) {
return $this->redirect();
}
} else if (Yii::$app->request->cookies->has($this->currencyCookieName)) {
if ($this->isValidCurrency(Yii::$app->request->cookies->getValue($this->currencyCookieName))) {
Yii::$app->session->set('user.currency', Yii::$app->request->cookies->getValue($this->currencyCookieName));
return;
} else {
Yii::$app->response->cookies->remove($this->currencyCookieName);
}
}
$this->detectCurrency();
}
/**
* Saving language into cookie and database.
* @param string $language - The language to save.
* @return static
*/
public function saveLanguage($language)
{
Yii::$app->language = $language;
$this->saveLanguageIntoCookie($language);
if (is_callable($this->callback)) {
call_user_func($this->callback);
}
if (Yii::$app->request->isAjax) {
Yii::$app->end();
}
return $this->redirect();
}
/**
* Determine language based on UserAgent.
*/
public function detectLanguage()
{
$acceptableLanguages = Yii::$app->getRequest()->getAcceptableLanguages();
foreach ($acceptableLanguages as $language) {
if ($this->isValidLanguage($language)) {
Yii::$app->language = $language;
$this->saveLanguageIntoCookie($language);
return;
}
}
foreach ($acceptableLanguages as $language) {
$pattern = preg_quote(substr($language, 0, 2), '/');
foreach ($this->languages as $key => $value) {
if (preg_match('/^' . $pattern . '/', $value) || preg_match('/^' . $pattern . '/', $key)) {
Yii::$app->language = $this->isValidLanguage($key) ? $key : $value;
$this->saveLanguageIntoCookie(Yii::$app->language);
return;
}
}
}
}
public function saveLanguageIntoCookie($language)
{
$cookie = new \yii\web\Cookie([
'name' => $this->languageCookieName,
'domain' => $this->cookieDomain,
'value' => $language,
'expire' => time() + 86400 * $this->expireDays
]);
Yii::$app->response->cookies->add($cookie);
}
/**
* Saving currency into cookie and database.
* @param string $currency - The currency to save.
* @return static
*/
public function saveCurrency($currency)
{
Yii::$app->session->set('user.currency', $currency);
$this->saveCurrencyIntoCookie($currency);
if (is_callable($this->callback)) {
call_user_func($this->callback);
}
if (Yii::$app->request->isAjax) {
Yii::$app->end();
}
return $this->redirect();
}
/**
* Determine currency based on UserAgent.
*/
public function detectCurrency()
{
$acceptableLanguages = Yii::$app->getRequest()->getAcceptableLanguages();
foreach ($acceptableLanguages as $language) {
if ($this->isValidLanguage($language)) {
$currency = $this->getCurrencyByLanguage($language);
Yii::$app->session->set('user.currency', $currency);
$this->saveCurrencyIntoCookie($currency);
return;
}
}
foreach ($acceptableLanguages as $language) {
$pattern = preg_quote(substr($language, 0, 2), '/');
foreach ($this->languages as $key => $value) {
if (preg_match('/^' . $pattern . '/', $value) || preg_match('/^' . $pattern . '/', $key)) {
$currency = $this->getCurrencyByLanguage($this->isValidLanguage($key) ? $key : $value);
Yii::$app->session->set('user.currency', $currency);
$this->saveCurrencyIntoCookie($currency);
return;
}
}
}
}
public function getCurrencyByLanguage($language)
{
$currency = $this->languagesCurrenciesAssignment[$language]['key'];
return isset($currency) ? $currency : $this->defaultCurrency;
}
public function saveCurrencyIntoCookie($currency)
{
$cookie = new \yii\web\Cookie([
'name' => $this->currencyCookieName,
'domain' => $this->cookieDomain,
'value' => $currency,
'expire' => time() + 86400 * $this->expireDays
]);
Yii::$app->response->cookies->add($cookie);
}
/**
* Redirects the browser to the referer URL.
* @return static
*/
private function redirect()
{
$redirect = Yii::$app->request->absoluteUrl == Yii::$app->request->referrer ? '/' : Yii::$app->request->referrer;
return Yii::$app->response->redirect($redirect);
}
/**
* Determines whether the language received as a parameter can be processed.
*/
private function isValidLanguage($language)
{
return is_string($language) && (isset($this->languages[$language]) || in_array($language, $this->languages));
}
/**
* Determines whether the currency received as a parameter can be processed.
*/
private function isValidCurrency($currency)
{
return is_string($currency) && (isset($this->currencies[$currency]) || in_array($currency, $this->currencies));
}
}