| // Copyright (C) 2016 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.Account; |
| import com.google.gerrit.entities.Address; |
| import com.google.gerrit.server.notedb.ReviewerStateInternal; |
| import java.time.Instant; |
| import java.util.Optional; |
| |
| /** Change to a reviewer's status. */ |
| @AutoValue |
| public abstract class ReviewerStatusUpdate { |
| public static ReviewerStatusUpdate createForReviewer( |
| Instant ts, |
| Account.Id updatedBy, |
| Account.Id realUpdatedBy, |
| Account.Id reviewer, |
| ReviewerStateInternal state) { |
| return new AutoValue_ReviewerStatusUpdate( |
| ts, |
| updatedBy, |
| Optional.ofNullable(realUpdatedBy), |
| Optional.of(reviewer), |
| Optional.empty(), |
| state); |
| } |
| |
| public static ReviewerStatusUpdate createForReviewerByEmail( |
| Instant ts, |
| Account.Id updatedBy, |
| Account.Id realUpdatedBy, |
| Address reviewerByEmail, |
| ReviewerStateInternal state) { |
| return new AutoValue_ReviewerStatusUpdate( |
| ts, |
| updatedBy, |
| Optional.ofNullable(realUpdatedBy), |
| Optional.empty(), |
| Optional.of(reviewerByEmail), |
| state); |
| } |
| |
| public abstract Instant date(); |
| |
| public abstract Account.Id updatedBy(); |
| |
| /** |
| * The real user that performed the reviewer update. |
| * |
| * <p>This field is only set in case of impersonation using the RUN_AS permission. In case of |
| * impersonation, `updatedBy` will store the user that is being impersonated, and this field will |
| * store the caller. I.e. if User X is impersonating User Y, then `updatedBy` will be Y and |
| * `realUpdatedBy` will be X. |
| */ |
| public abstract Optional<Account.Id> realUpdatedBy(); |
| |
| /** Not set if a reviewer for which no Gerrit account exists is added by email. */ |
| public abstract Optional<Account.Id> reviewer(); |
| |
| /** Only set for reviewers that have no Gerrit account and that have been added by email. */ |
| public abstract Optional<Address> reviewerByEmail(); |
| |
| public abstract ReviewerStateInternal state(); |
| } |