mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-23 12:43:48 -04:00
213 lines
6.6 KiB
TypeScript
213 lines
6.6 KiB
TypeScript
import { Router } from 'express';
|
|
import type { Request } from 'express';
|
|
import SQL from 'sql-template-strings';
|
|
import { ulid } from 'ulid';
|
|
|
|
import { clearKey, handleErrorAsync } from '../../src/helpers.ts';
|
|
import { auditLog } from '../audit.ts';
|
|
import type { Database } from '../db.ts';
|
|
|
|
export interface SourceRow {
|
|
id: string;
|
|
locale: string;
|
|
pronouns: string;
|
|
type: string;
|
|
author: string | null;
|
|
title: string;
|
|
extra: string | null;
|
|
year: number | null;
|
|
fragments: string;
|
|
comment: string | null;
|
|
link: string | null;
|
|
submitter_id: string | null;
|
|
approved: number | null;
|
|
deleted: number | null;
|
|
base_id: string | null;
|
|
key: string | null;
|
|
images: string | null;
|
|
spoiler: string;
|
|
}
|
|
|
|
const approve = async (db: Database, id: string) => {
|
|
const { base_id } = (await db.get<Pick<SourceRow, 'base_id'>>(SQL`SELECT base_id FROM sources WHERE id=${id}`))!;
|
|
if (base_id) {
|
|
await db.get(SQL`
|
|
UPDATE sources
|
|
SET deleted=1
|
|
WHERE id = ${base_id}
|
|
`);
|
|
}
|
|
await db.get(SQL`
|
|
UPDATE sources
|
|
SET approved = 1, base_id = NULL
|
|
WHERE id = ${id}
|
|
`);
|
|
await invalidateCache('sources');
|
|
await invalidateCache('search', 'source');
|
|
};
|
|
|
|
const keyGetMain = (key: string): string => {
|
|
return key.split('/')[0];
|
|
};
|
|
|
|
const linkOtherVersions = async (db: Database, isGranted: Request['isGranted'], sources: SourceRow[]) => {
|
|
const keys = new Set(sources.filter((s) => !!s && s.key).map((s) => keyGetMain(clearKey(s.key)!)));
|
|
|
|
let sql = SQL`
|
|
SELECT s.*, u.username AS submitter FROM sources s
|
|
LEFT JOIN users u ON s.submitter_id = u.id
|
|
WHERE s.locale != ${global.config.locale}
|
|
AND s.deleted = 0
|
|
AND s.approved >= ${isGranted('sources') ? 0 : 1}
|
|
AND (`;
|
|
for (const key of keys) {
|
|
sql = sql.append(SQL`s.key = ${key} OR s.key LIKE ${`${key}/%`} OR `);
|
|
}
|
|
sql = sql.append(SQL`0=1)`);
|
|
|
|
const otherVersions = await db.all<SourceRow>(sql);
|
|
|
|
const otherVersionsMap: Record<string, SourceRow[]> = {};
|
|
otherVersions.forEach((version) => {
|
|
const k = keyGetMain(version.key!);
|
|
if (otherVersionsMap[k] === undefined) {
|
|
otherVersionsMap[k] = [];
|
|
}
|
|
otherVersionsMap[k].push(version);
|
|
});
|
|
|
|
return sources.map((s) => ({
|
|
...s,
|
|
versions: s.key ? otherVersionsMap[keyGetMain(s.key)] || [] : [],
|
|
}));
|
|
};
|
|
|
|
const router = Router();
|
|
|
|
export const getSourcesEntries = defineCachedFunction(async (
|
|
db: Database,
|
|
isGranted: Request['isGranted'],
|
|
pronounsFilter: string | undefined,
|
|
) => {
|
|
const sql = SQL`
|
|
SELECT s.*, u.username AS submitter FROM sources s
|
|
LEFT JOIN users u ON s.submitter_id = u.id
|
|
WHERE s.locale = ${global.config.locale}
|
|
AND s.deleted = 0
|
|
AND s.approved >= ${isGranted('sources') ? 0 : 1}
|
|
`;
|
|
if (pronounsFilter) {
|
|
sql.append(SQL`AND s.pronouns LIKE ${`%${pronounsFilter}%`}`);
|
|
}
|
|
return await linkOtherVersions(db, isGranted, await db.all(sql));
|
|
}, {
|
|
name: 'sources',
|
|
getKey: (db, isGranted, pronounsFilter) => pronounsFilter ? `pronouns:${pronounsFilter}` : 'default',
|
|
shouldBypassCache: (db, isGranted) => isGranted('sources'),
|
|
maxAge: 24 * 60 * 60,
|
|
});
|
|
|
|
router.get('/sources', handleErrorAsync(async (req, res) => {
|
|
const pronounsFilter = req.query.pronoun as string | undefined;
|
|
return res.json(await getSourcesEntries(req.db, req.isGranted, pronounsFilter));
|
|
}));
|
|
|
|
router.post('/sources/submit', handleErrorAsync(async (req, res) => {
|
|
if (!req.user || !await req.isUserAllowedToPost()) {
|
|
return res.status(401).json({ error: 'Unauthorised' });
|
|
}
|
|
|
|
const id = ulid();
|
|
await req.db.get(SQL`
|
|
INSERT INTO sources (id, locale, pronouns, type, author, title, extra, year, fragments, comment, link, key, images, spoiler, submitter_id, base_id)
|
|
VALUES (
|
|
${id}, ${global.config.locale}, ${req.body.pronouns.join(';')},
|
|
${req.body.type}, ${req.body.author}, ${req.body.title}, ${req.body.extra}, ${req.body.year},
|
|
${req.body.fragments.join('@').replace(/\n/g, '|')}, ${req.body.comment}, ${req.body.link},
|
|
${clearKey(req.body.key)}, ${req.body.images ? req.body.images.join(',') : null}, ${req.body.spoiler ? 1 : 0},
|
|
${req.user ? req.user.id : null}, ${req.body.base}
|
|
)
|
|
`);
|
|
await auditLog(req, 'sources/submitted', { ...req.body });
|
|
|
|
if (req.isGranted('sources')) {
|
|
await approve(req.db, id);
|
|
await auditLog(req, 'sources/approved', { id });
|
|
}
|
|
|
|
return res.json('ok');
|
|
}));
|
|
|
|
router.post('/sources/hide/:id', handleErrorAsync(async (req, res) => {
|
|
if (!req.isGranted('sources')) {
|
|
return res.status(401).json({ error: 'Unauthorised' });
|
|
}
|
|
|
|
await req.db.get(SQL`
|
|
UPDATE sources
|
|
SET approved = 0
|
|
WHERE id = ${req.params.id}
|
|
`);
|
|
|
|
await auditLog(req, 'sources/hidden', { id: req.params.id });
|
|
|
|
return res.json('ok');
|
|
}));
|
|
|
|
router.post('/sources/approve/:id', handleErrorAsync(async (req, res) => {
|
|
if (!req.isGranted('sources')) {
|
|
return res.status(401).json({ error: 'Unauthorised' });
|
|
}
|
|
|
|
await approve(req.db, req.params.id);
|
|
|
|
await auditLog(req, 'sources/approved', { id: req.params.id });
|
|
|
|
return res.json('ok');
|
|
}));
|
|
|
|
router.post('/sources/remove/:id', handleErrorAsync(async (req, res) => {
|
|
if (!req.isGranted('sources')) {
|
|
return res.status(401).json({ error: 'Unauthorised' });
|
|
}
|
|
|
|
await req.db.get(SQL`
|
|
UPDATE sources
|
|
SET deleted=1
|
|
WHERE id = ${req.params.id}
|
|
`);
|
|
|
|
await auditLog(req, 'sources/removed', { id: req.params.id });
|
|
|
|
return res.json('ok');
|
|
}));
|
|
|
|
router.get('/sources/keys', handleErrorAsync(async (req, res) => {
|
|
const keys = await req.db.all<{ key: string }>(SQL`
|
|
SELECT trim(key) AS key
|
|
FROM sources
|
|
WHERE key IS NOT NULL
|
|
AND deleted = 0
|
|
AND approved = 1
|
|
GROUP BY key
|
|
ORDER BY key
|
|
`);
|
|
|
|
return res.json(
|
|
Object.fromEntries(keys.map((k) => [k.key, k.key])),
|
|
);
|
|
}));
|
|
|
|
router.get('/sources/:id', handleErrorAsync(async (req, res) => {
|
|
return res.json(await linkOtherVersions(req.db, req.isGranted, await req.db.all(SQL`
|
|
SELECT s.*, u.username AS submitter FROM sources s
|
|
LEFT JOIN users u ON s.submitter_id = u.id
|
|
WHERE s.locale = ${global.config.locale}
|
|
AND s.deleted = 0
|
|
AND s.approved >= ${req.isGranted('sources') ? 0 : 1}
|
|
AND s.id = ${req.params.id}
|
|
`)));
|
|
}));
|
|
|
|
export default router;
|