Add firebase callable for voting

This commit is contained in:
Gabriel Tofvesson 2022-10-22 20:45:34 +02:00
parent 8af74e1906
commit 327410f781
2 changed files with 33 additions and 17 deletions

View File

@ -3,10 +3,11 @@ import {initializeApp} from "firebase-admin/app";
initializeApp();
import votingRoute, {activeVoteState} from "./route/voting";
import votingRoute, {activeVoteState, callVote} from "./route/voting";
import adminRoute, {getAllVotesCall} from "./route/admin";
export const vote = functions.https.onRequest(votingRoute);
export const admin = functions.https.onRequest(adminRoute);
export const activeVote = activeVoteState;
export const castVote = callVote;
export const getAllVotes = getAllVotesCall;

View File

@ -12,28 +12,26 @@ import {
} from "../types/vote";
import {updateVoteCount} from "../types/state";
type VoteResult = {success: true} | {error: string, code: number};
const app = express();
app.post("/", async (req: Request, res: Response) => {
const voteId = req.body.voteId as string | undefined;
const voter = req.body.voter as string | undefined;
const voteIndex = parseInt((req.body.voteIndex as string | undefined) ?? "");
const vote = async (
voteId: string | undefined,
voter: string | undefined,
voteIndex: number
): Promise<VoteResult> => {
if (!voteId) {
res.status(400).json({error: "Missing voteId"});
return;
return {error: "Missing voteId", code: 400};
}
if (!voter) {
res.status(400).json({error: "Missing voter"});
return;
return {error: "Missing voter", code: 400};
}
const vote = await getVoteSnapshot(voteId);
if (!vote.exists) {
res.status(404).json({error: "Vote not found"});
return;
return {error: "Vote not found", code: 404};
}
if (
@ -41,21 +39,29 @@ app.post("/", async (req: Request, res: Response) => {
voteIndex < 0 ||
voteIndex >= (vote.data()?.options ?? []).length
) {
res.status(400).json({error: "Invalid vote index"});
return;
return {error: "Invalid vote index", code: 400};
}
const entry = await getVoteEntry(vote.ref, voter);
if (!entry) {
await makeVoteEntry(vote.ref, voter, voteIndex);
await updateVoteCount();
res.json({success: true});
return;
return {success: true};
}
await updateVoteEntry(entry, voteIndex);
await updateVoteCount();
res.json({success: true});
return {success: true};
};
app.post("/", async (req: Request, res: Response) => {
const voteId = req.body.voteId as string | undefined;
const voter = req.body.voter as string | undefined;
const voteIndex = parseInt((req.body.voteIndex as string | undefined) ?? "");
const result = await vote(voteId, voter, voteIndex);
if ("error" in result) res.status(result.code).json({error: result.error});
else res.json(result);
});
app.get("/", async (req: Request, res: Response) => {
@ -139,4 +145,13 @@ export const activeVoteState = functions.https.onCall(async () => {
};
});
export const callVote = functions.https.onCall(async (data) => {
const voteId = data.voteId as string | undefined;
const voter = data.voter as string | undefined;
const voteIndex = parseInt((data.voteIndex as string | undefined) ?? "");
const result = await vote(voteId, voter, voteIndex);
return "error" in result ? {error: result.error} : {success: true};
});
export default app;