Add firebase callable for voting
This commit is contained in:
parent
8af74e1906
commit
327410f781
@ -3,10 +3,11 @@ import {initializeApp} from "firebase-admin/app";
|
|||||||
|
|
||||||
initializeApp();
|
initializeApp();
|
||||||
|
|
||||||
import votingRoute, {activeVoteState} from "./route/voting";
|
import votingRoute, {activeVoteState, callVote} from "./route/voting";
|
||||||
import adminRoute, {getAllVotesCall} from "./route/admin";
|
import adminRoute, {getAllVotesCall} from "./route/admin";
|
||||||
|
|
||||||
export const vote = functions.https.onRequest(votingRoute);
|
export const vote = functions.https.onRequest(votingRoute);
|
||||||
export const admin = functions.https.onRequest(adminRoute);
|
export const admin = functions.https.onRequest(adminRoute);
|
||||||
export const activeVote = activeVoteState;
|
export const activeVote = activeVoteState;
|
||||||
|
export const castVote = callVote;
|
||||||
export const getAllVotes = getAllVotesCall;
|
export const getAllVotes = getAllVotesCall;
|
||||||
|
@ -12,28 +12,26 @@ import {
|
|||||||
} from "../types/vote";
|
} from "../types/vote";
|
||||||
import {updateVoteCount} from "../types/state";
|
import {updateVoteCount} from "../types/state";
|
||||||
|
|
||||||
|
type VoteResult = {success: true} | {error: string, code: number};
|
||||||
|
|
||||||
const app = express();
|
const app = express();
|
||||||
|
|
||||||
app.post("/", async (req: Request, res: Response) => {
|
const vote = async (
|
||||||
const voteId = req.body.voteId as string | undefined;
|
voteId: string | undefined,
|
||||||
const voter = req.body.voter as string | undefined;
|
voter: string | undefined,
|
||||||
const voteIndex = parseInt((req.body.voteIndex as string | undefined) ?? "");
|
voteIndex: number
|
||||||
|
): Promise<VoteResult> => {
|
||||||
if (!voteId) {
|
if (!voteId) {
|
||||||
res.status(400).json({error: "Missing voteId"});
|
return {error: "Missing voteId", code: 400};
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!voter) {
|
if (!voter) {
|
||||||
res.status(400).json({error: "Missing voter"});
|
return {error: "Missing voter", code: 400};
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const vote = await getVoteSnapshot(voteId);
|
const vote = await getVoteSnapshot(voteId);
|
||||||
if (!vote.exists) {
|
if (!vote.exists) {
|
||||||
res.status(404).json({error: "Vote not found"});
|
return {error: "Vote not found", code: 404};
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
@ -41,21 +39,29 @@ app.post("/", async (req: Request, res: Response) => {
|
|||||||
voteIndex < 0 ||
|
voteIndex < 0 ||
|
||||||
voteIndex >= (vote.data()?.options ?? []).length
|
voteIndex >= (vote.data()?.options ?? []).length
|
||||||
) {
|
) {
|
||||||
res.status(400).json({error: "Invalid vote index"});
|
return {error: "Invalid vote index", code: 400};
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const entry = await getVoteEntry(vote.ref, voter);
|
const entry = await getVoteEntry(vote.ref, voter);
|
||||||
if (!entry) {
|
if (!entry) {
|
||||||
await makeVoteEntry(vote.ref, voter, voteIndex);
|
await makeVoteEntry(vote.ref, voter, voteIndex);
|
||||||
await updateVoteCount();
|
await updateVoteCount();
|
||||||
res.json({success: true});
|
return {success: true};
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await updateVoteEntry(entry, voteIndex);
|
await updateVoteEntry(entry, voteIndex);
|
||||||
await updateVoteCount();
|
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) => {
|
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;
|
export default app;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user