io.undertow.util.LocaleUtils Java Examples

The following examples show how to use io.undertow.util.LocaleUtils. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: LocaleHandler.java    From mangooio with Apache License 2.0 6 votes vote down vote up
@Override
public void handleRequest(HttpServerExchange exchange) throws Exception {
    Locale locale = Locale.forLanguageTag(this.config.getApplicationLanguage());
    Attachment attachment = exchange.getAttachment(RequestUtils.getAttachmentKey());

    Cookie i18nCookie = exchange.getRequestCookies().get(this.config.getI18nCookieName());
    if (i18nCookie == null) {
        final HeaderValues headerValues = exchange.getRequestHeaders().get(Header.ACCEPT_LANGUAGE.toHttpString());
        if (headerValues != null) {
            String acceptLanguage = headerValues.element();
            if (StringUtils.isNotBlank(acceptLanguage)) {
                locale = LocaleUtils.getLocaleFromString(acceptLanguage);
            }
        }
    } else {
        locale = LocaleUtils.getLocaleFromString(i18nCookie.getValue());
    }

    attachment.getMessages().reload(locale);
    attachment.withLocale(locale);
    
    exchange.putAttachment(RequestUtils.getAttachmentKey(), attachment);
    nextHandler(exchange);
}
 
Example #2
Source File: HttpServletRequestImpl.java    From quarkus-http with Apache License 2.0 5 votes vote down vote up
@Override
public Enumeration<Locale> getLocales() {
    final List<String> acceptLanguage = exchange.getRequestHeaders(HttpHeaderNames.ACCEPT_LANGUAGE);
    List<Locale> ret = LocaleUtils.getLocalesFromHeader(acceptLanguage);
    if (ret.isEmpty()) {
        return new IteratorEnumeration<>(Collections.singletonList(Locale.getDefault()).iterator());
    }
    return new IteratorEnumeration<>(ret.iterator());
}
 
Example #3
Source File: HttpServletRequestImpl.java    From lams with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Enumeration<Locale> getLocales() {
    final List<String> acceptLanguage = exchange.getRequestHeaders().get(Headers.ACCEPT_LANGUAGE);
    List<Locale> ret = LocaleUtils.getLocalesFromHeader(acceptLanguage);
    if(ret.isEmpty()) {
        return new IteratorEnumeration<>(Collections.singletonList(Locale.getDefault()).iterator());
    }
    return new IteratorEnumeration<>(ret.iterator());
}