2020-10-12 02:46:26 -07:00
|
|
|
const dbConnection = require('./db');
|
2020-08-04 07:15:41 -07:00
|
|
|
const SQL = require('sql-template-strings');
|
|
|
|
import { ulid } from 'ulid'
|
2020-10-15 11:55:24 -07:00
|
|
|
import authenticate from './authenticate';
|
2020-08-04 07:15:41 -07:00
|
|
|
|
|
|
|
const parseQuery = (queryString) => {
|
|
|
|
const query = {};
|
|
|
|
const pairs = (queryString[0] === '?' ? queryString.substr(1) : queryString).split('&');
|
|
|
|
for (let i = 0; i < pairs.length; i++) {
|
|
|
|
let pair = pairs[i].split('=');
|
|
|
|
query[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1] || '');
|
|
|
|
}
|
|
|
|
return query;
|
|
|
|
}
|
|
|
|
|
|
|
|
const getId = url => url.match(/\/([^/]+)$/)[1];
|
|
|
|
|
|
|
|
const approve = async (db, id) => {
|
|
|
|
const {base_id} = await db.get(SQL`SELECT base_id FROM nouns WHERE id=${id}`);
|
|
|
|
if (base_id) {
|
|
|
|
await db.get(SQL`
|
|
|
|
DELETE FROM nouns
|
|
|
|
WHERE id = ${base_id}
|
|
|
|
`);
|
|
|
|
}
|
|
|
|
await db.get(SQL`
|
|
|
|
UPDATE nouns
|
|
|
|
SET approved = 1, base_id = NULL
|
|
|
|
WHERE id = ${id}
|
|
|
|
`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const hide = async (db, id) => {
|
|
|
|
await db.get(SQL`
|
|
|
|
UPDATE nouns
|
|
|
|
SET approved = 0
|
|
|
|
WHERE id = ${id}
|
|
|
|
`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const remove = async (db, id) => {
|
|
|
|
await db.get(SQL`
|
|
|
|
DELETE FROM nouns
|
|
|
|
WHERE id = ${id}
|
|
|
|
`);
|
|
|
|
}
|
|
|
|
|
2020-08-06 06:59:08 -07:00
|
|
|
const trollWords = [
|
|
|
|
'cipeusz',
|
|
|
|
'feminazi',
|
|
|
|
'bruksela',
|
|
|
|
'zboczeń',
|
|
|
|
];
|
|
|
|
|
|
|
|
const isTroll = (body) => {
|
|
|
|
const jsonBody = JSON.stringify(body);
|
|
|
|
for (let trollWord of trollWords) {
|
|
|
|
if (jsonBody.indexOf(trollWord) > -1) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-08-04 07:15:41 -07:00
|
|
|
export default async function (req, res, next) {
|
2020-10-12 02:46:26 -07:00
|
|
|
const db = await dbConnection();
|
2020-10-15 11:55:24 -07:00
|
|
|
const user = authenticate(req);
|
|
|
|
const isAdmin = user && user.authenticated && user.roles === 'admin';
|
2020-08-04 07:15:41 -07:00
|
|
|
|
|
|
|
let result = {error: 'Not found'}
|
2020-10-15 11:55:24 -07:00
|
|
|
if (req.method === 'GET' && req.url === '/all') {
|
2020-08-04 07:15:41 -07:00
|
|
|
result = await db.all(`
|
|
|
|
SELECT * FROM nouns
|
|
|
|
${isAdmin ? '' : 'WHERE approved = 1'}
|
|
|
|
ORDER BY approved, masc
|
|
|
|
`);
|
2020-10-15 11:55:24 -07:00
|
|
|
} else if (req.method === 'POST' && req.url === '/submit') {
|
2020-08-06 06:59:08 -07:00
|
|
|
if (isAdmin || !isTroll(req.body.data)) {
|
|
|
|
const id = ulid()
|
|
|
|
await db.get(SQL`
|
|
|
|
INSERT INTO nouns (id, masc, fem, neutr, mascPl, femPl, neutrPl, approved, base_id)
|
|
|
|
VALUES (
|
|
|
|
${id},
|
|
|
|
${req.body.data.masc.join('|')}, ${req.body.data.fem.join('|')}, ${req.body.data.neutr.join('|')},
|
|
|
|
${req.body.data.mascPl.join('|')}, ${req.body.data.femPl.join('|')}, ${req.body.data.neutrPl.join('|')},
|
|
|
|
0, ${req.body.data.base}
|
|
|
|
)
|
|
|
|
`);
|
|
|
|
if (isAdmin) {
|
|
|
|
await approve(db, id);
|
|
|
|
}
|
2020-08-04 07:15:41 -07:00
|
|
|
}
|
|
|
|
result = 'ok';
|
2020-10-15 11:55:24 -07:00
|
|
|
} else if (req.method === 'POST' && req.url.startsWith('/approve/') && isAdmin) {
|
|
|
|
await approve(db, getId(req.url));
|
2020-08-04 07:15:41 -07:00
|
|
|
result = 'ok';
|
2020-10-15 11:55:24 -07:00
|
|
|
} else if (req.method === 'POST' && req.url.startsWith('/hide/') && isAdmin) {
|
|
|
|
await hide(db, getId(req.url));
|
2020-08-04 07:15:41 -07:00
|
|
|
result = 'ok';
|
2020-10-15 11:55:24 -07:00
|
|
|
} else if (req.method === 'POST' && req.url.startsWith('/remove/') && isAdmin) {
|
|
|
|
await remove(db, getId(req.url));
|
2020-08-04 07:15:41 -07:00
|
|
|
result = 'ok';
|
|
|
|
}
|
|
|
|
|
|
|
|
res.setHeader('content-type', 'application/json');
|
|
|
|
res.write(JSON.stringify(result));
|
|
|
|
res.end()
|
|
|
|
}
|