org.openqa.selenium.remote.server.AllHandlers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-server Show documentation
Show all versions of selenium-server 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.server;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Splitter;
import com.google.common.base.Strings;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import org.openqa.selenium.remote.SessionId;
import org.openqa.selenium.remote.http.HttpMethod;
import org.openqa.selenium.remote.server.commandhandler.GetLogTypes;
import org.openqa.selenium.remote.server.commandhandler.GetLogsOfType;
import org.openqa.selenium.remote.server.commandhandler.NoHandler;
import org.openqa.selenium.remote.server.commandhandler.NoSessionHandler;
import org.openqa.selenium.remote.server.commandhandler.Status;
import java.lang.reflect.Constructor;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import javax.servlet.http.HttpServletRequest;
class AllHandlers {
private final static Gson GSON = new GsonBuilder().setLenient().serializeNulls().create();
private final ActiveSessions allSessions;
private final Map>> additionalHandlers;
public AllHandlers(ActiveSessions allSessions) {
this.allSessions = allSessions;
additionalHandlers = ImmutableMap.of(
HttpMethod.DELETE, ImmutableList.of(),
HttpMethod.GET, ImmutableList.of(
handler("/session/{sessionId}/log/types", GetLogTypes.class),
handler("/status", Status.class)
),
HttpMethod.POST, ImmutableList.of(
handler("/session", BeginSession.class),
handler("/session/{sessionId}/log", GetLogsOfType.class)
));
}
public CommandHandler match(HttpServletRequest req) {
String path = Strings.isNullOrEmpty(req.getPathInfo()) ? "/" : req.getPathInfo();
Optional extends CommandHandler> additionalHandler = additionalHandlers.get(HttpMethod.valueOf(req.getMethod()))
.stream()
.map(bundle -> bundle.apply(req.getPathInfo()))
.filter(Objects::nonNull)
.findFirst();
if (additionalHandler.isPresent()) {
return additionalHandler.get();
}
// All commands that take a session id expect that as the path fragment immediately after "/session".
SessionId id = null;
List fragments = Splitter.on('/').limit(4).splitToList(path);
if (fragments.size() > 2) {
if ("session".equals(fragments.get(1))) {
id = new SessionId(fragments.get(2));
}
}
if (id != null) {
ActiveSession session = allSessions.get(id);
if (session == null) {
return new NoSessionHandler(id);
}
return session;
}
return new NoHandler();
}
private Function handler(
String template,
Class handler) {
UrlTemplate urlTemplate = new UrlTemplate(template);
return path -> {
UrlTemplate.Match match = urlTemplate.match(path);
if (match == null) {
return null;
}
ImmutableSet.Builder