server.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. //to chat: http://js.do/code/flexichat
  2. http = require('http');
  3. var history = [];
  4. var messageId = 0;
  5. var RPCFuncs = {
  6. getMessages: function(data){
  7. var messageId = +data.messageId;
  8. return history.slice(messageId);
  9. },
  10. addMessage: function(data){
  11. history.push(data);
  12. // return history.length;
  13. }
  14. };
  15. server = http.createServer(function(req, res){
  16. if (req.method == "POST"){
  17. var body = '';
  18. req.on('data', function (data) {
  19. body += data;
  20. });
  21. req.on('end', function () {
  22. console.log("Body: " + body);
  23. data = JSON.parse(body);
  24. var timestamp =(new Date()).getTime();
  25. if ("func" in data){
  26. if (data.func in RPCFuncs){
  27. var func = data.func;
  28. delete data.func;
  29. data.timestamp = timestamp;
  30. var result = {data: RPCFuncs[func](data), nextMessageId: history.length};
  31. res.end(JSON.stringify(result));
  32. }
  33. else {
  34. console.log("no func in functions array" + body);
  35. }
  36. }
  37. else {
  38. console.log("no func key in data:" + body);
  39. }
  40. //if (!("messageId" in message) || (Object.keys(message).length > 1)){
  41. //message.timestamp = timestamp;
  42. //history[messageId] = message;
  43. //messageId++;
  44. //}
  45. //if ("messageId" in message){
  46. //messages = history.slice(+message.messageId);
  47. //res.end(JSON.stringify({timestamp: timestamp, messageId: messageId, messages: messages}))
  48. //console.log({timestamp: timestamp, messageId: messageId, messages: messages})
  49. //}
  50. //else {
  51. //res.end(JSON.stringify({timestamp: timestamp, messageId: messageId}))
  52. //console.log({timestamp: timestamp, messageId: messageId})
  53. //}
  54. });
  55. res.setHeader('Access-Control-Allow-Origin', '*');
  56. res.setHeader('Access-Control-Request-Method', '*');
  57. res.setHeader('Access-Control-Allow-Methods', 'OPTIONS, GET, POST');
  58. res.setHeader('Access-Control-Allow-Headers', '*');
  59. res.writeHead(200, {'Content-Type': 'text/json'});
  60. //res.end('post received');
  61. }
  62. });
  63. port = 8070;
  64. host = '164.138.30.21';
  65. server.listen(port, host);
  66. console.log("Listen...");