com.capitalone.dashboard.rest.CodeReviewAuditController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-audit Show documentation
Show all versions of api-audit Show documentation
Hygieia Audit Rest API Layer
package com.capitalone.dashboard.rest;
import com.capitalone.dashboard.model.AuditException;
import com.capitalone.dashboard.request.CodeReviewAuditRequest;
import com.capitalone.dashboard.response.CodeReviewAuditResponse;
import com.capitalone.dashboard.service.CodeReviewAuditService;
import com.capitalone.dashboard.util.GitHubParsedUrl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.validation.Valid;
import java.util.Collection;
import static org.springframework.http.MediaType.APPLICATION_JSON_VALUE;
import static org.springframework.web.bind.annotation.RequestMethod.GET;
import io.swagger.annotations.ApiOperation;
@RestController
public class CodeReviewAuditController {
private final CodeReviewAuditService codeReviewAuditService;
@Autowired
public CodeReviewAuditController(CodeReviewAuditService codeReviewAuditService) {
this.codeReviewAuditService = codeReviewAuditService;
}
/**
* Peer Review
* - Check commit author v/s who merged the pr
* - peer review of a pull request
* - check whether there are direct commits to base
*
* @param request caller request
* @return response
*/
@RequestMapping(value = "/peerReview", method = GET, produces = APPLICATION_JSON_VALUE)
@ApiOperation(value = "Audit status of peer review validation", notes = "Returns the audit status as passed or failed for the peer review of a pull request, based on the following checks:
" + "• No direct commits merged to master/release branch
" + "• Any change made to the master/release branch is reviewed by a second person before merge ", response = CodeReviewAuditResponse.class, responseContainer = "List")
public ResponseEntity> peerReviewByRepo(@Valid CodeReviewAuditRequest request) throws AuditException {
GitHubParsedUrl gitHubParsed = new GitHubParsedUrl(request.getRepo());
String repoUrl = gitHubParsed.getUrl();
Collection allPeerReviews = codeReviewAuditService.getPeerReviewResponses(repoUrl, request.getBranch(), request.getScmName(), request.getBeginDate(), request.getEndDate());
return ResponseEntity.ok().body(allPeerReviews);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy