All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.greenfossil.commons.LocaleUtil.scala Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2022 Greenfossil Pte Ltd
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.greenfossil.commons

import java.util.Locale
import java.util.Locale.{Builder, LanguageRange}


trait LocaleUtil:
  /**
   * Get best matched locale from the accepted language ranges and available language tags. 
   *
   * @param acceptedLanguageRange Accepted Language Ranges
   * @param availableLanguageTags Available Language Tags, e.g. "en-SG", "en-US", "zh-CN"
   * @param variantOpt            Locale variant
   */
  def getBestMatchFromLanguageTags(acceptedLanguageRange: Seq[LanguageRange], availableLanguageTags: Seq[String], variantOpt: Option[String]): Locale =
    val availableLocales = availableLanguageTags.map(tag => new Locale.Builder().setLanguageTag(tag).build())
    getBestMatchLocale(acceptedLanguageRange, availableLocales, variantOpt)

  /**
   * Get best matched locale from the accepted language ranges and available locales.
   * If there is no language matched the available locale, it will return the first locale of the list.
   */
  def getBestMatchLocale(acceptedLanguageRanges: Seq[LanguageRange], availableLocales: Seq[Locale], variantOpt: Option[String]): Locale =
    import scala.jdk.CollectionConverters.*
    val bestMatchLocale = Option(Locale.lookup(acceptedLanguageRanges.asJava, availableLocales.asJava))
      .orElse(availableLocales.headOption).getOrElse(Locale.getDefault)
    new Builder().setLocale(bestMatchLocale).setVariant(variantOpt.getOrElse("")).build()

object LocaleUtil extends LocaleUtil




© 2015 - 2024 Weber Informatics LLC | Privacy Policy