Line data Source code
1 : // Copyright (C) 2020 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.change; 16 : 17 : import com.google.gerrit.entities.Account; 18 : import com.google.gerrit.extensions.registration.DynamicMap; 19 : import com.google.gerrit.extensions.restapi.AuthException; 20 : import com.google.gerrit.extensions.restapi.BadRequestException; 21 : import com.google.gerrit.extensions.restapi.ChildCollection; 22 : import com.google.gerrit.extensions.restapi.IdString; 23 : import com.google.gerrit.extensions.restapi.ResourceNotFoundException; 24 : import com.google.gerrit.extensions.restapi.RestView; 25 : import com.google.gerrit.server.account.AccountResolver; 26 : import com.google.gerrit.server.change.AttentionSetEntryResource; 27 : import com.google.gerrit.server.change.ChangeResource; 28 : import com.google.gerrit.server.util.AttentionSetUtil; 29 : import com.google.inject.Inject; 30 : import com.google.inject.Singleton; 31 : import java.io.IOException; 32 : import org.eclipse.jgit.errors.ConfigInvalidException; 33 : 34 : @Singleton 35 : public class AttentionSet implements ChildCollection<ChangeResource, AttentionSetEntryResource> { 36 : private final DynamicMap<RestView<AttentionSetEntryResource>> views; 37 : private final AccountResolver accountResolver; 38 : private final GetAttentionSet getAttentionSet; 39 : 40 : @Inject 41 : AttentionSet( 42 : DynamicMap<RestView<AttentionSetEntryResource>> views, 43 : GetAttentionSet getAttentionSet, 44 145 : AccountResolver accountResolver) { 45 145 : this.views = views; 46 145 : this.accountResolver = accountResolver; 47 145 : this.getAttentionSet = getAttentionSet; 48 145 : } 49 : 50 : @Override 51 : public DynamicMap<RestView<AttentionSetEntryResource>> views() { 52 1 : return views; 53 : } 54 : 55 : @Override 56 : public RestView<ChangeResource> list() throws ResourceNotFoundException { 57 1 : return getAttentionSet; 58 : } 59 : 60 : @Override 61 : public AttentionSetEntryResource parse(ChangeResource changeResource, IdString idString) 62 : throws ResourceNotFoundException, AuthException, IOException, ConfigInvalidException, 63 : BadRequestException { 64 14 : Account.Id accountId = 65 13 : AttentionSetUtil.resolveAccount(accountResolver, changeResource.getNotes(), idString.get()); 66 13 : return new AttentionSetEntryResource(changeResource, accountId); 67 : } 68 : }