Complex classes like Language often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Language, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 33 | class Language implements JsonSerializable { |
||
| 34 | use Singleton; |
||
| 35 | /** |
||
| 36 | * Callable for time processing |
||
| 37 | * |
||
| 38 | * @var callable |
||
| 39 | */ |
||
| 40 | public $time; |
||
| 41 | /** |
||
| 42 | * @var string |
||
| 43 | */ |
||
| 44 | protected $current_language; |
||
| 45 | /** |
||
| 46 | * For single initialization |
||
| 47 | * |
||
| 48 | * @var bool |
||
| 49 | */ |
||
| 50 | protected $init = false; |
||
| 51 | /** |
||
| 52 | * Local cache of translations |
||
| 53 | * |
||
| 54 | * @var array |
||
| 55 | */ |
||
| 56 | protected $translation = []; |
||
| 57 | /** |
||
| 58 | * Cache to optimize frequent calls |
||
| 59 | * |
||
| 60 | * @var array |
||
| 61 | */ |
||
| 62 | protected $localized_url = []; |
||
| 63 | /** |
||
| 64 | * Set basic language |
||
| 65 | */ |
||
| 66 | protected function construct () { |
||
| 95 | /** |
||
| 96 | * Initialization: set default language based on system configuration and request-specific parameters |
||
| 97 | */ |
||
| 98 | protected function init () { |
||
| 99 | $Config = Config::instance(); |
||
| 100 | if ($Config->core['multilingual']) { |
||
| 101 | /** |
||
| 102 | * Highest priority - `-Locale` header |
||
| 103 | */ |
||
| 104 | /** @noinspection PhpParamsInspection */ |
||
| 105 | $language = $this->check_locale_header($Config->core['active_languages']); |
||
| 106 | /** |
||
| 107 | * Second priority - URL |
||
| 108 | */ |
||
| 109 | $language = $language ?: $this->url_language(Request::instance()->path); |
||
| 110 | /** |
||
| 111 | * Third - `Accept-Language` header |
||
| 112 | */ |
||
| 113 | /** @noinspection PhpParamsInspection */ |
||
| 114 | $language = $language ?: $this->check_accept_header($Config->core['active_languages']); |
||
| 115 | } else { |
||
| 116 | $language = $Config->core['language']; |
||
| 117 | } |
||
| 118 | $this->current_language = $language ?: ''; |
||
| 119 | } |
||
| 120 | /** |
||
| 121 | * Returns instance for simplified work with translations, when using common prefix |
||
| 122 | * |
||
| 123 | * @param string $prefix |
||
| 124 | * |
||
| 125 | * @return Prefix |
||
| 126 | */ |
||
| 127 | static function prefix ($prefix) { |
||
| 130 | /** |
||
| 131 | * Does URL have language prefix |
||
| 132 | * |
||
| 133 | * @param false|string $url Relative url, `Request::instance()->path` by default |
||
| 134 | * |
||
| 135 | * @return false|string If there is language prefix - language will be returned, `false` otherwise |
||
| 136 | */ |
||
| 137 | 32 | function url_language ($url = false) { |
|
| 156 | /** |
||
| 157 | * Checking Accept-Language header for languages that exists in configuration |
||
| 158 | * |
||
| 159 | * @param array $active_languages |
||
| 160 | * |
||
| 161 | * @return false|string |
||
| 162 | */ |
||
| 163 | protected function check_accept_header ($active_languages) { |
||
| 181 | /** |
||
| 182 | * Check `*-Locale` header (for instance, `X-Facebook-Locale`) that exists in configuration |
||
| 183 | * |
||
| 184 | * @param string[] $active_languages |
||
| 185 | * |
||
| 186 | * @return false|string |
||
| 187 | */ |
||
| 188 | protected function check_locale_header ($active_languages) { |
||
| 204 | /** |
||
| 205 | * Get languages aliases |
||
| 206 | * |
||
| 207 | * @return array|false |
||
| 208 | */ |
||
| 209 | protected function get_aliases () { |
||
| 222 | /** |
||
| 223 | * Get translation |
||
| 224 | * |
||
| 225 | * @param bool|string $item |
||
| 226 | * @param false|string $language If specified - translation for specified language will be returned, otherwise for current |
||
| 227 | * @param string $prefix Used by `\cs\Language\Prefix`, usually no need to use it directly |
||
| 228 | * |
||
| 229 | * @return string |
||
| 230 | */ |
||
| 231 | function get ($item, $language = false, $prefix = '') { |
||
| 248 | /** |
||
| 249 | * Set translation |
||
| 250 | * |
||
| 251 | * @param array|string $item Item string, or key-value array |
||
| 252 | * @param null|string $value |
||
| 253 | * |
||
| 254 | * @return void |
||
| 255 | */ |
||
| 256 | function set ($item, $value = null) { |
||
| 264 | /** |
||
| 265 | * Get translation |
||
| 266 | * |
||
| 267 | * @param string $item |
||
| 268 | * |
||
| 269 | * @return string |
||
| 270 | */ |
||
| 271 | function __get ($item) { |
||
| 274 | /** |
||
| 275 | * Set translation |
||
| 276 | * |
||
| 277 | * @param array|string $item |
||
| 278 | * @param null|string $value |
||
| 279 | * |
||
| 280 | * @return string |
||
| 281 | */ |
||
| 282 | function __set ($item, $value = null) { |
||
| 285 | /** |
||
| 286 | * Change language |
||
| 287 | * |
||
| 288 | * @param string $language |
||
| 289 | * |
||
| 290 | * @return bool |
||
| 291 | */ |
||
| 292 | function change ($language) { |
||
| 332 | /** |
||
| 333 | * Check whether it is allowed to change to specified language according to configuration |
||
| 334 | * |
||
| 335 | * @param Config $Config |
||
| 336 | * @param string $language |
||
| 337 | * |
||
| 338 | * @return bool |
||
| 339 | */ |
||
| 340 | protected function can_be_changed_to ($Config, $language) { |
||
| 352 | /** |
||
| 353 | * Load translation from all over the system, set `$this->translation[$language]` and return it |
||
| 354 | * |
||
| 355 | * @param $language |
||
| 356 | * |
||
| 357 | * @return string[] |
||
| 358 | */ |
||
| 359 | protected function get_translation ($language) { |
||
| 390 | /** |
||
| 391 | * @param string $filename |
||
| 392 | * |
||
| 393 | * @return string[] |
||
| 394 | */ |
||
| 395 | protected function get_translation_from_json ($filename) { |
||
| 399 | /** |
||
| 400 | * @param string[]|string[][] $translation |
||
| 401 | * |
||
| 402 | * @return string[] |
||
| 403 | */ |
||
| 404 | protected function get_translation_from_json_internal ($translation) { |
||
| 417 | /** |
||
| 418 | * Some required keys might be missing in translation, this functions tries to guess and fill them automatically |
||
| 419 | * |
||
| 420 | * @param string[] $translation |
||
| 421 | * @param string $language |
||
| 422 | * |
||
| 423 | * @return string[] |
||
| 424 | */ |
||
| 425 | protected function fill_required_translation_keys ($translation, $language) { |
||
| 437 | /** |
||
| 438 | * Time formatting according to the current language (adding correct endings) |
||
| 439 | * |
||
| 440 | * @param int $in time (number) |
||
| 441 | * @param string $type Type of formatting<br> |
||
| 442 | * s - seconds<br>m - minutes<br>h - hours<br>d - days<br>M - months<br>y - years |
||
| 443 | * |
||
| 444 | * @return string |
||
| 445 | */ |
||
| 446 | function time ($in, $type) { |
||
| 468 | /** |
||
| 469 | * Allows to use formatted strings in translations |
||
| 470 | * |
||
| 471 | * @see format() |
||
| 472 | * |
||
| 473 | * @param string $item |
||
| 474 | * @param array $arguments |
||
| 475 | * |
||
| 476 | * @return string |
||
| 477 | */ |
||
| 478 | function __call ($item, $arguments) { |
||
| 481 | /** |
||
| 482 | * Allows to use formatted strings in translations |
||
| 483 | * |
||
| 484 | * @param string $item |
||
| 485 | * @param string[] $arguments |
||
| 486 | * @param false|string $language If specified - translation for specified language will be returned, otherwise for current |
||
| 487 | * @param string $prefix Used by `\cs\Language\Prefix`, usually no need to use it directly |
||
| 488 | * |
||
| 489 | * @return string |
||
| 490 | */ |
||
| 491 | function format ($item, $arguments, $language = false, $prefix = '') { |
||
| 494 | /** |
||
| 495 | * Formatting date according to language locale (translating months names, days of week, etc.) |
||
| 496 | * |
||
| 497 | * @param string|string[] $data |
||
| 498 | * @param bool $short_may When in date() or similar functions "M" format option is used, third month "May" have the same short textual |
||
| 499 | * representation as full, so, this option allows to specify, which exactly form of representation do you want |
||
| 500 | * |
||
| 501 | * @return string|string[] |
||
| 502 | */ |
||
| 503 | function to_locale ($data, $short_may = false) { |
||
| 558 | /** |
||
| 559 | * Implementation of JsonSerializable interface |
||
| 560 | * |
||
| 561 | * @return string[] |
||
| 562 | */ |
||
| 563 | function jsonSerialize () { |
||
| 566 | } |
||
| 567 |