| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- # -*- coding: utf-8 -*-
- # Copyright 2023 Google LLC
- #
- # Licensed under the Apache License, Version 2.0 (the 'License');
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an 'AS IS' BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- import argparse
- import datetime
- import json
- import logging
- import os
- import api_diff_report
- import pytz
- import requests
- from requests.adapters import HTTPAdapter
- from requests.packages.urllib3.util.retry import Retry
- STAGES_PROGRESS = 'progress'
- STAGES_END = 'end'
- TITLE_PROGESS = '## ⏳ Detecting API diff in progress...\n'
- TITLE_END_DIFF = '## Apple API Diff Report\n'
- TITLE_END_NO_DIFF = '## ✅ No API diff detected\n'
- COMMENT_HIDDEN_IDENTIFIER = '\r\n<hidden value="diff-report"></hidden>\r\n'
- GITHUB_API_URL = 'https://api.github.com/repos/firebase/firebase-ios-sdk'
- PR_LABEL = 'public-api-change'
- def main():
- logging.getLogger().setLevel(logging.INFO)
- # Parse command-line arguments
- args = parse_cmdline_args()
- stage = args.stage
- token = args.token
- pr_number = args.pr_number
- commit = args.commit
- run_id = args.run_id
- report = ''
- comment_id = get_comment_id(token, pr_number, COMMENT_HIDDEN_IDENTIFIER)
- if stage == STAGES_PROGRESS:
- if comment_id:
- report = COMMENT_HIDDEN_IDENTIFIER
- report += generate_markdown_title(TITLE_PROGESS, commit, run_id)
- update_comment(token, comment_id, report)
- delete_label(token, pr_number, PR_LABEL)
- elif stage == STAGES_END:
- diff_report_file = os.path.join(
- os.path.expanduser(args.report), api_diff_report.API_DIFF_FILE_NAME
- )
- with open(diff_report_file, 'r') as file:
- report_content = file.read()
- if report_content: # Diff detected
- report = (
- COMMENT_HIDDEN_IDENTIFIER
- + generate_markdown_title(TITLE_END_DIFF, commit, run_id)
- + report_content
- )
- if comment_id:
- update_comment(token, comment_id, report)
- else:
- add_comment(token, pr_number, report)
- add_label(token, pr_number, PR_LABEL)
- else: # No diff
- if comment_id:
- report = COMMENT_HIDDEN_IDENTIFIER + generate_markdown_title(
- TITLE_END_NO_DIFF, commit, run_id
- )
- update_comment(token, comment_id, report)
- delete_label(token, pr_number, PR_LABEL)
- def generate_markdown_title(title, commit, run_id):
- pst_now = datetime.datetime.utcnow().astimezone(
- pytz.timezone('America/Los_Angeles')
- )
- return (
- title
- + 'Commit: %s\n' % commit
- + 'Last updated: %s \n' % pst_now.strftime('%a %b %e %H:%M %Z %G')
- + '**[View workflow logs & download artifacts]'
- + '(https://github.com/firebase/firebase-ios-sdk/actions/runs/%s)**\n\n'
- % run_id
- + '-----\n'
- )
- RETRIES = 3
- BACKOFF = 5
- RETRY_STATUS = (403, 500, 502, 504)
- TIMEOUT = 5
- def requests_retry_session(
- retries=RETRIES, backoff_factor=BACKOFF, status_forcelist=RETRY_STATUS
- ):
- session = requests.Session()
- retry = Retry(
- total=retries,
- read=retries,
- connect=retries,
- backoff_factor=backoff_factor,
- status_forcelist=status_forcelist,
- )
- adapter = HTTPAdapter(max_retries=retry)
- session.mount('http://', adapter)
- session.mount('https://', adapter)
- return session
- def get_comment_id(token, issue_number, comment_identifier):
- comments = list_comments(token, issue_number)
- for comment in comments:
- if comment_identifier in comment['body']:
- return comment['id']
- return None
- def list_comments(token, issue_number):
- """https://docs.github.com/en/rest/reference/issues#list-issue-comments"""
- url = f'{GITHUB_API_URL}/issues/{issue_number}/comments'
- headers = {
- 'Accept': 'application/vnd.github.v3+json',
- 'Authorization': f'token {token}',
- }
- with requests_retry_session().get(
- url, headers=headers, timeout=TIMEOUT
- ) as response:
- logging.info('list_comments: %s response: %s', url, response)
- return response.json()
- def add_comment(token, issue_number, comment):
- """https://docs.github.com/en/rest/reference/issues#create-an-issue-comment"""
- url = f'{GITHUB_API_URL}/issues/{issue_number}/comments'
- headers = {
- 'Accept': 'application/vnd.github.v3+json',
- 'Authorization': f'token {token}',
- }
- data = {'body': comment}
- with requests.post(
- url, headers=headers, data=json.dumps(data), timeout=TIMEOUT
- ) as response:
- logging.info('add_comment: %s response: %s', url, response)
- def update_comment(token, comment_id, comment):
- """https://docs.github.com/en/rest/reference/issues#update-an-issue-comment"""
- url = f'{GITHUB_API_URL}/issues/comments/{comment_id}'
- headers = {
- 'Accept': 'application/vnd.github.v3+json',
- 'Authorization': f'token {token}',
- }
- data = {'body': comment}
- with requests_retry_session().patch(
- url, headers=headers, data=json.dumps(data), timeout=TIMEOUT
- ) as response:
- logging.info('update_comment: %s response: %s', url, response)
- def delete_comment(token, comment_id):
- """https://docs.github.com/en/rest/reference/issues#delete-an-issue-comment"""
- url = f'{GITHUB_API_URL}/issues/comments/{comment_id}'
- headers = {
- 'Accept': 'application/vnd.github.v3+json',
- 'Authorization': f'token {token}',
- }
- with requests.delete(url, headers=headers, timeout=TIMEOUT) as response:
- logging.info('delete_comment: %s response: %s', url, response)
- def add_label(token, issue_number, label):
- """https://docs.github.com/en/rest/reference/issues#add-labels-to-an-issue"""
- url = f'{GITHUB_API_URL}/issues/{issue_number}/labels'
- headers = {
- 'Accept': 'application/vnd.github.v3+json',
- 'Authorization': f'token {token}',
- }
- data = [label]
- with requests.post(
- url, headers=headers, data=json.dumps(data), timeout=TIMEOUT
- ) as response:
- logging.info('add_label: %s response: %s', url, response)
- def delete_label(token, issue_number, label):
- """https://docs.github.com/en/rest/reference/issues#delete-a-label"""
- url = f'{GITHUB_API_URL}/issues/{issue_number}/labels/{label}'
- headers = {
- 'Accept': 'application/vnd.github.v3+json',
- 'Authorization': f'token {token}',
- }
- with requests.delete(url, headers=headers, timeout=TIMEOUT) as response:
- logging.info('delete_label: %s response: %s', url, response)
- def parse_cmdline_args():
- parser = argparse.ArgumentParser()
- parser.add_argument('-s', '--stage')
- parser.add_argument('-r', '--report')
- parser.add_argument('-t', '--token')
- parser.add_argument('-n', '--pr_number')
- parser.add_argument('-c', '--commit')
- parser.add_argument('-i', '--run_id')
- args = parser.parse_args()
- return args
- if __name__ == '__main__':
- main()
|