Created
June 25, 2017 13:22
-
-
Save augustovictor/dd92cd5767a30a5f56277806a39a64e0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| const { send, json } = require('micro'); | |
| const { router, get, post, del } = require('microrouter'); | |
| const rateLimit = require('micro-ratelimit'); | |
| const cors = require('micro-cors')(); | |
| const database = require('../../database/db'); | |
| const model = require('../../model/index'); | |
| const controller = require('../../controller/index'); | |
| const { logRequest } = require('../../middlewares/mid'); | |
| // GENERAL | |
| const hello = rateLimit({window: 5000, limit: 2}, (req, res) => { | |
| send(res, 200, `Hello, ${req.params.who}`); | |
| }); | |
| const testPost = async (req, res) => { | |
| const data = await json(req); | |
| console.log('testPost'); | |
| send(res, 201, {data}); | |
| }; | |
| const notFound = (req, res) => { | |
| console.log('NOT FOUND.') | |
| send(res, 404, 'Endpoint not found'); | |
| }; | |
| // MOVIES | |
| const movies = logRequest(async (req, res) => { | |
| const movies = await controller.movie.allMovies(); | |
| send(res, 200, movies); | |
| }); | |
| const movieById = async (req, res) => { | |
| const movieId = await req.params.id; | |
| const movie = await controller.movie.movieById(movieId); | |
| send(res, 200, movie); | |
| } | |
| const newMovie = async (req, res) => { | |
| try { | |
| const rawMovie = await json(req); | |
| const movie = await controller.movie.newMovie(rawMovie); | |
| send(res, 201, movie); | |
| } catch(err) { | |
| send(res, 500, err); | |
| } | |
| }; | |
| const delMovie = async (req, res) => { | |
| try { | |
| const movieId = await req.params.id; | |
| console.log(movieId); | |
| send(res, 200, 'ok'); | |
| } catch(err) { | |
| console.log(err); | |
| send(res, 500, err); | |
| } | |
| }; | |
| module.exports = router( | |
| get('/hello/:who', cors(hello)), | |
| post('/test-post', cors(testPost)), | |
| // === MOVIES === | |
| // get | |
| get('/movies', cors(movies)), | |
| get('/movies/:id', cors(movieById)), | |
| get('/*', notFound), | |
| // post | |
| post('/movies', cors(newMovie)), | |
| // delete | |
| del('/movies/:id', cors(delMovie)) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment