mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
import express from 'express';
|
|
import {config} from '../src/config';
|
|
|
|
const app = express();
|
|
|
|
app.post('/ReportChannelWebhook', (req, res) => {
|
|
res.sendStatus(200);
|
|
});
|
|
|
|
app.post('/FirstTimeSubmissionsWebhook', (req, res) => {
|
|
res.sendStatus(200);
|
|
});
|
|
|
|
app.post('/CompletelyIncorrectReportWebhook', (req, res) => {
|
|
res.sendStatus(200);
|
|
});
|
|
|
|
// Testing NeuralBlock
|
|
app.post('/NeuralBlockRejectWebhook', (req, res) => {
|
|
res.sendStatus(200);
|
|
});
|
|
|
|
app.get('/NeuralBlock/api/checkSponsorSegments', (req, res) => {
|
|
if (req.query.vid === "LevkAjUE6d4") {
|
|
res.json({
|
|
probabilities: [0.69],
|
|
});
|
|
return;
|
|
}
|
|
res.sendStatus(500);
|
|
});
|
|
|
|
//getSponsorSegments is no longer being used for automod
|
|
app.get('/NeuralBlock/api/getSponsorSegments', (req, res) => {
|
|
if (req.query.vid === "LevkAjUE6d4") {
|
|
res.json({
|
|
sponsorSegments: [[0.47, 7.549], [264.023, 317.293]],
|
|
});
|
|
return;
|
|
}
|
|
res.sendStatus(500);
|
|
});
|
|
|
|
// Testing webhooks
|
|
app.post('/CustomWebhook', (req, res) => {
|
|
res.sendStatus(200);
|
|
});
|
|
|
|
export function createMockServer(callback: () => void) {
|
|
return app.listen(config.mockPort, callback);
|
|
}
|