Line data Source code
1 : // Copyright (C) 2013 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.server.restapi.account; 16 : 17 : import com.google.gerrit.common.data.GlobalCapability; 18 : import com.google.gerrit.extensions.annotations.RequiresCapability; 19 : import com.google.gerrit.extensions.common.Input; 20 : import com.google.gerrit.extensions.restapi.Response; 21 : import com.google.gerrit.extensions.restapi.RestApiException; 22 : import com.google.gerrit.extensions.restapi.RestModifyView; 23 : import com.google.gerrit.server.account.AccountResource; 24 : import com.google.gerrit.server.account.SetInactiveFlag; 25 : import com.google.inject.Inject; 26 : import com.google.inject.Singleton; 27 : import java.io.IOException; 28 : import org.eclipse.jgit.errors.ConfigInvalidException; 29 : 30 : /** 31 : * REST endpoint to mark an account as active. 32 : * 33 : * <p>This REST endpoint handles {@code PUT /accounts/<account-identifier>/active} requests. 34 : * 35 : * <p>Only active accounts can login into Gerrit, or are suggested as reviewers. 36 : * 37 : * <p>Marking an account as inactive is handled by {@link DeleteActive}. 38 : */ 39 : @RequiresCapability(GlobalCapability.MODIFY_ACCOUNT) 40 : @Singleton 41 : public class PutActive implements RestModifyView<AccountResource, Input> { 42 : 43 : private final SetInactiveFlag setInactiveFlag; 44 : 45 : @Inject 46 148 : PutActive(SetInactiveFlag setInactiveFlag) { 47 148 : this.setInactiveFlag = setInactiveFlag; 48 148 : } 49 : 50 : @Override 51 : public Response<String> apply(AccountResource rsrc, Input input) 52 : throws RestApiException, IOException, ConfigInvalidException { 53 2 : return setInactiveFlag.activate(rsrc.getUser().getAccountId()); 54 : } 55 : }