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

org.eclipse.jetty.ee10.servlet.PushBuilderImpl Maven / Gradle / Ivy

There is a newer version: 2.0.31
Show newest version
//
// ========================================================================
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//

package org.eclipse.jetty.ee10.servlet;

import java.util.Objects;
import java.util.Set;

import jakarta.servlet.http.PushBuilder;
import org.eclipse.jetty.http.HttpFields;
import org.eclipse.jetty.http.HttpMethod;
import org.eclipse.jetty.http.HttpURI;
import org.eclipse.jetty.http.MetaData;
import org.eclipse.jetty.util.URIUtil;

class PushBuilderImpl implements PushBuilder
{
    private final ServletContextRequest _request;
    private final HttpFields.Mutable _headers;
    private String _method;
    private String _query;
    private String _sessionId;
    private String _path;

    public PushBuilderImpl(ServletContextRequest request, HttpFields.Mutable headers, String sessionId)
    {
        _request = request;
        _headers = headers;
        _method = request.getMethod();
        _query = request.getHttpURI().getQuery();
        _sessionId = sessionId;
    }

    @Override
    public PushBuilder method(String method)
    {
        HttpMethod httpMethod = HttpMethod.fromString(Objects.requireNonNull(method));
        if (httpMethod == null || !httpMethod.isSafe() ||
            // While OPTIONS and TRACE are safe, they are forbidden (wrongly) by the javadoc.
            httpMethod == HttpMethod.OPTIONS || httpMethod == HttpMethod.TRACE)
            throw new IllegalArgumentException("method not allowed for push: " + method);
        _method = httpMethod.asString();
        return this;
    }

    @Override
    public PushBuilder queryString(String queryString)
    {
        _query = queryString;
        return this;
    }

    @Override
    public PushBuilder sessionId(String sessionId)
    {
        _sessionId = sessionId;
        return this;
    }

    @Override
    public PushBuilder setHeader(String name, String value)
    {
        _headers.put(name, value);
        return this;
    }

    @Override
    public PushBuilder addHeader(String name, String value)
    {
        _headers.add(name, value);
        return this;
    }

    @Override
    public PushBuilder removeHeader(String name)
    {
        _headers.remove(name);
        return this;
    }

    @Override
    public PushBuilder path(String path)
    {
        _path = path;
        return this;
    }

    @Override
    public void push()
    {
        String pushPath = getPath();
        if (pushPath == null || pushPath.isBlank())
            throw new IllegalStateException("invalid push path: " + pushPath);

        String query = getQueryString();
        String pushQuery = query;
        int q = pushPath.indexOf('?');
        if (q > 0)
        {
            pushQuery = pushPath.substring(q + 1);
            if (query != null)
                pushQuery += "&" + query;
            pushPath = pushPath.substring(0, q);
        }

        if (!pushPath.startsWith("/"))
            pushPath = URIUtil.addPaths(_request.getServletContext().getContextPath(), pushPath);

        String pushParam = null;
        if (_sessionId != null)
        {
            if (_request.getServletApiRequest().isRequestedSessionIdFromURL())
                pushParam = "jsessionid=" + _sessionId;
        }

        HttpURI pushURI = HttpURI.build(_request.getHttpURI(), pushPath, pushParam, pushQuery).normalize();
        MetaData.Request push = new MetaData.Request(_request.getBeginNanoTime(), _method, pushURI, _request.getConnectionMetaData().getHttpVersion(), _headers);
        _request.push(push);

        _path = null;
    }

    @Override
    public String getMethod()
    {
        return _method;
    }

    @Override
    public String getQueryString()
    {
        return _query;
    }

    @Override
    public String getSessionId()
    {
        return _sessionId;
    }

    @Override
    public Set getHeaderNames()
    {
        return _headers.getFieldNamesCollection();
    }

    @Override
    public String getHeader(String name)
    {
        return _headers.get(name);
    }

    @Override
    public String getPath()
    {
        return _path;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy