index.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. const Sequelize = require('sequelize');
  2. const express = require("express");
  3. const bodyParser = require("body-parser");
  4. // const cors = require('cors')
  5. require('dotenv').config({ path: '.env.local' });
  6. const database = new Sequelize({
  7. dialect: 'sqlite',
  8. storage: './xmas.sqlite',
  9. });
  10. const Attendee = database.define('attendee', {
  11. name: Sequelize.STRING,
  12. guest: Sequelize.BOOLEAN,
  13. cat: Sequelize.STRING
  14. });
  15. // const whitelist = ['http://localhost:3001', 'http://localhost', 'http://127.0.0.1', 'http://christmas.logicp.ca']
  16. // const corsOptions = {
  17. // origin: function (origin, callback) {
  18. // console.log('request attempted from ', origin)
  19. // if (whitelist.indexOf(origin) !== -1) {
  20. // callback(null, true)
  21. // } else {
  22. // callback(new Error('Not allowed by CORS'))
  23. // }
  24. // }
  25. // }
  26. class App {
  27. //Run configuration methods on the Express instance.
  28. constructor() {
  29. this.express = express();
  30. this.middleware();
  31. this.routes();
  32. }
  33. // Configure Express middleware.
  34. middleware() {
  35. // this.express.use(logger('dev'));
  36. this.express.use(bodyParser.json());
  37. this.express.use(bodyParser.urlencoded({ extended: true }));
  38. // this.express.engine('html', require('ejs').renderFile);
  39. }
  40. // Configure API endpoints.
  41. routes() {
  42. /* This is just to get up and running, and to make sure what we've got is
  43. * working so far. This function will change when we start to add more
  44. * API endpoints */
  45. this.express.get('/test', (req, res) => {
  46. console.log(req)
  47. res.json({response: 'yo mamma'})
  48. })
  49. this.express.get('/list', (req, res) => {
  50. Attendee.findAll().then(attendees => {
  51. res.json({attendees: attendees})
  52. })
  53. })
  54. this.express.post('/attendee', (req, res) => {
  55. console.log(req.body)
  56. if ('name' in req.body) {
  57. Attendee.findOrCreate({
  58. where: {
  59. name: req.body.name
  60. }
  61. })
  62. .spread( attendee => {
  63. console.log(attendee)
  64. attendee.guest = req.body.significantOther
  65. attendee.cat = req.body.cat
  66. Attendee.update({
  67. name: req.body.name,
  68. cat: req.body.cat,
  69. guest: req.body.significantOther
  70. }, {
  71. where: {
  72. id: attendee.id
  73. }
  74. }).then( attendee => {
  75. console.log('Successfully updated attendee:', attendee)
  76. res.json({response: 'success', code: 200, error: false})
  77. })
  78. })
  79. }
  80. })
  81. }
  82. }
  83. const app = new App().express
  84. app.listen(3002)
  85. // app.options('/attendee', function (req, res) {
  86. // res.setHeader("Access-Control-Allow-Origin", whitelist.join('|'));
  87. // res.setHeader('Access-Control-Allow-Methods', '*');
  88. // res.setHeader("Access-Control-Allow-Headers", "*");
  89. // res.end();
  90. // });
  91. app.all('*', function(req, res, next) {
  92. if (whitelist.indexOf(req.headers.origin) >= 0){
  93. res.header("Access-Control-Allow-Origin", req.headers.origin);
  94. }
  95. res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
  96. next();
  97. })
  98. database.sync().then(() => {
  99. console.log(`Listening on port ${3002}`);
  100. });