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";
|
2021-02-02 07:49:49 -08:00
|
|
|
import Papa from 'papaparse';
|
2021-06-09 05:47:08 -07:00
|
|
|
import {handleErrorAsync} from "../../src/helpers";
|
2020-12-18 02:34:58 -08:00
|
|
|
|
2021-02-01 02:17:26 -08:00
|
|
|
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(`
|
2021-02-01 02:17:26 -08:00
|
|
|
${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
|
2021-06-17 16:10:59 -07:00
|
|
|
WHERE locale = ${global.config.locale}
|
|
|
|
AND edition = ${global.config.census.edition}
|
2020-12-18 02:34:58 -08:00
|
|
|
AND userId = ${req.user.id}
|
|
|
|
`);
|
2021-02-01 01:35:06 -08:00
|
|
|
return !!byUser;
|
2020-12-18 02:34:58 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
const fingerprint = buildFingerprint(req);
|
|
|
|
const byFingerprint = await req.db.get(SQL`
|
|
|
|
SELECT * FROM census
|
2021-06-17 16:10:59 -07:00
|
|
|
WHERE locale = ${global.config.locale}
|
|
|
|
AND edition = ${global.config.census.edition}
|
2020-12-18 02:34:58 -08:00
|
|
|
AND fingerprint = ${fingerprint}
|
2021-02-01 01:41:13 -08:00
|
|
|
AND userId IS NULL
|
2020-12-18 02:34:58 -08:00
|
|
|
`);
|
2021-02-01 01:41:13 -08:00
|
|
|
return !!byFingerprint;
|
2020-12-18 02:34:58 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
const router = Router();
|
|
|
|
|
2021-06-09 05:47:08 -07:00
|
|
|
router.get('/census/finished', handleErrorAsync(async (req, res) => {
|
2020-12-18 02:34:58 -08:00
|
|
|
return res.json(await hasFinished(req));
|
2021-06-09 05:47:08 -07:00
|
|
|
}));
|
2020-12-18 02:34:58 -08:00
|
|
|
|
2021-06-09 05:47:08 -07:00
|
|
|
router.post('/census/submit', handleErrorAsync(async (req, res) => {
|
2021-02-01 02:02:57 -08:00
|
|
|
const suspicious = await hasFinished(req);
|
2020-12-18 02:34:58 -08:00
|
|
|
|
|
|
|
const id = ulid();
|
2021-02-01 02:02:57 -08:00
|
|
|
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},
|
2021-06-17 16:10:59 -07:00
|
|
|
${global.config.locale},
|
|
|
|
${global.config.census.edition},
|
2020-12-18 02:34:58 -08:00
|
|
|
${req.user ? req.user.id : null},
|
|
|
|
${buildFingerprint(req)},
|
|
|
|
${req.body.answers},
|
2021-02-01 02:02:57 -08:00
|
|
|
${req.body.writins},
|
2021-02-06 11:57:44 -08:00
|
|
|
null,
|
|
|
|
null,
|
|
|
|
null,
|
2021-02-01 02:02:57 -08:00
|
|
|
${suspicious}
|
2020-12-18 02:34:58 -08:00
|
|
|
)`);
|
|
|
|
|
|
|
|
return res.json(id);
|
2021-06-09 05:47:08 -07:00
|
|
|
}));
|
2020-12-18 02:34:58 -08:00
|
|
|
|
2021-06-09 05:47:08 -07:00
|
|
|
router.get('/census/count', handleErrorAsync(async (req, res) => {
|
2020-12-18 08:41:01 -08:00
|
|
|
return res.json((await req.db.get(SQL`
|
|
|
|
SELECT COUNT(*) as c FROM census
|
2021-06-17 16:10:59 -07:00
|
|
|
WHERE locale = ${global.config.locale}
|
|
|
|
AND edition = ${global.config.census.edition}
|
2020-12-18 08:41:01 -08:00
|
|
|
`)).c);
|
2021-06-09 05:47:08 -07:00
|
|
|
}));
|
2020-12-18 08:41:01 -08:00
|
|
|
|
2021-06-09 05:47:08 -07:00
|
|
|
router.get('/census/export', handleErrorAsync(async (req, res) => {
|
2021-02-02 07:49:49 -08:00
|
|
|
if (!req.isGranted('census')) {
|
2021-12-02 10:11:04 -08:00
|
|
|
return res.status(401).json({error: 'Unauthorised'});
|
2021-02-02 07:49:49 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
const report = [];
|
|
|
|
for (let {answers, writins} of await req.db.all(SQL`
|
|
|
|
SELECT answers, writins FROM census
|
2021-06-17 16:10:59 -07:00
|
|
|
WHERE locale = ${global.config.locale}
|
|
|
|
AND edition = ${global.config.census.edition}
|
2021-02-02 07:49:49 -08:00
|
|
|
AND suspicious = 0
|
|
|
|
`)) {
|
|
|
|
answers = JSON.parse(answers);
|
|
|
|
writins = JSON.parse(writins);
|
|
|
|
|
|
|
|
const answer = {};
|
|
|
|
let i = 0;
|
|
|
|
for (let question of config.census.questions) {
|
|
|
|
if (question.type === 'checkbox') {
|
|
|
|
for (let [option, comment] of question.options) {
|
2021-02-02 08:42:40 -08:00
|
|
|
answer[`${i}_${option}`] = (answers[i.toString()] || []).includes(option) ? 1 : '';
|
2021-02-02 07:49:49 -08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
answer[`${i}_`] = answers[i.toString()] || '';
|
|
|
|
}
|
|
|
|
if (question.writein) {
|
2021-02-02 08:42:40 -08:00
|
|
|
answer[`${i}__writein`] = writins[i.toString()] || '';
|
2021-02-02 07:49:49 -08:00
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
report.push(answer);
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.set('content-type', 'text/csv').send(Papa.unparse(report));
|
2021-06-09 05:47:08 -07:00
|
|
|
}));
|
2021-02-02 07:49:49 -08:00
|
|
|
|
2020-12-18 02:34:58 -08:00
|
|
|
export default router;
|