This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/server/routes/census.js

78 lines
2.1 KiB
JavaScript
Raw Normal View History

2020-12-18 02:34:58 -08:00
import { Router } from 'express';
import SQL from 'sql-template-strings';
import sha1 from 'sha1';
import {ulid} from "ulid";
const getIp = req => {
try {
return req.headers['x-forwarded-for'] || req.connection.remoteAddress || req.ips.join(',') || req.ip;
} catch {
return '';
}
}
2020-12-18 02:34:58 -08:00
const buildFingerprint = req => sha1(`
${getIp(req)}
2020-12-18 02:34:58 -08:00
${req.headers['user-agent']}
${req.headers['accept-language']}
`);
const hasFinished = async req => {
if (req.user) {
const byUser = await req.db.get(SQL`
SELECT * FROM census
WHERE locale = ${req.config.locale}
AND edition = ${req.config.census.edition}
AND userId = ${req.user.id}
`);
return !!byUser;
2020-12-18 02:34:58 -08:00
}
const fingerprint = buildFingerprint(req);
const byFingerprint = await req.db.get(SQL`
SELECT * FROM census
WHERE locale = ${req.config.locale}
AND edition = ${req.config.census.edition}
AND fingerprint = ${fingerprint}
AND userId IS NULL
2020-12-18 02:34:58 -08:00
`);
return !!byFingerprint;
2020-12-18 02:34:58 -08:00
}
const router = Router();
router.get('/census/finished', async (req, res) => {
return res.json(await hasFinished(req));
});
router.post('/census/submit', async (req, res) => {
const suspicious = await hasFinished(req);
2020-12-18 02:34:58 -08:00
const id = ulid();
await req.db.get(SQL`INSERT INTO census (id, locale, edition, userId, fingerprint, answers, writins, ip, userAgent, acceptLanguage, suspicious) VALUES (
2020-12-18 02:34:58 -08:00
${id},
${req.config.locale},
${req.config.census.edition},
${req.user ? req.user.id : null},
${buildFingerprint(req)},
${req.body.answers},
${req.body.writins},
${getIp(req)},
${req.headers['user-agent']},
${req.headers['accept-language']},
${suspicious}
2020-12-18 02:34:58 -08:00
)`);
return res.json(id);
});
2020-12-18 08:41:01 -08:00
router.get('/census/count', async (req, res) => {
return res.json((await req.db.get(SQL`
SELECT COUNT(*) as c FROM census
WHERE locale = ${req.config.locale}
AND edition = ${req.config.census.edition}
`)).c);
});
2020-12-18 02:34:58 -08:00
export default router;