plutoapi-v2/src/models/twitch-highlight-marker/addHighlight/AddHighlight.router.ts
Patrick Müller 7265f92486
All checks were successful
Jenkins Production Deployment
API-10: Adding PartyPlaner register endpoint (#3)
- Also various other improvements

Co-authored-by: Patrick Müller <patrick@mueller-patrick.tech>
Reviewed-on: #3
Co-authored-by: Patrick Müller <patrick@plutodev.de>
Co-committed-by: Patrick Müller <patrick@plutodev.de>
2021-08-20 11:26:38 +00:00

46 lines
1.6 KiB
TypeScript

/**
* Required External Modules and Interfaces
*/
import express, {Request, Response} from 'express';
import * as AddHighlightService from './addHighlights.service';
/**
* Router Definition
*/
export const addHighlightRouter = express.Router();
addHighlightRouter.get('/', (req: Request, res: Response) => {
try {
res.status(200).send('GET endpoint not defined.');
} catch (e) {
console.log('Error handling a request: ' + e.message);
res.status(500).send({'message': 'Internal Server Error. Try again later.'});
}
})
addHighlightRouter.post('/', (req: Request, res: Response) => {
try {
// Check input params
const body = req.body;
if (body.access_key !== process.env.TWITCH_HIGHLIGHTS_ACCESS_KEY) {
// Unauthorized, return error
res.type('application/json');
res.status(403).send({'status': 'error', 'description': 'Unauthorized.'});
} else if (!body.streamer || !body.stream_id || !body.stream_game || !body.timestamp || !body.description || !body.username) {
// Missing params, return error
res.type('application/json');
res.status(400).send({'status': 'error', 'description': 'Missing parameters.'});
} else {
// Everything fine, return success
AddHighlightService.createHighlightEntry(body);
res.type('application/json');
res.status(200).send({'status': 'success', 'description': ''});
}
} catch (e) {
console.log('Error handling a request: ' + e.message);
res.status(500).send({'message': 'Internal Server Error. Try again later.'});
}
})