Line data Source code
1 : // Copyright (C) 2014 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.api.changes; 16 : 17 : import static com.google.gerrit.server.api.ApiUtil.asRestApiException; 18 : 19 : import com.google.gerrit.extensions.api.changes.CommentApi; 20 : import com.google.gerrit.extensions.api.changes.DeleteCommentInput; 21 : import com.google.gerrit.extensions.common.CommentInfo; 22 : import com.google.gerrit.extensions.restapi.RestApiException; 23 : import com.google.gerrit.server.change.HumanCommentResource; 24 : import com.google.gerrit.server.restapi.change.DeleteComment; 25 : import com.google.gerrit.server.restapi.change.GetComment; 26 : import com.google.inject.Inject; 27 : import com.google.inject.assistedinject.Assisted; 28 : 29 : class CommentApiImpl implements CommentApi { 30 : interface Factory { 31 : CommentApiImpl create(HumanCommentResource c); 32 : } 33 : 34 : private final GetComment getComment; 35 : private final DeleteComment deleteComment; 36 : private final HumanCommentResource comment; 37 : 38 : @Inject 39 : CommentApiImpl( 40 3 : GetComment getComment, DeleteComment deleteComment, @Assisted HumanCommentResource comment) { 41 3 : this.getComment = getComment; 42 3 : this.deleteComment = deleteComment; 43 3 : this.comment = comment; 44 3 : } 45 : 46 : @Override 47 : public CommentInfo get() throws RestApiException { 48 : try { 49 2 : return getComment.apply(comment).value(); 50 0 : } catch (Exception e) { 51 0 : throw asRestApiException("Cannot retrieve comment", e); 52 : } 53 : } 54 : 55 : @Override 56 : public CommentInfo delete(DeleteCommentInput input) throws RestApiException { 57 : try { 58 2 : return deleteComment.apply(comment, input).value(); 59 1 : } catch (Exception e) { 60 1 : throw asRestApiException("Cannot delete comment", e); 61 : } 62 : } 63 : }