| // Copyright (C) 2019 The Android Open Source Project |
| // |
| // Licensed 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 com.google.gerrit.server; |
| |
| import com.google.auto.value.AutoValue; |
| import com.google.gerrit.entities.Project; |
| import com.google.gerrit.server.logging.TraceContext; |
| import java.util.Optional; |
| |
| /** Information about a request that was received from a user. */ |
| @AutoValue |
| public abstract class RequestInfo { |
| /** Channel through which a user request was received. */ |
| public enum RequestType { |
| /** request type for git push */ |
| GIT_RECEIVE, |
| |
| /** request type for git fetch */ |
| GIT_UPLOAD, |
| |
| /** request type for call to REST API */ |
| REST, |
| |
| /** request type for call to SSH API */ |
| SSH |
| } |
| |
| /** |
| * Type of the request, telling through which channel the request was coming in. |
| * |
| * <p>See {@link RequestType} for the types that are used by Gerrit core. Other request types are |
| * possible, e.g. if a plugin supports receiving requests through another channel. |
| */ |
| public abstract String requestType(); |
| |
| /** |
| * Request URI. |
| * |
| * <p>Only set if request type is {@link RequestType#REST}. |
| * |
| * <p>Never includes the "/a" prefix. |
| */ |
| public abstract Optional<String> requestUri(); |
| |
| /** The user that has sent the request. */ |
| public abstract CurrentUser callingUser(); |
| |
| /** The trace context of the request. */ |
| public abstract TraceContext traceContext(); |
| |
| /** |
| * The name of the project for which the request is being done. Only available if the request is |
| * tied to a project or change. If a project is available it's not guaranteed that it actually |
| * exists (e.g. if a user made a request for a project that doesn't exist). |
| */ |
| public abstract Optional<Project.NameKey> project(); |
| |
| public static RequestInfo.Builder builder( |
| RequestType requestType, CurrentUser callingUser, TraceContext traceContext) { |
| return new AutoValue_RequestInfo.Builder() |
| .requestType(requestType) |
| .callingUser(callingUser) |
| .traceContext(traceContext); |
| } |
| |
| @AutoValue.Builder |
| public abstract static class Builder { |
| public abstract Builder requestType(String requestType); |
| |
| public Builder requestType(RequestType requestType) { |
| return requestType(requestType.name()); |
| } |
| |
| public abstract Builder requestUri(String requestUri); |
| |
| public abstract Builder callingUser(CurrentUser callingUser); |
| |
| public abstract Builder traceContext(TraceContext traceContext); |
| |
| public abstract Builder project(Project.NameKey projectName); |
| |
| public abstract RequestInfo build(); |
| } |
| } |