mariadb-connector.js 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  1. 'use strict';
  2. var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
  3. Object.defineProperty(exports, "__esModule", {
  4. value: true
  5. });
  6. exports.default = void 0;
  7. var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
  8. var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
  9. var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
  10. var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
  11. var _mariadb = _interopRequireDefault(require("mariadb"));
  12. function _createForOfIteratorHelper(o) { if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (o = _unsupportedIterableToArray(o))) { var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var it, normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
  13. function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
  14. function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
  15. var JOJOAPPS_SERVER_DB = 'localhost';
  16. var JOJOAPPS_SERVER_DB_SOCKET = '/run/mysqld/mysqld.sock';
  17. var DATABASE_NAME = 'twelve_heroes';
  18. var MariadbConnector = /*#__PURE__*/function () {
  19. function MariadbConnector() {
  20. (0, _classCallCheck2.default)(this, MariadbConnector);
  21. var host = process.env.DB || JOJOAPPS_SERVER_DB;
  22. var port = process.env.DB_PORT || 0;
  23. var database = process.env.DB_NAME || DATABASE_NAME;
  24. console.log('DB server : ' + host);
  25. console.log('DB database : ' + database);
  26. var mariaDbConfig = {
  27. host: host,
  28. user: 'node',
  29. password: 'nodejs1234',
  30. database: database,
  31. connectionLimit: 5
  32. };
  33. if (port === 0) {
  34. mariaDbConfig.socketPath = JOJOAPPS_SERVER_DB_SOCKET;
  35. console.log('Will use DB UNIX socket : ' + mariaDbConfig.socketPath);
  36. } else {
  37. mariaDbConfig.port = port;
  38. console.log('Will use DB port : ' + port);
  39. }
  40. this.pool = _mariadb.default.createPool(mariaDbConfig);
  41. }
  42. (0, _createClass2.default)(MariadbConnector, [{
  43. key: "getUsernames",
  44. value: function () {
  45. var _getUsernames = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() {
  46. var conn, players, rows_players, _iterator, _step, u;
  47. return _regenerator.default.wrap(function _callee$(_context) {
  48. while (1) {
  49. switch (_context.prev = _context.next) {
  50. case 0:
  51. players = [];
  52. _context.prev = 1;
  53. _context.next = 4;
  54. return this.pool.getConnection();
  55. case 4:
  56. conn = _context.sent;
  57. _context.next = 7;
  58. return conn.query('SELECT username FROM players');
  59. case 7:
  60. rows_players = _context.sent;
  61. _iterator = _createForOfIteratorHelper(rows_players);
  62. try {
  63. for (_iterator.s(); !(_step = _iterator.n()).done;) {
  64. u = _step.value.username;
  65. players.push(u);
  66. }
  67. } catch (err) {
  68. _iterator.e(err);
  69. } finally {
  70. _iterator.f();
  71. }
  72. case 10:
  73. _context.prev = 10;
  74. if (conn && conn !== null) {
  75. conn.end();
  76. }
  77. return _context.finish(10);
  78. case 13:
  79. return _context.abrupt("return", players);
  80. case 14:
  81. case "end":
  82. return _context.stop();
  83. }
  84. }
  85. }, _callee, this, [[1,, 10, 13]]);
  86. }));
  87. function getUsernames() {
  88. return _getUsernames.apply(this, arguments);
  89. }
  90. return getUsernames;
  91. }()
  92. }, {
  93. key: "addPlayer",
  94. value: function () {
  95. var _addPlayer = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(username) {
  96. var conn, val;
  97. return _regenerator.default.wrap(function _callee2$(_context2) {
  98. while (1) {
  99. switch (_context2.prev = _context2.next) {
  100. case 0:
  101. console.log('mariadb add player : ', username);
  102. _context2.prev = 1;
  103. _context2.next = 4;
  104. return this.pool.getConnection();
  105. case 4:
  106. conn = _context2.sent;
  107. _context2.next = 7;
  108. return conn.query('INSERT INTO players value (?, NOW(),NULL)', [username]);
  109. case 7:
  110. val = _context2.sent;
  111. console.log('OK removing player : ', val);
  112. return _context2.abrupt("return", val);
  113. case 12:
  114. _context2.prev = 12;
  115. _context2.t0 = _context2["catch"](1);
  116. console.log('error adding player : ', _context2.t0);
  117. throw _context2.t0;
  118. case 16:
  119. _context2.prev = 16;
  120. if (conn && conn !== null) {
  121. conn.end();
  122. }
  123. return _context2.finish(16);
  124. case 19:
  125. case "end":
  126. return _context2.stop();
  127. }
  128. }
  129. }, _callee2, this, [[1, 12, 16, 19]]);
  130. }));
  131. function addPlayer(_x) {
  132. return _addPlayer.apply(this, arguments);
  133. }
  134. return addPlayer;
  135. }()
  136. }, {
  137. key: "removePlayer",
  138. value: function () {
  139. var _removePlayer = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(username) {
  140. var conn, val;
  141. return _regenerator.default.wrap(function _callee3$(_context3) {
  142. while (1) {
  143. switch (_context3.prev = _context3.next) {
  144. case 0:
  145. console.log('mariadb remove player : ', username);
  146. _context3.prev = 1;
  147. _context3.next = 4;
  148. return this.pool.getConnection();
  149. case 4:
  150. conn = _context3.sent;
  151. _context3.next = 7;
  152. return conn.query('DELETE FROM players WHERE username=?', [username]);
  153. case 7:
  154. val = _context3.sent;
  155. console.log('OK removing player : ', val);
  156. return _context3.abrupt("return", val);
  157. case 12:
  158. _context3.prev = 12;
  159. _context3.t0 = _context3["catch"](1);
  160. console.log('error removing player : ', _context3.t0);
  161. throw _context3.t0;
  162. case 16:
  163. _context3.prev = 16;
  164. if (conn && conn !== null) {
  165. conn.end();
  166. }
  167. return _context3.finish(16);
  168. case 19:
  169. case "end":
  170. return _context3.stop();
  171. }
  172. }
  173. }, _callee3, this, [[1, 12, 16, 19]]);
  174. }));
  175. function removePlayer(_x2) {
  176. return _removePlayer.apply(this, arguments);
  177. }
  178. return removePlayer;
  179. }()
  180. }, {
  181. key: "addNewGame",
  182. value: function () {
  183. var _addNewGame = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee4(game) {
  184. var conn, val;
  185. return _regenerator.default.wrap(function _callee4$(_context4) {
  186. while (1) {
  187. switch (_context4.prev = _context4.next) {
  188. case 0:
  189. console.log('mariadb add game : ', game);
  190. _context4.prev = 1;
  191. _context4.next = 4;
  192. return this.pool.getConnection();
  193. case 4:
  194. conn = _context4.sent;
  195. _context4.next = 7;
  196. return conn.query('INSERT INTO games values (NULL,?,?,?,?,?,?,NOW())', [game.player1, game.player2, game.deck, convertAdvRulesToString(game.advRules), game.status, game.data]);
  197. case 7:
  198. val = _context4.sent;
  199. console.log('OK adding game : ', val);
  200. return _context4.abrupt("return", val.insertId);
  201. case 12:
  202. _context4.prev = 12;
  203. _context4.t0 = _context4["catch"](1);
  204. console.log('error adding game : ', _context4.t0);
  205. throw _context4.t0;
  206. case 16:
  207. _context4.prev = 16;
  208. if (conn && conn !== null) {
  209. conn.end();
  210. }
  211. return _context4.finish(16);
  212. case 19:
  213. case "end":
  214. return _context4.stop();
  215. }
  216. }
  217. }, _callee4, this, [[1, 12, 16, 19]]);
  218. }));
  219. function addNewGame(_x3) {
  220. return _addNewGame.apply(this, arguments);
  221. }
  222. return addNewGame;
  223. }()
  224. }, {
  225. key: "removeGameById",
  226. value: function removeGameById(gameId) {
  227. return this.removeGame('DELETE FROM games WHERE id=?', [gameId]);
  228. }
  229. }, {
  230. key: "removeGamesByPlayer1",
  231. value: function removeGamesByPlayer1(player1Name) {
  232. return this.removeGame('DELETE FROM games WHERE player1=?', [player1Name]);
  233. }
  234. }, {
  235. key: "removeGamesByPlayerAny",
  236. value: function removeGamesByPlayerAny(playerName) {
  237. return this.removeGame('DELETE FROM games WHERE player1=? OR player2=?', [playerName, playerName]);
  238. }
  239. }, {
  240. key: "removeGamesByStatus",
  241. value: function removeGamesByStatus(status) {
  242. return this.removeGame('DELETE FROM games WHERE status=?', [status]);
  243. }
  244. }, {
  245. key: "removeGamesByDays",
  246. value: function removeGamesByDays(days) {
  247. return this.removeGame('DELETE FROM games WHERE datediff(NOW(),last_played) > ?', [days]);
  248. }
  249. }, {
  250. key: "removeFinishedGamesByDays",
  251. value: function removeFinishedGamesByDays(days) {
  252. return this.removeGame("DELETE FROM games WHERE status='FINISHED' AND datediff(NOW(),last_played) > ?", [days]);
  253. }
  254. }, {
  255. key: "removeCreatedGamesByPlayer1",
  256. value: function removeCreatedGamesByPlayer1(player1Name) {
  257. return this.removeGame("DELETE FROM games WHERE player1=? AND status='CREATED'", [player1Name]);
  258. }
  259. }, {
  260. key: "removeGame",
  261. value: function () {
  262. var _removeGame = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee5(queryStr, queryArgs) {
  263. var conn, val;
  264. return _regenerator.default.wrap(function _callee5$(_context5) {
  265. while (1) {
  266. switch (_context5.prev = _context5.next) {
  267. case 0:
  268. console.log('mariadb remove game : ', queryStr);
  269. _context5.prev = 1;
  270. _context5.next = 4;
  271. return this.pool.getConnection();
  272. case 4:
  273. conn = _context5.sent;
  274. _context5.next = 7;
  275. return conn.query(queryStr, queryArgs);
  276. case 7:
  277. val = _context5.sent;
  278. console.log('OK removing game : ', val);
  279. return _context5.abrupt("return", val);
  280. case 12:
  281. _context5.prev = 12;
  282. _context5.t0 = _context5["catch"](1);
  283. console.log('error removing game : ', _context5.t0);
  284. throw _context5.t0;
  285. case 16:
  286. _context5.prev = 16;
  287. if (conn && conn !== null) {
  288. conn.end();
  289. }
  290. return _context5.finish(16);
  291. case 19:
  292. case "end":
  293. return _context5.stop();
  294. }
  295. }
  296. }, _callee5, this, [[1, 12, 16, 19]]);
  297. }));
  298. function removeGame(_x4, _x5) {
  299. return _removeGame.apply(this, arguments);
  300. }
  301. return removeGame;
  302. }()
  303. }, {
  304. key: "getJoinableGamesForPlayer",
  305. value: function () {
  306. var _getJoinableGamesForPlayer = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee6(username) {
  307. var conn, games, res, _iterator2, _step2, _step2$value, id, player1, player2, deck, adv_rules;
  308. return _regenerator.default.wrap(function _callee6$(_context6) {
  309. while (1) {
  310. switch (_context6.prev = _context6.next) {
  311. case 0:
  312. games = [];
  313. _context6.prev = 1;
  314. _context6.next = 4;
  315. return this.pool.getConnection();
  316. case 4:
  317. conn = _context6.sent;
  318. _context6.next = 7;
  319. return conn.query("SELECT * FROM games WHERE (status = 'CREATED' OR status = 'PAUSED' OR status = 'PLAYING') AND(player1 = ? OR player2 = '' OR player2 = ?)", [username, username]);
  320. case 7:
  321. res = _context6.sent;
  322. _iterator2 = _createForOfIteratorHelper(res);
  323. try {
  324. for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
  325. _step2$value = _step2.value, id = _step2$value.id, player1 = _step2$value.player1, player2 = _step2$value.player2, deck = _step2$value.deck, adv_rules = _step2$value.adv_rules;
  326. games.push({
  327. id: id,
  328. player1: player1,
  329. player2: player2,
  330. deck: deck,
  331. adv_rules: adv_rules
  332. });
  333. }
  334. } catch (err) {
  335. _iterator2.e(err);
  336. } finally {
  337. _iterator2.f();
  338. }
  339. console.log("returning for ".concat(username, " : "), games);
  340. case 11:
  341. _context6.prev = 11;
  342. if (conn && conn !== null) {
  343. conn.end();
  344. }
  345. return _context6.finish(11);
  346. case 14:
  347. return _context6.abrupt("return", games);
  348. case 15:
  349. case "end":
  350. return _context6.stop();
  351. }
  352. }
  353. }, _callee6, this, [[1,, 11, 14]]);
  354. }));
  355. function getJoinableGamesForPlayer(_x6) {
  356. return _getJoinableGamesForPlayer.apply(this, arguments);
  357. }
  358. return getJoinableGamesForPlayer;
  359. }()
  360. }, {
  361. key: "getGameById",
  362. value: function () {
  363. var _getGameById = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee7(gameId) {
  364. var conn, game;
  365. return _regenerator.default.wrap(function _callee7$(_context7) {
  366. while (1) {
  367. switch (_context7.prev = _context7.next) {
  368. case 0:
  369. game = {};
  370. _context7.prev = 1;
  371. _context7.next = 4;
  372. return this.pool.getConnection();
  373. case 4:
  374. conn = _context7.sent;
  375. _context7.next = 7;
  376. return conn.query('SELECT * FROM games WHERE id=?', gameId);
  377. case 7:
  378. game = _context7.sent;
  379. case 8:
  380. _context7.prev = 8;
  381. if (conn && conn !== null) {
  382. conn.end();
  383. }
  384. return _context7.finish(8);
  385. case 11:
  386. return _context7.abrupt("return", game);
  387. case 12:
  388. case "end":
  389. return _context7.stop();
  390. }
  391. }
  392. }, _callee7, this, [[1,, 8, 11]]);
  393. }));
  394. function getGameById(_x7) {
  395. return _getGameById.apply(this, arguments);
  396. }
  397. return getGameById;
  398. }()
  399. }, {
  400. key: "updateGameStatus",
  401. value: function () {
  402. var _updateGameStatus = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee8(id, status) {
  403. var player2,
  404. conn,
  405. result,
  406. _args8 = arguments;
  407. return _regenerator.default.wrap(function _callee8$(_context8) {
  408. while (1) {
  409. switch (_context8.prev = _context8.next) {
  410. case 0:
  411. player2 = _args8.length > 2 && _args8[2] !== undefined ? _args8[2] : null;
  412. result = {};
  413. _context8.prev = 2;
  414. _context8.next = 5;
  415. return this.pool.getConnection();
  416. case 5:
  417. conn = _context8.sent;
  418. if (!player2) {
  419. _context8.next = 12;
  420. break;
  421. }
  422. _context8.next = 9;
  423. return conn.query('UPDATE games SET player2=?, status = ?, last_played = NOW() WHERE games.id =?', player2, status, id);
  424. case 9:
  425. result = _context8.sent;
  426. _context8.next = 15;
  427. break;
  428. case 12:
  429. _context8.next = 14;
  430. return conn.query('UPDATE games SET status = ?, last_played = NOW() WHERE games.id =?', status, id);
  431. case 14:
  432. result = _context8.sent;
  433. case 15:
  434. _context8.prev = 15;
  435. if (conn && conn !== null) {
  436. conn.end();
  437. }
  438. return _context8.finish(15);
  439. case 18:
  440. return _context8.abrupt("return", result);
  441. case 19:
  442. case "end":
  443. return _context8.stop();
  444. }
  445. }
  446. }, _callee8, this, [[2,, 15, 18]]);
  447. }));
  448. function updateGameStatus(_x8, _x9) {
  449. return _updateGameStatus.apply(this, arguments);
  450. }
  451. return updateGameStatus;
  452. }()
  453. }, {
  454. key: "updateGameData",
  455. value: function () {
  456. var _updateGameData = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee9(id, data) {
  457. var conn, result;
  458. return _regenerator.default.wrap(function _callee9$(_context9) {
  459. while (1) {
  460. switch (_context9.prev = _context9.next) {
  461. case 0:
  462. result = {};
  463. _context9.prev = 1;
  464. _context9.next = 4;
  465. return this.pool.getConnection();
  466. case 4:
  467. conn = _context9.sent;
  468. _context9.next = 7;
  469. return conn.query('UPDATE games SET game_data = ?, last_played = NOW() WHERE games.id =?', data, id);
  470. case 7:
  471. result = _context9.sent;
  472. case 8:
  473. _context9.prev = 8;
  474. if (conn && conn !== null) {
  475. conn.end();
  476. }
  477. return _context9.finish(8);
  478. case 11:
  479. return _context9.abrupt("return", result);
  480. case 12:
  481. case "end":
  482. return _context9.stop();
  483. }
  484. }
  485. }, _callee9, this, [[1,, 8, 11]]);
  486. }));
  487. function updateGameData(_x10, _x11) {
  488. return _updateGameData.apply(this, arguments);
  489. }
  490. return updateGameData;
  491. }()
  492. }]);
  493. return MariadbConnector;
  494. }();
  495. exports.default = MariadbConnector;
  496. var convertAdvRulesToString = function convertAdvRulesToString(advRulesArray) {
  497. var advRulestStr = '';
  498. var last = advRulesArray.length - 1;
  499. advRulesArray.forEach(function (rule, index) {
  500. advRulestStr += rule;
  501. if (index < last) {
  502. advRulestStr += ',';
  503. }
  504. });
  505. return advRulestStr;
  506. };
  507. //# sourceMappingURL=mariadb-connector.js.map