def indict(defendant): from r2.models import Trial tk = trial_key(defendant) rv = False if defendant._deleted: result = "already deleted" elif getattr(defendant, "promoted", None) is not None: result = "it's promoted" elif hasattr(defendant, "verdict") and defendant.verdict is not None: result = "it already has a verdict" elif g.hardcache.get(tk): result = "it's already on trial" else: # The spams/koshers dict is just a infrequently-updated cache; the # official source of the data is the Jury relation. g.hardcache.set(tk, dict(spams=0, koshers=0), TRIAL_TIME) Trial.all_defendants(_update=True) result = "it's now indicted: %s" % tk rv = True log_text("indict_result", "%s: %s" % (defendant._id36, result), level="info") return rv
def end_trial(thing, verdict=None): from r2.models import Trial if trial_info(thing): g.hardcache.delete(trial_key(thing)) Trial.all_defendants(_update=True) if verdict is not None: thing.verdict = verdict thing._commit()
def look_for_verdicts(): from r2.models import Trial print "checking all trials for verdicts..." for defendant in Trial.all_defendants(): print "Looking at reddit.com/comments/%s/x" % defendant._id36 v = Trial(defendant).check_verdict() print "Verdict: %r" % v
def look_for_verdicts(): from r2.models import Trial, Jury print "checking all trials for verdicts..." for defendant in Trial.all_defendants(): print "Looking at populr.de/comments/%s/x" % defendant._id36 v = Trial(defendant).check_verdict() print "Verdict: %r" % v Jury.delete_old(verbose=True, limit=1000)
def look_for_verdicts(): from r2.models import Trial, Jury print "checking all trials for verdicts..." for defendant in Trial.all_defendants(): print "Looking at reddit.com/comments/%s/x" % defendant._id36 v = Trial(defendant).check_verdict() print "Verdict: %r" % v Jury.delete_old(verbose=True, limit=1000)
def assign_trial(account, ip, slash16): from r2.models import Jury, Subreddit, Trial from r2.lib.db import queries defendants_voted_upon = [] defendants_assigned_to = [] for jury in Jury.by_account(account): defendants_assigned_to.append(jury._thing2_id) if jury._name != '0': defendants_voted_upon.append(jury._thing2_id) subscribed_sr_ids = Subreddit.user_subreddits(account, ids=True, limit=None) # Pull defendants, except ones which already have lots of juryvotes defs = Trial.all_defendants(quench=True) # Filter out defendants outside this user's subscribed SRs defs = filter(lambda d: d.sr_id in subscribed_sr_ids, defs) # Dictionary of sr_id => SR for all defendants' SRs srs = Subreddit._byID(set([d.sr_id for d in defs])) # Dictionary of sr_id => eligibility bool submit_srs = {} for sr_id, sr in srs.iteritems(): submit_srs[sr_id] = sr.can_submit(account) and not sr._spam # Filter out defendants with ineligible SRs defs = filter(lambda d: submit_srs.get(d.sr_id), defs) likes = queries.get_likes(account, defs) if not g.debug: # Filter out things that the user has upvoted or downvoted defs = filter(lambda d: likes.get((account, d)) is None, defs) # Prefer oldest trials defs.sort(key=lambda x: x._date) for defendant in defs: sr = srs[defendant.sr_id] if voir_dire(account, ip, slash16, defendants_voted_upon, defendant, sr): if defendant._id not in defendants_assigned_to: j = Jury._new(account, defendant) return defendant return None
def assign_trial(account, ip, slash16): from r2.models import Jury, Subreddit, Trial from r2.lib.db import queries defendants_voted_upon = [] defendants_assigned_to = [] for jury in Jury.by_account(account): defendants_assigned_to.append(jury._thing2_id) if jury._name != '0': defendants_voted_upon.append(jury._thing2_id) subscribed_sr_ids = Subreddit.user_subreddits(account, ids=True, limit=None) # Pull defendants, except ones which already have lots of juryvotes defs = Trial.all_defendants(quench=True) # Filter out defendants outside this user's subscribed SRs defs = filter (lambda d: d.sr_id in subscribed_sr_ids, defs) # Dictionary of sr_id => SR for all defendants' SRs srs = Subreddit._byID(set([ d.sr_id for d in defs ])) # Dictionary of sr_id => eligibility bool submit_srs = {} for sr_id, sr in srs.iteritems(): submit_srs[sr_id] = sr.can_submit(account) and not sr._spam # Filter out defendants with ineligible SRs defs = filter (lambda d: submit_srs.get(d.sr_id), defs) likes = queries.get_likes(account, defs) if not g.debug: # Filter out things that the user has upvoted or downvoted defs = filter (lambda d: likes.get((account, d)) is None, defs) # Prefer oldest trials defs.sort(key=lambda x: x._date) for defendant in defs: sr = srs[defendant.sr_id] if voir_dire(account, ip, slash16, defendants_voted_upon, defendant, sr): if defendant._id not in defendants_assigned_to: j = Jury._new(account, defendant) return defendant return None