Fix race-condition in voting

This commit is contained in:
Gabriel Tofvesson 2022-10-25 05:04:24 +02:00
parent 8ea3606dbb
commit c9b2d7d62e
2 changed files with 4 additions and 12 deletions

View File

@ -4,8 +4,6 @@ import {
getEntriesFromSnapshot, getEntriesFromSnapshot,
getVoteSnapshot, getVoteSnapshot,
getVoteCounts, getVoteCounts,
getVoteEntry,
makeVoteEntry,
updateVoteEntry, updateVoteEntry,
getVote, getVote,
getActiveVote, getActiveVote,
@ -42,14 +40,7 @@ const vote = async (
return {error: "Invalid vote index", code: 400}; return {error: "Invalid vote index", code: 400};
} }
const entry = await getVoteEntry(vote.ref, voter); await updateVoteEntry(vote, voter, voteIndex);
if (!entry) {
await makeVoteEntry(vote.ref, voter, voteIndex);
await updateVoteCount();
return {success: true};
}
await updateVoteEntry(entry, voteIndex);
await updateVoteCount(); await updateVoteCount();
return {success: true}; return {success: true};
}; };

View File

@ -43,10 +43,11 @@ export const getVoteEntry = async (
.where(usernameField, "==", username) .where(usernameField, "==", username)
.get() as QuerySnapshot<VoteEntry>).docs[0]?.ref; .get() as QuerySnapshot<VoteEntry>).docs[0]?.ref;
export const updateVoteEntry = async ( export const updateVoteEntry = async (
vote: DocumentReference<VoteEntry>, vote: DocumentSnapshot<Vote>,
username: string,
voteIndex: number voteIndex: number
) => ) =>
vote.update({[voteIndexField]: voteIndex}); vote.ref.collection(entriesCollectionName).doc(username).set({[voteIndexField]: voteIndex});
export const makeVoteEntry = async ( export const makeVoteEntry = async (
vote: DocumentReference<Vote>, vote: DocumentReference<Vote>,
username: string, username: string,