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

com.github.mcollovati.vertx.vaadin.VertxVaadinRequest Maven / Gradle / Ivy

The newest version!
/*
 * The MIT License
 * Copyright © 2016-2020 Marco Collovati ([email protected])
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package com.github.mcollovati.vertx.vaadin;

import java.io.BufferedReader;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.StringReader;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.security.Principal;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeParseException;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.stream.Stream;
import jakarta.servlet.http.Cookie;

import com.vaadin.flow.server.VaadinRequest;
import com.vaadin.flow.server.WrappedSession;
import io.vertx.core.MultiMap;
import io.vertx.core.http.HttpHeaders;
import io.vertx.core.http.HttpServerRequest;
import io.vertx.core.net.SocketAddress;
import io.vertx.ext.auth.User;
import io.vertx.ext.web.LanguageHeader;
import io.vertx.ext.web.RoutingContext;
import lombok.AccessLevel;
import lombok.RequiredArgsConstructor;

import com.github.mcollovati.vertx.Sync;
import com.github.mcollovati.vertx.web.ExtendedSession;

import static java.util.stream.Collectors.toList;

/**
 * Created by marco on 16/07/16.
 */
public class VertxVaadinRequest implements VaadinRequest {

    private static final Pattern CONTENT_TYPE_PATTERN =
            Pattern.compile("^(.*/[^;]+)(?:;.*$|$)", Pattern.CASE_INSENSITIVE);
    private static final Pattern CHARSET_PATTERN =
            Pattern.compile("^.*(?<=charset=)([^;]+)(?:;.*$|$)", Pattern.CASE_INSENSITIVE);

    private final VertxVaadinService service;
    private final RoutingContext routingContext;
    private final HttpServerRequest request;

    public VertxVaadinRequest(VertxVaadinService service, RoutingContext routingContext) {
        this.service = service;
        this.routingContext = routingContext;
        this.request = routingContext.request();
    }

    public HttpServerRequest getRequest() {
        return request;
    }

    public RoutingContext getRoutingContext() {
        return routingContext;
    }

    @Override
    public String getParameter(String parameter) {
        // return request.getParam(parameter);
        return routingContext.queryParam(parameter).stream().findFirst().orElse(null);
    }

    @Override
    public Map getParameterMap() {
        Map params = new HashMap<>();
        MultiMap multiMap = routingContext.queryParams();
        multiMap.names()
                .forEach(param -> params.put(param, multiMap.getAll(param).toArray(new String[0])));
        return params;
        /*
        return request.params().names()
            .stream().collect(toMap(identity(), k -> request.params().getAll(k).toArray(new String[0])));
         */
    }

    @Override
    public int getContentLength() {
        return routingContext.getBody().length();
    }

    @Override
    public InputStream getInputStream() throws IOException {
        return new ByteArrayInputStream(routingContext.getBody().getBytes());
    }

    @Override
    public Object getAttribute(String name) {
        return routingContext.get(name);
    }

    @Override
    public void setAttribute(String name, Object value) {
        routingContext.put(name, value);
    }

    @Override
    public void removeAttribute(String name) {
        routingContext.put(name, null);
    }

    @Override
    public String getPathInfo() {
        String path = request.path().substring(getContextPath().length());
        try {
            return URLDecoder.decode(path, "UTF-8");
        } catch (UnsupportedEncodingException e) {
            // fallback to path
            return path;
        }
    }

    @Override
    public String getContextPath() {
        // until vertx 3.8.3 routingContext.mountPoint() for "/" is "", since 3.84 it is "/"
        return extractContextPath(routingContext);
    }

    public static String extractContextPath(RoutingContext routingContext) {
        // until vertx 3.8.3 routingContext.mountPoint() for "/" is "", since 3.8.4 it is "/"
        return Optional.ofNullable(routingContext.mountPoint()).orElse("").replaceAll("/$", "");
    }

    @Override
    public WrappedSession getWrappedSession() {
        return getWrappedSession(true);
    }

    @Override
    public WrappedSession getWrappedSession(boolean allowSessionCreation) {
        return Optional.ofNullable(routingContext.session())
                .map(ExtendedSession::adapt)
                .map(VertxWrappedSession::new)
                .orElse(null);
    }

    @Override
    public String getContentType() {
        return Optional.ofNullable(request.getHeader(HttpHeaders.CONTENT_TYPE))
                .map(CONTENT_TYPE_PATTERN::matcher)
                .filter(Matcher::matches)
                .map(m -> m.group(1))
                .orElse(null);
    }

    @Override
    public Locale getLocale() {
        return toJavaLocale(routingContext.preferredLanguage());
    }

    @Override
    public String getRemoteAddr() {
        return Optional.ofNullable(request.remoteAddress())
                .map(SocketAddress::host)
                .orElse(null);
    }

    @Override
    public boolean isSecure() {
        return request.isSSL();
    }

    @Override
    public String getHeader(String headerName) {
        return request.getHeader(headerName);
    }

    @Override
    public VertxVaadinService getService() {
        return service;
    }

    @Override
    public Cookie[] getCookies() {
        if (routingContext.cookieCount() > 0) {
            return routingContext.cookieMap().values().stream()
                    .map(CookieUtils::fromVertxCookie)
                    .toArray(Cookie[]::new);
        }
        return null;
    }

    // TODO
    @Override
    public String getAuthType() {
        return null;
    }

    @Override
    public String getRemoteUser() {
        return Optional.ofNullable(routingContext.user())
                .map(User::principal)
                .flatMap(json -> Optional.ofNullable(json.getString("username")))
                .orElse(null);
    }

    @Override
    public Principal getUserPrincipal() {
        return Optional.ofNullable(routingContext.user())
                .map(VertxPrincipal::new)
                .orElse(null);
    }

    // TODO
    @Override
    public boolean isUserInRole(String role) {
        if (routingContext.user() != null) {
            return Sync.await(completer -> routingContext.user().isAuthorized(role, completer));
        }
        return false;
    }

    @Override
    public Enumeration getAttributeNames() {
        return Collections.enumeration(routingContext.data().keySet());
    }

    @Override
    public Enumeration getLocales() {
        return Collections.enumeration(routingContext.acceptableLanguages().stream()
                .map(VertxVaadinRequest::toJavaLocale)
                .collect(toList()));
    }

    @Override
    public String getRemoteHost() {
        return request.host();
    }

    @Override
    public int getRemotePort() {
        return Optional.ofNullable(request.remoteAddress())
                .map(SocketAddress::port)
                .orElse(-1);
    }

    @Override
    public String getCharacterEncoding() {
        return Optional.ofNullable(request.getHeader(HttpHeaders.CONTENT_TYPE))
                .map(CHARSET_PATTERN::matcher)
                .filter(Matcher::matches)
                .map(m -> m.group(1))
                .orElse(null);
    }

    @Override
    public BufferedReader getReader() throws IOException {
        return new BufferedReader(new StringReader(routingContext.getBodyAsString()));
    }

    @Override
    public String getMethod() {
        return request.method().name();
    }

    @Override
    public long getDateHeader(String name) {
        return Optional.ofNullable(request.getHeader(name))
                .flatMap(s -> tryParseDate(
                        s,
                        DateTimeFormatter.RFC_1123_DATE_TIME,
                        DateTimeFormatter.ofPattern("EEEE, dd-MMM-yy HH:mm:ss zzz", Locale.US),
                        DateTimeFormatter.ofPattern("EEE MMM ppd HH:mm:ss yyyy", Locale.US)
                                .withZone(ZoneId.of("GMT"))))
                .orElse(-1L);
    }

    private Optional tryParseDate(String date, DateTimeFormatter... formatter) {
        return Stream.of(formatter)
                .map(f -> {
                    try {
                        return ZonedDateTime.parse(date, f).toEpochSecond() * 1000;
                    } catch (DateTimeParseException ex) {
                        return null;
                    }
                })
                .filter(Objects::nonNull)
                .findFirst();
    }

    @Override
    public Enumeration getHeaderNames() {
        return Collections.enumeration(request.headers().names());
    }

    @Override
    public Enumeration getHeaders(String name) {
        return Collections.enumeration(request.headers().getAll(name));
    }

    private static Locale toJavaLocale(LanguageHeader locale) {
        return Optional.ofNullable(locale)
                .map(loc -> new Locale(
                        loc.tag(),
                        Optional.ofNullable(loc.subtag()).orElse(""),
                        Optional.ofNullable(loc.subtag(2)).orElse("")))
                .orElse(null);
    }

    public static Optional tryCast(VaadinRequest request) {
        if (request instanceof VertxVaadinRequest) {
            return Optional.of((VertxVaadinRequest) request);
        }
        return Optional.empty();
    }

    @RequiredArgsConstructor(access = AccessLevel.PRIVATE)
    private static class VertxPrincipal implements Principal {

        private final User user;

        @Override
        public String getName() {
            return user.principal().getString("username");
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy