def vote_for_structure_node(user, node, consent=None, wording=None): # get subtree textnodes = node.get_active_subtree() all_nodes = textnodes[:] # check if there is already a vote votes = Vote.objects.filter(user=user, text__in=textnodes) if votes : for v in votes: # overwrite values if consent is not None: v.consent = consent if wording is not None: v.wording = wording v.full_clean() v.time = datetime.now() v.save() # remove text from textnodes textnodes.remove(v.text) for n in textnodes: v = Vote() v.user = user v.text = n v.consent = 0 if consent is None else consent v.wording = 0 if wording is None else wording v.full_clean() v.save() for n in all_nodes: adjust_vote_caches(n)
def add_auto_upvote(user, text): auto_upvote = Vote() auto_upvote.consent = 1 auto_upvote.wording = 1 auto_upvote.user = user auto_upvote.text = text auto_upvote.save()
def vote_for_textNode(user, node, consent=None, wording=None): # check if there is already a vote votes = Vote.objects.filter(user=user, text=node) if votes: # overwrite values v = votes[0] if consent is not None: v.consent = consent if wording is not None: v.wording = wording v.time = datetime.now() v.full_clean() v.save() else: # create a new vote v = Vote() v.user = user v.text = node v.consent = 0 if consent is None else consent v.wording = 0 if wording is None else wording v.full_clean() v.save() adjust_vote_caches(node)