server.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //to chat: http://codepen.io/anon/pen/RoaJZG?editors=0010
  2. http = require('http');
  3. var history = [];
  4. var messageId = 0;
  5. server = http.createServer(function(req, res){
  6. //console.dir(req);
  7. if (req.method == "POST"){
  8. var body = '';
  9. req.on('data', function (data) {
  10. body += data;
  11. });
  12. req.on('end', function () {
  13. console.log("Body: " + body);
  14. message = JSON.parse(body);
  15. if (!("messageId" in message) || Object.keys(message).length > 1){
  16. var timestamp =(new Date()).getTime();
  17. message.timestamp = timestamp;
  18. history[messageId] = message;
  19. messageId++;
  20. }
  21. if ("messageId" in message){
  22. messages = history.slice(+message.messageId);
  23. res.end(JSON.stringify({timestamp: timestamp, messageId: messageId -1, messages: messages}))
  24. }
  25. else {
  26. res.end(JSON.stringify({timestamp: timestamp, messageId: messageId -1}))
  27. }
  28. });
  29. res.setHeader('Access-Control-Allow-Origin', '*');
  30. res.setHeader('Access-Control-Request-Method', '*');
  31. res.setHeader('Access-Control-Allow-Methods', 'OPTIONS, GET, POST');
  32. res.setHeader('Access-Control-Allow-Headers', '*');
  33. res.writeHead(200, {'Content-Type': 'text/json'});
  34. //res.end('post received');
  35. }
  36. });
  37. port = 8070;
  38. host = '164.138.30.21';
  39. server.listen(port, host);
  40. console.log("Listen...");