server-tools.js 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. 'use strict'; // process.exit(1);
  2. var usage = function usage() {
  3. var text = "\n USAGE : npm run tools <option>\n with <option> :\n - players : get authorized players\n - add-player <username> : Add a new authorized player\n - remove-player <username> : Remove an authorized player\n - syncdb : Force server to sync with db\n - add-game <json>: Add new game into DB\n '{\"player1\":\"\",\"player2\":\"\",\"deck\":\"\",\"advRules\":[],\"status\":\"\",\"data\":\"{}\"}'\n deck : faction tournament draft (one of these)\n advRules : popularity discard (0 or any of these)\n status : CREATED ONGOING FINISHED (one of these)\n - remove-game <method> <filter> : Remove game(s) from DB\n <method> / <filter>\n byId gameId\n byPlayer1 username\n byPlayerAny username\n byStatus CREATED ONGOING FINISHED (one of these)\n byDays number of days old is last connection\n finishedByDays number of days old is last connection(only finished)\n ";
  4. console.log(text);
  5. };
  6. var args = process.argv.slice(2);
  7. if (args.length === 0) {
  8. usage();
  9. process.exit(0);
  10. }
  11. var command = '';
  12. var option = '';
  13. switch (args[0]) {
  14. case 'players':
  15. case 'syncdb':
  16. command = args[0];
  17. break;
  18. case 'add-player':
  19. case 'remove-player':
  20. case 'add-game':
  21. case 'remove-game':
  22. if (args[0] === 'remove-game' && args.length < 3) {
  23. usage();
  24. process.exit(0);
  25. }
  26. if (args[1] && args[1] !== '') {
  27. command = args[0];
  28. if (args[0] === 'add-game') {
  29. try {
  30. option = [JSON.parse(args[1])];
  31. } catch (error) {
  32. console.log(error);
  33. process.exit(0);
  34. }
  35. } else {
  36. args.shift();
  37. option = args;
  38. }
  39. } else {
  40. console.log('error ; specify a username');
  41. usage();
  42. }
  43. break;
  44. default:
  45. usage();
  46. break;
  47. }
  48. if (command !== '') {
  49. console.log('Connecting to server...');
  50. var socket = require('socket.io-client')('http://localhost:1664');
  51. socket.emit(command, option, function (response) {
  52. console.log('Done, response from server : ', response);
  53. });
  54. }
  55. //# sourceMappingURL=server-tools.js.map