import { type Request, type Response } from "express"; import { GameModel } from '../models/mediaModel'; export default { list: function (req: Request, res: Response) { GameModel.find({}, { __v: 0 }) .then(games => { return res.json(games); }) .catch(err => { return res.status(500).json({ message: 'Error when getting games.', error: err }); }); }, create: async function (req: Request, res: Response) { var gameCode = req.body.code; const userFound = req.user; try { const gameFound = await GameModel.findOne({ code: gameCode }); if (gameFound) { return res.status(409).json({ message: 'Game already exists' }); } const uri = "https://id.twitch.tv/oauth2/token?client_id=" + userFound.twitch_client_id + "&client_secret=" + userFound.twitch_client_secret + "&grant_type=client_credentials"; var response = await fetch(uri, { method: 'POST' }); const mData = await response.json(); const mheaders = { 'Accept': 'application/json', 'Client-ID': userFound.twitch_client_id, 'Authorization': 'Bearer ' + mData.access_token } gameCode = parseInt(gameCode) response = await fetch( "https://api.igdb.com/v4/games", { method: 'POST', headers: mheaders, body: `fields name, first_release_date; where id = ${gameCode};` } ) const gameData = await response.json() if (gameData.length == 0) { return res.status(404).json({ message: 'wrong code' }); } const date = new Date(gameData[0].first_release_date * 1000); const options: Intl.DateTimeFormatOptions = { day: 'numeric', month: 'short', year: 'numeric' } const dateStr = date.toLocaleDateString(undefined, options); response = await fetch( "https://api.igdb.com/v4/covers", { method: 'POST', headers: mheaders, body: `fields image_id; where game = ${gameCode};` } ) const coverData = await response.json() const game = new GameModel({ code: gameCode, title: gameData[0].name, released: dateStr, webImg: `https://images.igdb.com/igdb/image/upload/t_cover_big/${coverData[0].image_id}.jpg`, }); const savedGame = await game.save(); return res.status(201).json(game); } catch (error) { return res.status(500).json({ message: 'Error when creating game', error: error }); } }, remove: async function (req: Request, res: Response) { const id = req.body.code; try { const movie = await GameModel.findOneAndDelete({ code: id }); if (!movie) { return res.status(404).json({ message: 'No such game' }); } return res.status(204).json(); } catch (err) { return res.status(500).json({ message: 'Error when deleting the game.' }); } } };