summaryrefslogtreecommitdiffstats
path: root/build-gluster-org/scripts/close-old-reviews.py
blob: 72fbcca8622474c7f18aace6cc3b357db54a2bee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python

import requests
import json
import os
import sys


def get_unique_id(days=90, count=25):
    r = requests.get('https://review.gluster.org/changes/'
                     '?q=status:open+age:{}days+project:glusterfs'.
                     format(days))
    output = r.text
    cleaned_output = '\n'.join(output.split('\n')[1:])
    parsed_output = json.loads(cleaned_output)
    unique_id = []
    for item in parsed_output:
        unique_id.append(item['change_id'])
    n = -(int(count))
    oldest_reviews = unique_id[n:]
    return oldest_reviews


def close_reviews(oldest_id):
    for uid in oldest_id:
        url = 'https://review.gluster.org/a/changes/glusterfs~master~{}/abandon'.format(uid)
        data = {"message" : "This change has not had activity in 90 days."
                "We're automatically closing this change.\n"
                "Please re-open and get in touch with the component owners"
                " if you are interested in merging this patch."}
        username = os.environ.get('HTTP_USERNAME')
        password = os.environ.get('HTTP_PASSWORD')
        response = requests.post(url, auth=(username, password), json=data)
        try:
            response.raise_for_status()
        except Exception:
            print("Authentication error. Username or password is incorrect")
            sys.exit(1)


def main():

    # get the list of oldest unique_id
    days = os.environ.get('DAYS')
    count = os.environ.get('REV_COUNT')
    ids = get_unique_id(days, count)

    # abandoning those reviews with a message
    close_reviews(ids)

    # printing the list of abandoned reviews
    print("The list of following reviews are abandoned:\n")
    for x in ids:
        print('https://review.gluster.org/#/q/{}\n'.format(str(x)))

main()