2022-01-21 08:23:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Github\Api\PullRequest;
|
|
|
|
|
|
|
|
use Github\Api\AbstractApi;
|
|
|
|
use Github\Api\AcceptHeaderTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @link https://developer.github.com/v3/pulls/review_requests/
|
|
|
|
*/
|
|
|
|
class ReviewRequest extends AbstractApi
|
|
|
|
{
|
|
|
|
use AcceptHeaderTrait;
|
|
|
|
|
|
|
|
public function configure()
|
|
|
|
{
|
2022-01-24 08:08:35 +00:00
|
|
|
trigger_deprecation('KnpLabs/php-github-api', '3.2', 'The "%s" is deprecated and will be removed.', __METHOD__);
|
|
|
|
|
2022-01-21 08:23:52 +00:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @link https://developer.github.com/v3/pulls/review_requests/#list-review-requests
|
|
|
|
*
|
|
|
|
* @param string $username
|
|
|
|
* @param string $repository
|
|
|
|
* @param int $pullRequest
|
|
|
|
* @param array $params
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function all($username, $repository, $pullRequest, array $params = [])
|
|
|
|
{
|
2022-01-24 08:08:35 +00:00
|
|
|
if (!empty($params)) {
|
|
|
|
trigger_deprecation('KnpLabs/php-github-api', '3.2', 'The "$params" parameter is deprecated, to paginate the results use the "ResultPager" instead.');
|
|
|
|
}
|
|
|
|
|
2022-01-21 08:23:52 +00:00
|
|
|
return $this->get('/repos/'.rawurlencode($username).'/'.rawurlencode($repository).'/pulls/'.$pullRequest.'/requested_reviewers', $params);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @link https://developer.github.com/v3/pulls/review_requests/#create-a-review-request
|
|
|
|
*
|
|
|
|
* @param string $username
|
|
|
|
* @param string $repository
|
|
|
|
* @param int $pullRequest
|
|
|
|
* @param array $reviewers
|
|
|
|
* @param array $teamReviewers
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function create($username, $repository, $pullRequest, array $reviewers = [], array $teamReviewers = [])
|
|
|
|
{
|
|
|
|
return $this->post('/repos/'.rawurlencode($username).'/'.rawurlencode($repository).'/pulls/'.$pullRequest.'/requested_reviewers', ['reviewers' => $reviewers, 'team_reviewers' => $teamReviewers]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @link https://developer.github.com/v3/pulls/review_requests/#delete-a-review-request
|
|
|
|
*
|
|
|
|
* @param string $username
|
|
|
|
* @param string $repository
|
|
|
|
* @param int $pullRequest
|
|
|
|
* @param array $reviewers
|
|
|
|
* @param array $teamReviewers
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function remove($username, $repository, $pullRequest, array $reviewers = [], array $teamReviewers = [])
|
|
|
|
{
|
|
|
|
return $this->delete('/repos/'.rawurlencode($username).'/'.rawurlencode($repository).'/pulls/'.$pullRequest.'/requested_reviewers', ['reviewers' => $reviewers, 'team_reviewers' => $teamReviewers]);
|
|
|
|
}
|
|
|
|
}
|