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

io.quarkus.vertx.http.runtime.attribute.ResponseHeaderAttribute Maven / Gradle / Ivy

The newest version!
package io.quarkus.vertx.http.runtime.attribute;

import java.util.List;

import io.vertx.ext.web.RoutingContext;

/**
 * A response header
 *
 */
public class ResponseHeaderAttribute implements ExchangeAttribute {

    private final String responseHeader;

    public ResponseHeaderAttribute(final String responseHeader) {
        this.responseHeader = responseHeader;
    }

    @Override
    public String readAttribute(final RoutingContext exchange) {
        List header = exchange.response().headers().getAll(responseHeader);
        if (header.isEmpty()) {
            return null;
        } else if (header.size() == 1) {
            return header.get(0);
        }
        StringBuilder sb = new StringBuilder();
        sb.append("[");
        for (int i = 0; i < header.size(); ++i) {
            if (i != 0) {
                sb.append(", ");
            }
            sb.append(header.get(i));
        }
        sb.append("]");
        return sb.toString();
    }

    @Override
    public void writeAttribute(final RoutingContext exchange, final String newValue) throws ReadOnlyAttributeException {
        if (newValue == null) {
            exchange.response().headers().remove(responseHeader);
        } else {
            exchange.response().headers().set(responseHeader, newValue);
        }
    }

    public static final class Builder implements ExchangeAttributeBuilder {

        @Override
        public String name() {
            return "Response header";
        }

        @Override
        public ExchangeAttribute build(final String token) {
            if (token.startsWith("%{o,") && token.endsWith("}")) {
                final String headerName = token.substring(4, token.length() - 1);
                return new ResponseHeaderAttribute(headerName);
            }
            return null;
        }

        @Override
        public int priority() {
            return 0;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy