org.openqa.selenium.remote.http.HttpMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-http Show documentation
Show all versions of selenium-http Show documentation
Selenium automates browsers. That's it! What you do with that power is entirely up to you.
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you 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 org.openqa.selenium.remote.http;
import static com.google.common.net.HttpHeaders.CONTENT_TYPE;
import static java.nio.charset.StandardCharsets.UTF_8;
import com.google.common.collect.ArrayListMultimap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Multimap;
import com.google.common.net.MediaType;
import java.io.InputStream;
import java.nio.charset.Charset;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import java.util.function.BiConsumer;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import org.openqa.selenium.internal.Require;
abstract class HttpMessage> {
private final Multimap headers = ArrayListMultimap.create();
private final Map attributes = new HashMap<>();
private Supplier content = Contents.empty();
/**
* Retrieves a user-defined attribute of this message. Attributes are stored as simple key-value
* pairs and are not included in a message's serialized form.
*
* @param key attribute name
* @return attribute object
*/
public Object getAttribute(String key) {
return attributes.get(key);
}
public M setAttribute(String key, Object value) {
attributes.put(key, value);
return self();
}
public M removeAttribute(String key) {
attributes.remove(key);
return self();
}
public Iterable getAttributeNames() {
return ImmutableSet.copyOf(attributes.keySet());
}
/**
* Calls the {@code action} for all headers set.
*
* @param action the action to call
*/
public void forEachHeader(BiConsumer action) {
headers.forEach(action);
}
/**
* Returns an iterable with all the names of the headers set.
*
* @return an iterable view of the header names
*/
public Iterable getHeaderNames() {
return Collections.unmodifiableCollection(headers.keySet());
}
/**
* Returns an iterable of the values of headers with the {@code name} (case-insensitive).
*
* @param name the name of the header, case-insensitive
* @return an iterable view of the values
*/
public Iterable getHeaders(String name) {
return headers.entries().stream()
.filter(e -> Objects.nonNull(e.getKey()))
.filter(e -> e.getKey().equalsIgnoreCase(name.toLowerCase()))
.map(Map.Entry::getValue)
.collect(Collectors.toList());
}
/**
* Returns the value of the first header with the {@code name} (case-insensitive).
*
* @param name the name of the header, case-insensitive
* @return the value
*/
public String getHeader(String name) {
return headers.entries().stream()
.filter(e -> Objects.nonNull(e.getKey()))
.filter(e -> e.getKey().equalsIgnoreCase(name.toLowerCase()))
.map(Map.Entry::getValue)
.findFirst()
.orElse(null);
}
/**
* Removes all headers with the {@code name} (case-insensitive) and adds a header with the {@code
* value}.
*
* @param name the name of the header, case-insensitive
* @param value the value to set
* @return self
*/
public M setHeader(String name, String value) {
return removeHeader(name).addHeader(name, value);
}
/**
* Adds a header with the {@code name} and {@code value}, headers with the same (case-insensitive)
* name will be preserved.
*
* @param name the name of the header, case-insensitive
* @param value the value to set
* @return self
*/
public M addHeader(String name, String value) {
headers.put(name, value);
return self();
}
/**
* Removes all headers with the {@code name} (case-insensitive).
*
* @param name the name of the header, case-insensitive
* @return self
*/
public M removeHeader(String name) {
headers.keySet().removeIf(header -> header.equalsIgnoreCase(name));
return self();
}
public Charset getContentEncoding() {
Charset charset = UTF_8;
try {
String contentType = getHeader(CONTENT_TYPE);
if (contentType != null) {
MediaType mediaType = MediaType.parse(contentType);
charset = mediaType.charset().or(UTF_8);
}
} catch (IllegalArgumentException ignored) {
// Do nothing.
}
return charset;
}
public M setContent(Supplier supplier) {
this.content = Require.nonNull("Supplier", supplier);
return self();
}
public Supplier getContent() {
return content;
}
@SuppressWarnings("unchecked")
private M self() {
return (M) this;
}
}