有没有办法根据创建日期获取所有拉取请求

时间:2018-05-14 07:11:13

标签: pull-request bitbucket-server

目前我使用以下API来获取为分支机构提出的拉取请求。

https://stash.net/rest/api/1.0/projects/{}/repos/{}/pull-requests?
at=refs/heads/release-18&state=ALL&order=OLDEST&withAttributes=false
&withProperties=true&limit=100

我需要获取基于createdDate创建的所有pull请求。 bitbucket是否提供任何API?

目前我正在检查创建的日期并对其进行过滤。

def get_pullrequest_date_based():
    """
    Get all the pull requests raised and filter the based on date
    :return: List of pull request IDs
    """
    pull_request_ids = []
    start = 0
    is_last_page = True
    while is_last_page:
        url = STASH_REST_API_URL + "/pull-requests?state=MERGED&order=NEWEST&withAttributes=false&withProperties=true" + "/results&limit=100&start="+str(start)
        result = make_request(url)
        pull_request_ids.append([value['id'] for value in result['values'] if value['createdDate'] >= date_arg])
        if not result['isLastPage']:
            start += 100
        else:
            is_last_page = False
        print "Size :",len(pull_request_ids)
    return pull_request_ids

任何其他更好的方法。

2 个答案:

答案 0 :(得分:1)

您无法按创建日期进行过滤。您可以找到拉取请求here

的完整REST API文档

您正在做的事情可以改进,因为您按创建日期订购了拉取请求。一旦找到在截止之前创建的拉取请求,您就可以保释,而不是继续通过您知道自己不想要的拉取请求进行分页。

像这样的Somtehing也许(我的Python虽然生锈了但我还没有测试过这段代码,所以对于任何错别道都道歉)

def get_pullrequest_date_based():
    """
    Get all the pull requests raised and filter the based on date
    :return: List of pull request IDs
    """
    pull_request_ids = []
    start = 0
    is_last_page = True
    past_date_arg = False
    while is_last_page and not past_date_arg:
        url = STASH_REST_API_URL +     "/pull-requests?state=MERGED&order=NEWEST&withAttributes=false&withProperties=true" +     "/results&limit=100&start="+str(start)
        result = make_request(url)
        for value in result['values']:
            if value['createdDate'] >= date_arg:
                pull_request_ids.append(value['id'])
            else:
                # This and any subsequent value is going to be too old to care about
                past_date_arg = True
        if not result['isLastPage']:
            start += 100
        else:
            is_last_page = False
        print "Size :",len(pull_request_ids)
    return pull_request_ids

答案 1 :(得分:0)

简短回答:不,该API资源不提供内置日期过滤器。您需要应用任何其他过滤器(如果有)是相关的(例如涉及的分支,方向,状态等),然后在您自己的代码逻辑中应用任何进一步的所需过滤。

您是否有用于通过API进行分页的示例代码?如果你有一个代码片段,你可以分享,也许我们可以帮助你达到你的要求