Skip to content
Snippets Groups Projects
Commit b0daf222 authored by Haibo Huang's avatar Haibo Huang Committed by android-build-merger
Browse files

[Updater] Rate limit updates am: 11c4a759

am: a04033f4

Change-Id: Ibfafa745012df5b02d5505d922616e96ed9a7678
parents 04e80b58 a04033f4
No related branches found
No related tags found
No related merge requests found
...@@ -27,6 +27,7 @@ python_binary_host { ...@@ -27,6 +27,7 @@ python_binary_host {
name: "external_updater_notifier", name: "external_updater_notifier",
main: "notifier.py", main: "notifier.py",
srcs: [ srcs: [
"git_utils.py",
"notifier.py", "notifier.py",
], ],
} }
......
...@@ -21,6 +21,7 @@ external_updater_notifier \ ...@@ -21,6 +21,7 @@ external_updater_notifier \
googletest googletest
""" """
from datetime import timedelta, datetime
import argparse import argparse
import json import json
import os import os
...@@ -28,6 +29,7 @@ import re ...@@ -28,6 +29,7 @@ import re
import subprocess import subprocess
import time import time
import git_utils
def parse_args(): def parse_args():
"""Parses commandline arguments.""" """Parses commandline arguments."""
...@@ -73,6 +75,22 @@ def _send_email(proj, latest_ver, recipient, upgrade_log): ...@@ -73,6 +75,22 @@ def _send_email(proj, latest_ver, recipient, upgrade_log):
input=msg, encoding='ascii') input=msg, encoding='ascii')
NOTIFIED_TIME_KEY_NAME = 'latest_notified_time'
def _should_notify(latest_ver, proj_history):
if latest_ver in proj_history:
# Processed this version before.
return False
timestamp = proj_history.get(NOTIFIED_TIME_KEY_NAME, 0)
time_diff = datetime.today() - datetime.fromtimestamp(timestamp)
if git_utils.is_commit(latest_ver) and time_diff <= timedelta(days=30):
return False
return True
def _process_results(args, history, results): def _process_results(args, history, results):
for proj, res in results.items(): for proj, res in results.items():
if 'latest' not in res: if 'latest' not in res:
...@@ -82,11 +100,12 @@ def _process_results(args, history, results): ...@@ -82,11 +100,12 @@ def _process_results(args, history, results):
if latest_ver == current_ver: if latest_ver == current_ver:
continue continue
proj_history = history.setdefault(proj, {}) proj_history = history.setdefault(proj, {})
if latest_ver not in proj_history: if _should_notify(latest_ver, proj_history):
upgrade_log = _upgrade(proj) if args.generate_change else "" upgrade_log = _upgrade(proj) if args.generate_change else ""
try: try:
_send_email(proj, latest_ver, args.recipients, upgrade_log) _send_email(proj, latest_ver, args.recipients, upgrade_log)
proj_history[latest_ver] = int(time.time()) proj_history[latest_ver] = int(time.time())
proj_history[NOTIFIED_TIME_KEY_NAME] = int(time.time())
except subprocess.CalledProcessError as err: except subprocess.CalledProcessError as err:
msg = """Failed to send email for {} ({}). msg = """Failed to send email for {} ({}).
stdout: {} stdout: {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment