mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 01:02:30 +01:00
Add lock category reason
This commit is contained in:
parent
e94d1d4bae
commit
14f55c9ee5
5 changed files with 177 additions and 22 deletions
|
@ -92,6 +92,7 @@
|
||||||
| userID | TEXT | not null |
|
| userID | TEXT | not null |
|
||||||
| category | TEXT | not null |
|
| category | TEXT | not null |
|
||||||
| hashedVideoID | TEXT | not null, default '' |
|
| hashedVideoID | TEXT | not null, default '' |
|
||||||
|
| reason | TEXT | not null, default '' |
|
||||||
|
|
||||||
| index | field |
|
| index | field |
|
||||||
| -- | :--: |
|
| -- | :--: |
|
||||||
|
|
8
databases/_upgrade_sponsorTimes_20.sql
Normal file
8
databases/_upgrade_sponsorTimes_20.sql
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
BEGIN TRANSACTION;
|
||||||
|
|
||||||
|
/* Add hash field */
|
||||||
|
ALTER TABLE "lockCategories" ADD "reason" TEXT NOT NULL default '';
|
||||||
|
|
||||||
|
UPDATE "config" SET value = 20 WHERE key = 'version';
|
||||||
|
|
||||||
|
COMMIT;
|
|
@ -10,6 +10,7 @@ export async function postLockCategories(req: Request, res: Response): Promise<s
|
||||||
const videoID = req.body.videoID;
|
const videoID = req.body.videoID;
|
||||||
let userID = req.body.userID;
|
let userID = req.body.userID;
|
||||||
const categories = req.body.categories;
|
const categories = req.body.categories;
|
||||||
|
const reason: string = req.body.reason ?? '';
|
||||||
|
|
||||||
// Check input data is valid
|
// Check input data is valid
|
||||||
if (!videoID
|
if (!videoID
|
||||||
|
@ -46,15 +47,16 @@ export async function postLockCategories(req: Request, res: Response): Promise<s
|
||||||
}
|
}
|
||||||
|
|
||||||
// get user categories not already submitted that match accepted format
|
// get user categories not already submitted that match accepted format
|
||||||
let categoriesToMark = categories.filter((category) => {
|
let filteredCategories = categories.filter((category) => {
|
||||||
return !!category.match(/^[_a-zA-Z]+$/);
|
return !!category.match(/^[_a-zA-Z]+$/);
|
||||||
}).filter((category) => {
|
});
|
||||||
return noCategoryList.indexOf(category) === -1;
|
// remove any duplicates
|
||||||
|
filteredCategories = filteredCategories.filter((category, index) => {
|
||||||
|
return filteredCategories.indexOf(category) === index;
|
||||||
});
|
});
|
||||||
|
|
||||||
// remove any duplicates
|
const categoriesToMark = filteredCategories.filter((category) => {
|
||||||
categoriesToMark = categoriesToMark.filter((category, index) => {
|
return noCategoryList.indexOf(category) === -1;
|
||||||
return categoriesToMark.indexOf(category) === index;
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// calculate hash of videoID
|
// calculate hash of videoID
|
||||||
|
@ -63,7 +65,7 @@ export async function postLockCategories(req: Request, res: Response): Promise<s
|
||||||
// create database entry
|
// create database entry
|
||||||
for (const category of categoriesToMark) {
|
for (const category of categoriesToMark) {
|
||||||
try {
|
try {
|
||||||
await db.prepare('run', `INSERT INTO "lockCategories" ("videoID", "userID", "category", "hashedVideoID") VALUES(?, ?, ?, ?)`, [videoID, userID, category, hashedVideoID]);
|
await db.prepare('run', `INSERT INTO "lockCategories" ("videoID", "userID", "category", "hashedVideoID", "reason") VALUES(?, ?, ?, ?, ?)`, [videoID, userID, category, hashedVideoID, reason]);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
Logger.error("Error submitting 'lockCategories' marker for category '" + category + "' for video '" + videoID + "'");
|
Logger.error("Error submitting 'lockCategories' marker for category '" + category + "' for video '" + videoID + "'");
|
||||||
Logger.error(err);
|
Logger.error(err);
|
||||||
|
@ -73,7 +75,29 @@ export async function postLockCategories(req: Request, res: Response): Promise<s
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// update reason for existed categories
|
||||||
|
let overlapCategories = [];
|
||||||
|
if (reason.length !== 0) {
|
||||||
|
overlapCategories = filteredCategories.filter((category) => {
|
||||||
|
return noCategoryList.indexOf(category) !== -1;
|
||||||
|
});
|
||||||
|
|
||||||
|
for (const category of overlapCategories) {
|
||||||
|
try {
|
||||||
|
await db.prepare('run',
|
||||||
|
'UPDATE "lockCategories" SET "reason" = ?, "userID" = ? WHERE "videoID" = ? AND "category" = ?',
|
||||||
|
[reason, userID, videoID, category]);
|
||||||
|
} catch (err) {
|
||||||
|
Logger.error("Error submitting 'lockCategories' marker for category '" + category + "' for video '" + videoID + "'");
|
||||||
|
Logger.error(err);
|
||||||
|
res.status(500).json({
|
||||||
|
message: "Internal Server Error: Could not write marker to the database.",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
res.status(200).json({
|
res.status(200).json({
|
||||||
submitted: categoriesToMark,
|
submitted: [...categoriesToMark, ...overlapCategories],
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -93,3 +93,10 @@ export enum CategoryActionType {
|
||||||
Skippable,
|
Skippable,
|
||||||
POI
|
POI
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface LockCategory {
|
||||||
|
category: Category,
|
||||||
|
reason: string,
|
||||||
|
videoID: VideoID,
|
||||||
|
userID: UserID
|
||||||
|
}
|
|
@ -2,6 +2,7 @@ import fetch from 'node-fetch';
|
||||||
import {Done, getbaseURL} from '../utils';
|
import {Done, getbaseURL} from '../utils';
|
||||||
import {getHash} from '../../src/utils/getHash';
|
import {getHash} from '../../src/utils/getHash';
|
||||||
import {db} from '../../src/databases/databases';
|
import {db} from '../../src/databases/databases';
|
||||||
|
import {LockCategory} from '../../src/types/segments.model';
|
||||||
|
|
||||||
|
|
||||||
describe('lockCategoriesRecords', () => {
|
describe('lockCategoriesRecords', () => {
|
||||||
|
@ -9,18 +10,18 @@ describe('lockCategoriesRecords', () => {
|
||||||
const insertVipUserQuery = 'INSERT INTO "vipUsers" ("userID") VALUES (?)';
|
const insertVipUserQuery = 'INSERT INTO "vipUsers" ("userID") VALUES (?)';
|
||||||
await db.prepare("run", insertVipUserQuery, [getHash("VIPUser-lockCategories")]);
|
await db.prepare("run", insertVipUserQuery, [getHash("VIPUser-lockCategories")]);
|
||||||
|
|
||||||
const insertLockCategoryQuery = 'INSERT INTO "lockCategories" ("userID", "videoID", "category") VALUES (?, ?, ?)';
|
const insertLockCategoryQuery = 'INSERT INTO "lockCategories" ("userID", "videoID", "category", "reason") VALUES (?, ?, ?, ?)';
|
||||||
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'no-segments-video-id', 'sponsor']);
|
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'no-segments-video-id', 'sponsor', 'reason-1']);
|
||||||
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'no-segments-video-id', 'intro']);
|
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'no-segments-video-id', 'intro', 'reason-1']);
|
||||||
|
|
||||||
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'no-segments-video-id-1', 'sponsor']);
|
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'no-segments-video-id-1', 'sponsor', 'reason-2']);
|
||||||
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'no-segments-video-id-1', 'intro']);
|
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'no-segments-video-id-1', 'intro', 'reason-2']);
|
||||||
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'lockCategoryVideo', 'sponsor']);
|
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'lockCategoryVideo', 'sponsor', 'reason-3']);
|
||||||
|
|
||||||
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'delete-record', 'sponsor']);
|
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'delete-record', 'sponsor', 'reason-4']);
|
||||||
|
|
||||||
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'delete-record-1', 'sponsor']);
|
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'delete-record-1', 'sponsor', 'reason-5']);
|
||||||
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'delete-record-1', 'intro']);
|
await db.prepare("run", insertLockCategoryQuery, [getHash("VIPUser-lockCategories"), 'delete-record-1', 'intro', 'reason-5']);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Should update the database version when starting the application', async () => {
|
it('Should update the database version when starting the application', async () => {
|
||||||
|
@ -95,11 +96,125 @@ describe('lockCategoriesRecords', () => {
|
||||||
})
|
})
|
||||||
.then(async res => {
|
.then(async res => {
|
||||||
if (res.status === 200) {
|
if (res.status === 200) {
|
||||||
const result = await db.prepare('all', 'SELECT * FROM "lockCategories" WHERE "videoID" = ?', ['no-segments-video-id-1']);
|
const result = await db.prepare('all', 'SELECT * FROM "lockCategories" WHERE "videoID" = ?', ['no-segments-video-id-1']) as LockCategory[];
|
||||||
if (result.length !== 4) {
|
if (result.length !== 4) {
|
||||||
done("Expected 4 entrys in db, got " + result.length);
|
done("Expected 4 entrys in db, got " + result.length);
|
||||||
} else {
|
} else {
|
||||||
|
const oldRecordNotChangeReason = result.filter(item => {
|
||||||
|
return item.reason === 'reason-2' && ['sponsor', 'intro'].includes(item.category);
|
||||||
|
});
|
||||||
|
|
||||||
|
const newRecordWithEmptyReason = result.filter(item => {
|
||||||
|
return item.reason === '' && ['outro', 'shilling'].includes(item.category);
|
||||||
|
});
|
||||||
|
|
||||||
|
if (newRecordWithEmptyReason.length !== 2 || oldRecordNotChangeReason.length !== 2) {
|
||||||
|
done(`Incorrect reason update with oldRecordNotChangeReason=${oldRecordNotChangeReason} instead of 2 or newRecordWithEmptyReason=${newRecordWithEmptyReason} instead of 2`);
|
||||||
|
} else {
|
||||||
|
done();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
done("Status code was " + res.status);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(err => done(err));
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Should be able to submit categories not in video with reason (http response)', (done: Done) => {
|
||||||
|
const json = {
|
||||||
|
videoID: 'no-segments-video-id',
|
||||||
|
userID: 'VIPUser-lockCategories',
|
||||||
|
categories: [
|
||||||
|
'outro',
|
||||||
|
'shilling',
|
||||||
|
'shilling',
|
||||||
|
'shil ling',
|
||||||
|
'',
|
||||||
|
'intro',
|
||||||
|
],
|
||||||
|
reason: 'new reason'
|
||||||
|
};
|
||||||
|
|
||||||
|
const expected = {
|
||||||
|
submitted: [
|
||||||
|
'outro',
|
||||||
|
'shilling',
|
||||||
|
'intro'
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
fetch(getbaseURL() + "/api/lockCategories", {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
},
|
||||||
|
body: JSON.stringify(json)
|
||||||
|
})
|
||||||
|
.then(async res => {
|
||||||
|
if (res.status === 200) {
|
||||||
|
const data = await res.json();
|
||||||
|
if (JSON.stringify(data) === JSON.stringify(expected)) {
|
||||||
done();
|
done();
|
||||||
|
} else {
|
||||||
|
done("Incorrect response: expected " + JSON.stringify(expected) + " got " + JSON.stringify(data));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
done("Status code was " + res.status);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(err => done(err));
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Should be able to submit categories not in video with reason (sql check)', (done: Done) => {
|
||||||
|
const json = {
|
||||||
|
videoID: 'no-segments-video-id-1',
|
||||||
|
userID: 'VIPUser-lockCategories',
|
||||||
|
categories: [
|
||||||
|
'outro',
|
||||||
|
'shilling',
|
||||||
|
'shilling',
|
||||||
|
'shil ling',
|
||||||
|
'',
|
||||||
|
'intro',
|
||||||
|
],
|
||||||
|
reason: 'new reason'
|
||||||
|
};
|
||||||
|
|
||||||
|
const expectedWithNewReason = [
|
||||||
|
'outro',
|
||||||
|
'shilling',
|
||||||
|
'intro'
|
||||||
|
];
|
||||||
|
|
||||||
|
fetch(getbaseURL() + "/api/lockCategories", {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
},
|
||||||
|
body: JSON.stringify(json)
|
||||||
|
})
|
||||||
|
.then(async res => {
|
||||||
|
if (res.status === 200) {
|
||||||
|
const result = await db.prepare('all', 'SELECT * FROM "lockCategories" WHERE "videoID" = ?', ['no-segments-video-id-1']) as LockCategory[];
|
||||||
|
if (result.length !== 4) {
|
||||||
|
done("Expected 4 entrys in db, got " + result.length);
|
||||||
|
} else {
|
||||||
|
const newRecordWithNewReason = result.filter(item => {
|
||||||
|
return expectedWithNewReason.includes(item.category) && item.reason === 'new reason';
|
||||||
|
});
|
||||||
|
|
||||||
|
const oldRecordNotChangeReason = result.filter(item => {
|
||||||
|
return item.reason === 'reason-2';
|
||||||
|
});
|
||||||
|
|
||||||
|
if (newRecordWithNewReason.length !== 3) {
|
||||||
|
done("Expected 3 entrys in db with new reason, got " + newRecordWithNewReason.length);
|
||||||
|
} else if (oldRecordNotChangeReason.length !== 1) {
|
||||||
|
done("Expected 1 entrys in db with old reason, got " + oldRecordNotChangeReason.length);
|
||||||
|
} else {
|
||||||
|
done();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
done("Status code was " + res.status);
|
done("Status code was " + res.status);
|
||||||
|
|
Loading…
Reference in a new issue