mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-12-09 21:17:15 +03:00
36 lines
1.6 KiB
TypeScript
36 lines
1.6 KiB
TypeScript
import { db } from "../databases/databases";
|
|
import { Logger } from "../utils/logger";
|
|
import { Request, Response } from "express";
|
|
import { ActionType, Category, VideoID } from "../types/segments.model";
|
|
import { getService } from "../utils/getService";
|
|
|
|
export async function getLockCategories(req: Request, res: Response): Promise<Response> {
|
|
const videoID = req.query.videoID as VideoID;
|
|
const service = getService(req.query.service as string);
|
|
const actionTypes = req.query.actionTypes as ActionType[] || [ActionType.Skip, ActionType.Mute];
|
|
|
|
if (!videoID || !Array.isArray(actionTypes)) {
|
|
//invalid request
|
|
return res.sendStatus(400);
|
|
}
|
|
try {
|
|
// Get existing lock categories markers
|
|
const row = await db.prepare("all", 'SELECT "category", "reason", "actionType" from "lockCategories" where "videoID" = ? AND "service" = ?', [videoID, service]) as {category: Category, reason: string, actionType: ActionType}[];
|
|
const actionTypeMatches = row.filter((lock) => actionTypes.includes(lock.actionType));
|
|
// map categories to array in JS becaues of SQL incompatibilities
|
|
const categories = actionTypeMatches.map(item => item.category);
|
|
if (categories.length === 0 || !categories[0]) return res.sendStatus(404);
|
|
// Get longest lock reason
|
|
const reason = actionTypeMatches.map(item => item.reason)
|
|
.reduce((a,b) => (a.length > b.length) ? a : b);
|
|
return res.send({
|
|
reason,
|
|
categories,
|
|
actionTypes
|
|
});
|
|
} catch (err) {
|
|
Logger.error(err as string);
|
|
return res.sendStatus(500);
|
|
}
|
|
}
|