server.js 2.0 KB

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