I have a GAE app for voting, where each voter is sent a unique key via email and then uses that key to vote at a web page. I'd like to ensure that each voter can only cast one vote, and also that the vote remains anonymous.
I have a Voter class with an attribute has_voted and a Vote class with an attribute for the vote. I want the votes to be anonymous so I don't want one to be a parent of the other.
I tried updating both using a transaction, e.g.,
def put_vote_transaction(vkey, vote):
voter = Voter.get(vkey)
if voter.has_voted:
return False
else:
voter.has_voted = True
db.put([voter, vote])
return True
but this doesn't work because the voter and vote are in different entity groups.
How can I ensure that each voter can cast only one vote but keep that one vote anonymous?