in crashclouseau/datacollector.py [0:0]
def get_builds(product, channel, date):
"""Get the buildids for a product/channel prior to date"""
if channel == "nightly":
# for nightly, the strategy is pretty simple:
# - just get builds few day before (and update the old one too)
ndays = config.get_ndays()
few_days_ago = date - relativedelta(days=ndays + 5)
few_days_ago = datetime(few_days_ago.year, few_days_ago.month, few_days_ago.day)
search_buildid = [
">=" + utils.get_buildid(few_days_ago),
"<=" + utils.get_buildid(date),
]
search_date = ">=" + lmdutils.get_date_str(few_days_ago)
bids = get_buildids_from_socorro(search_buildid, search_date, product)
else:
bids = []
search_date = ""
min_date = None
data = models.Build.get_last_versions(date, channel, product, n=3)
if data:
# data are ordered by buildid (desc)
bids = [x["buildid"] for x in data]
first_date = utils.get_build_date(bids[-1])
if min_date is None or min_date > first_date:
min_date = first_date
if min_date:
search_date = ">=" + lmdutils.get_date_str(min_date)
return bids, search_date