| Total Complexity | 47 |
| Total Lines | 366 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like Translator 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.
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 Translator, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 26 | class Translator |
||
| 27 | { |
||
| 28 | /** @var array|HandlerInterface[] $aHandler Class to Handle the Translation defined in config */ |
||
| 29 | protected $aHandler = []; |
||
| 30 | /** @var string $locale The locale to translate to */ |
||
| 31 | protected $locale = ''; |
||
| 32 | /** @var string $group The translation group */ |
||
| 33 | protected $group = 'default'; |
||
| 34 | /** @var string $configName The name of the config file */ |
||
| 35 | protected $configName = 'translator'; |
||
| 36 | /** @var array $config Config cache */ |
||
| 37 | protected $config; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Translator constructor. |
||
| 41 | * |
||
| 42 | * @param string $locale The locale to translate to |
||
| 43 | * @throws \Exception |
||
| 44 | */ |
||
| 45 | public function __construct($locale = '') |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Return the config value for given key |
||
| 54 | * |
||
| 55 | * @param string $key Key for the config value to get |
||
| 56 | * @return string|array Config value for $key |
||
| 57 | */ |
||
| 58 | public function getConfigValue($key) |
||
| 59 | { |
||
| 60 | return $this->config[$key]; |
||
| 61 | } |
||
| 62 | |||
| 63 | /** |
||
| 64 | * Actual translate function |
||
| 65 | * $parameter and $locale are optional |
||
| 66 | * |
||
| 67 | * @param string $identifier The identifier of the translation |
||
| 68 | * @param array|null $parameters The parameters to inject into the translation |
||
| 69 | * @param string $locale The locale to which to translate to overrides the class location for one translation |
||
| 70 | * @throws \Exception |
||
| 71 | * @return string Returns the translation with replaced parameters |
||
| 72 | * |
||
| 73 | * @todo Make function Parameters interchangeable |
||
| 74 | */ |
||
| 75 | public function translate($identifier, $parameters = null, $locale = null) |
||
| 76 | { |
||
| 77 | // Validate the locale given as parameter or take the saved locale |
||
| 78 | if ($locale !== null) { |
||
| 79 | $locale = $this->validateLocale($locale); |
||
| 80 | } else { |
||
| 81 | $locale = $this->locale; |
||
| 82 | } |
||
| 83 | |||
| 84 | //Create a Handler if no one exists for the current locale |
||
| 85 | if (!isset($this->aHandler[$locale])) { |
||
| 86 | $this->aHandler[$locale] = $this->createHandler($locale); |
||
| 87 | } |
||
| 88 | |||
| 89 | // Try getting the resulting Translation |
||
| 90 | // Based on the internal translate function, the getTranslation can throw exceptions |
||
| 91 | try { |
||
| 92 | $translation = $this->aHandler[$locale]->getTranslation($identifier, $this->group); |
||
| 93 | |||
| 94 | } catch (NotFoundResourceException $exception) { |
||
| 95 | // Thrown when the Identifier wasn't found |
||
| 96 | // Log exception as error in Laravel log |
||
| 97 | $this->log($exception, 'error'); |
||
| 98 | |||
| 99 | // Listener: When app is not in production and listening is enabled |
||
| 100 | // add any missing translation identifier to the database |
||
| 101 | if ($this->config['listening_enabled'] === true) { |
||
| 102 | $this->addMissingIdentifier($identifier, $parameters, 'default'); |
||
| 103 | } |
||
| 104 | |||
| 105 | return $this->returnMissingTranslation($identifier, $locale); |
||
| 106 | |||
| 107 | } catch (TranslationNotFoundException $exception) { |
||
| 108 | // Thrown when no translation for the locale was found |
||
| 109 | // Log exception as error in Laravel log |
||
| 110 | $this->log($exception, 'error'); |
||
| 111 | |||
| 112 | return $this->returnMissingTranslation($identifier, $locale); |
||
| 113 | } |
||
| 114 | |||
| 115 | // If there are no parameters, skip replacement |
||
| 116 | if (is_array($parameters)) { |
||
| 117 | $translation = $this->replaceParameter($translation, $parameters); |
||
| 118 | } |
||
| 119 | |||
| 120 | if (session('translation_live_mode')) { |
||
| 121 | $id = $this->aHandler[$locale]->getDatabaseID($identifier); |
||
| 122 | $translation = $this->addLiveModeLink($translation, $id); |
||
| 123 | } |
||
| 124 | |||
| 125 | // Return the translation |
||
| 126 | return $translation; |
||
| 127 | } |
||
| 128 | |||
| 129 | /** |
||
| 130 | * Inject a Link to the edit page into the translation |
||
| 131 | * |
||
| 132 | * @param string $translation |
||
| 133 | * @param integer $id |
||
| 134 | * @return string |
||
| 135 | */ |
||
| 136 | public function addLiveModeLink($translation, $id) { |
||
| 137 | |||
| 138 | $route = route('translator.admin.edit', ['id' => $id]); |
||
| 139 | |||
| 140 | $inject = "<translation-anchor onclick='window.open(\"$route\", \"_blank\")' style='position: absolute; z-index: 999; cursor: pointer;'>⚓</translation-anchor>"; |
||
| 141 | |||
| 142 | $translation = "$translation $inject"; |
||
| 143 | |||
| 144 | return $translation; |
||
| 145 | } |
||
| 146 | |||
| 147 | /** |
||
| 148 | * Sets the Handler |
||
| 149 | * |
||
| 150 | * @param $locale |
||
| 151 | * @return HandlerInterface |
||
| 152 | */ |
||
| 153 | protected function createHandler($locale) |
||
| 154 | { |
||
| 155 | // Get the Handler class from config file |
||
| 156 | $handler_class = $this->config['handler']; |
||
| 157 | |||
| 158 | // Override Handler Class with Database Handler when in live mode |
||
| 159 | if (session('translation_live_mode')) { |
||
| 160 | $handler_class = DatabaseHandler::class; |
||
| 161 | } |
||
| 162 | |||
| 163 | $oHandler = null; |
||
| 164 | |||
| 165 | // Try to create new Instance of Handler and return it |
||
| 166 | // If creating the Handler fails or it does not implement HandlerInterface the DatabaseHandler will be used |
||
| 167 | try { |
||
| 168 | $oHandler = new $handler_class($locale); |
||
| 169 | if (!is_a($handler_class, 'Hokan22\LaravelTranslator\Handler\HandlerInterface', true)) { |
||
| 170 | throw new \Exception($handler_class . ' does not implement HandlerInterface!'); |
||
| 171 | } |
||
| 172 | } catch (\Exception $exception) { |
||
| 173 | // Log error and fallback procedure |
||
| 174 | $this->log($exception, 'error'); |
||
| 175 | $this->log('Falling back to DatabaseHandler', 'warning'); |
||
| 176 | |||
| 177 | // Fallback to Database Handler |
||
| 178 | $oHandler = new DatabaseHandler($locale); |
||
| 179 | } |
||
| 180 | return $oHandler; |
||
| 181 | } |
||
| 182 | |||
| 183 | /** |
||
| 184 | * Set the locale to use in translations |
||
| 185 | * |
||
| 186 | * @param string $locale The locale to use |
||
| 187 | */ |
||
| 188 | public function setLocale($locale) |
||
| 189 | { |
||
| 190 | $locale = $this->validateLocale($locale); |
||
| 191 | |||
| 192 | if (!isset($this->aHandler[$locale])) { |
||
| 193 | $this->aHandler[$locale] = $this->createHandler($locale); |
||
| 194 | } |
||
| 195 | |||
| 196 | $this->locale = $locale; |
||
| 197 | } |
||
| 198 | |||
| 199 | /** |
||
| 200 | * Add the missing identifier to the texts table in the database |
||
| 201 | * |
||
| 202 | * @param string $identifier The identifier to add to the db |
||
| 203 | * @param array $parameters The parameters available for the translation |
||
| 204 | * @param string $group The group to put the identifier in |
||
| 205 | */ |
||
| 206 | public function addMissingIdentifier($identifier, $parameters, $group) |
||
| 207 | { |
||
| 208 | if (!$this->hasIdentifier($identifier)) { |
||
| 209 | |||
| 210 | // Save only the keys from the parameter array |
||
| 211 | $keys = []; |
||
| 212 | if (is_array($parameters)) { |
||
| 213 | foreach($parameters as $key => $value) { |
||
| 214 | $keys[] = $key; |
||
| 215 | } |
||
| 216 | } |
||
| 217 | // Create new TranslationIdentifier with parameters and current url |
||
| 218 | TranslationIdentifier::create( |
||
| 219 | [ |
||
| 220 | "identifier" => $identifier, |
||
| 221 | "parameters" => $keys, |
||
| 222 | "group" => isset($group) ? $group : 'default', |
||
| 223 | "page_name" => app()->runningInConsole() ? '' : substr(request()->getRequestUri(), 1), |
||
| 224 | ] |
||
| 225 | ); |
||
| 226 | |||
| 227 | if (isset($this->aHandler[$this->locale])) { |
||
| 228 | // refresh the Cache for the handler |
||
| 229 | // When using file Cache, adding the Identifier to the Database will not add it to file Cache! |
||
| 230 | $this->aHandler[$this->locale]->refreshCache(); |
||
| 231 | } |
||
| 232 | // Print notice about creation to laravel log |
||
| 233 | $this->log('The translation string "'.$identifier.'" will be written to the Database', 'notice'); |
||
| 234 | } else { |
||
| 235 | $this->log('The translation string "'.$identifier.'" is already in the Database!', 'warning'); |
||
| 236 | } |
||
| 237 | } |
||
| 238 | |||
| 239 | /** |
||
| 240 | * Check if the identifier exists in the database |
||
| 241 | * |
||
| 242 | * @param string $identifier The identifier to check |
||
| 243 | * @return boolean Returns true if the identifier was found |
||
| 244 | */ |
||
| 245 | public function hasIdentifier($identifier) |
||
| 246 | { |
||
| 247 | // Returns true if at least one identifier was found |
||
| 248 | return TranslationIdentifier::where('identifier', $identifier)->count() > 0; |
||
| 249 | } |
||
| 250 | |||
| 251 | /** |
||
| 252 | * Replace the parameters in the translation |
||
| 253 | * |
||
| 254 | * @param string $translation The translation with the parameter tags |
||
| 255 | * @param array $parameters The parameters which to inject in the translation |
||
| 256 | * @return string Returns the translation which its parameters replaced |
||
| 257 | * |
||
| 258 | * @todo Make Prefix and Suffix configurable |
||
| 259 | */ |
||
| 260 | protected function replaceParameter($translation, $parameters) |
||
| 268 | } |
||
| 269 | |||
| 270 | /** |
||
| 271 | * Return the translation identifier and the locale |
||
| 272 | * |
||
| 273 | * @param string $identifier The identifier which is missing |
||
| 274 | * @param string $locale The locale of which the translation is missing |
||
| 275 | * @throws \Exception |
||
| 276 | * @return string The string to display instead of the translation |
||
| 277 | */ |
||
| 278 | protected function returnMissingTranslation($identifier, $locale) |
||
| 285 | } |
||
| 286 | |||
| 287 | /** |
||
| 288 | * Checks the given locale and returns a valid local |
||
| 289 | * If no locale was given, first try the locale from the session |
||
| 290 | * If the Session has no |
||
| 291 | * |
||
| 292 | * @param string $locale The locale to validate |
||
| 293 | * @throws NotFoundResourceException |
||
| 294 | * @return string Returns the validated Locale |
||
| 295 | */ |
||
| 296 | public function validateLocale($locale) |
||
| 297 | { |
||
| 298 | // Set message for later log warning |
||
| 299 | $message = ''; |
||
| 300 | |||
| 301 | //Get Locales configs from translator config file |
||
| 302 | $avail_locales = $this->config['available_locales']; |
||
| 303 | $default_locale = $this->config['default_locale']; |
||
| 304 | |||
| 305 | // If locale is already set and not empty it has already been checked |
||
| 306 | if ($this->locale == $locale && $this->locale !== '') { |
||
| 307 | return $locale; |
||
| 308 | } |
||
| 309 | |||
| 310 | // Fallback if empty locale was given (should be handled in middleware) |
||
| 311 | if ($locale == null){ |
||
| 312 | if (session()->get('locale') != '') { |
||
| 313 | $locale = session()->get('locale'); |
||
| 314 | } |
||
| 315 | else { |
||
| 316 | return $default_locale; |
||
| 317 | } |
||
| 318 | } |
||
| 319 | |||
| 320 | // If the given locale is not defined as valid, try to get a fallback locale |
||
| 321 | if (!in_array($locale, $avail_locales)){ |
||
| 322 | |||
| 323 | $found_locales = []; |
||
| 324 | |||
| 325 | // Find any available locale which contains the locale as substring |
||
| 326 | foreach ($avail_locales as $avail_locale) { |
||
| 327 | if (strpos($avail_locale, $locale) !== false){ |
||
| 328 | $found_locales[] = $avail_locale; |
||
| 329 | } |
||
| 330 | } |
||
| 331 | |||
| 332 | // Check if default locale is inside the found locales. If it was, use it! |
||
| 333 | if (in_array($default_locale, $found_locales)){ |
||
| 334 | $message = 'Locale "'.$locale.'" was not found! Falling back to default locale "'.$default_locale.'"'; |
||
| 335 | $locale = $default_locale; |
||
| 336 | |||
| 337 | // Check if any Locale containing '$locale' was found previously |
||
| 338 | } elseif (count($found_locales, 0) >= 1) { |
||
| 339 | $message = 'Locale "'.$locale.'" was not found! Falling back to similar locale "'.$found_locales[0].'"'; |
||
| 340 | $locale = $found_locales[0]; |
||
| 341 | } else { |
||
| 342 | throw new NotFoundResourceException("Locale '".$locale."' was not found in available locales"); |
||
| 343 | } |
||
| 344 | } |
||
| 345 | |||
| 346 | if ($message !== '') $this->log($message, 'warning'); |
||
| 347 | |||
| 348 | return $locale; |
||
| 349 | } |
||
| 350 | |||
| 351 | /** |
||
| 352 | * Returns all translation in the in $locale from $group |
||
| 353 | * |
||
| 354 | * @param string $locale The locale of the translations to get |
||
| 355 | * @param string $group The group of the translations to get |
||
| 356 | * @return array|mixed Returns an array of all translation in the $locale from group $group |
||
| 357 | */ |
||
| 358 | public function getAllTranslations($locale, $group) |
||
| 365 | } |
||
| 366 | |||
| 367 | /** |
||
| 368 | * Log the given exception or string $exception as type $log_type when config log_level is set to debug |
||
| 369 | * |
||
| 370 | * @param \Exception|string $exception The Exception to log |
||
| 371 | * @param string $log_type The type of the log to write in the log file |
||
| 372 | */ |
||
| 373 | protected function log($exception, $log_type = 'notice') |
||
| 392 | } |
||
| 393 | } |
||
| 394 | } |