document.js 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. "use strict";
  2. var __assign = (this && this.__assign) || function () {
  3. __assign = Object.assign || function(t) {
  4. for (var s, i = 1, n = arguments.length; i < n; i++) {
  5. s = arguments[i];
  6. for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
  7. t[p] = s[p];
  8. }
  9. return t;
  10. };
  11. return __assign.apply(this, arguments);
  12. };
  13. var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
  14. function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
  15. return new (P || (P = Promise))(function (resolve, reject) {
  16. function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
  17. function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
  18. function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
  19. step((generator = generator.apply(thisArg, _arguments || [])).next());
  20. });
  21. };
  22. var __generator = (this && this.__generator) || function (thisArg, body) {
  23. var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
  24. return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
  25. function verb(n) { return function (v) { return step([n, v]); }; }
  26. function step(op) {
  27. if (f) throw new TypeError("Generator is already executing.");
  28. while (_) try {
  29. if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
  30. if (y = 0, t) op = [op[0] & 2, t.value];
  31. switch (op[0]) {
  32. case 0: case 1: t = op; break;
  33. case 4: _.label++; return { value: op[1], done: false };
  34. case 5: _.label++; y = op[1]; op = [0]; continue;
  35. case 7: op = _.ops.pop(); _.trys.pop(); continue;
  36. default:
  37. if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
  38. if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
  39. if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
  40. if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
  41. if (t[2]) _.ops.pop();
  42. _.trys.pop(); continue;
  43. }
  44. op = body.call(thisArg, _);
  45. } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
  46. if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
  47. }
  48. };
  49. Object.defineProperty(exports, "__esModule", { value: true });
  50. var bson_1 = require("bson");
  51. var code_1 = require("../const/code");
  52. var update_1 = require("../serializer/update");
  53. var datatype_1 = require("../serializer/datatype");
  54. var util_1 = require("../util");
  55. var GET_DOC = 'database.getInTransaction';
  56. var UPDATE_DOC = 'database.updateDocInTransaction';
  57. var DELETE_DOC = 'database.deleteDocInTransaction';
  58. var INSERT_DOC = 'database.insertDocInTransaction';
  59. var DocumentReference = (function () {
  60. function DocumentReference(transaction, coll, docID) {
  61. this._coll = coll;
  62. this.id = docID;
  63. this._transaction = transaction;
  64. this._request = this._transaction.getRequestMethod();
  65. this._transactionId = this._transaction.getTransactionId();
  66. }
  67. DocumentReference.prototype.create = function (data) {
  68. return __awaiter(this, void 0, void 0, function () {
  69. var params, res, inserted, ok;
  70. return __generator(this, function (_a) {
  71. switch (_a.label) {
  72. case 0:
  73. params = {
  74. collectionName: this._coll,
  75. transactionId: this._transactionId,
  76. data: bson_1.EJSON.stringify(datatype_1.serialize(data), { relaxed: false })
  77. };
  78. if (this.id) {
  79. params['_id'] = this.id;
  80. }
  81. return [4, this._request.send(INSERT_DOC, params)];
  82. case 1:
  83. res = _a.sent();
  84. if (res.code) {
  85. throw res;
  86. }
  87. inserted = bson_1.EJSON.parse(res.inserted);
  88. ok = bson_1.EJSON.parse(res.ok);
  89. if (ok == 1 && inserted == 1) {
  90. return [2, __assign(__assign({}, res), { ok: ok,
  91. inserted: inserted })];
  92. }
  93. else {
  94. throw new Error(code_1.ERRORS.INSERT_DOC_FAIL.message);
  95. }
  96. return [2];
  97. }
  98. });
  99. });
  100. };
  101. DocumentReference.prototype.get = function () {
  102. return __awaiter(this, void 0, void 0, function () {
  103. var param, res;
  104. return __generator(this, function (_a) {
  105. switch (_a.label) {
  106. case 0:
  107. param = {
  108. collectionName: this._coll,
  109. transactionId: this._transactionId,
  110. query: {
  111. _id: { $eq: this.id }
  112. }
  113. };
  114. return [4, this._request.send(GET_DOC, param)];
  115. case 1:
  116. res = _a.sent();
  117. if (res.code)
  118. throw res;
  119. return [2, {
  120. data: res.data !== 'null' ? util_1.Util.formatField(bson_1.EJSON.parse(res.data)) : bson_1.EJSON.parse(res.data),
  121. requestId: res.requestId
  122. }];
  123. }
  124. });
  125. });
  126. };
  127. DocumentReference.prototype.set = function (data) {
  128. return __awaiter(this, void 0, void 0, function () {
  129. var param, res;
  130. return __generator(this, function (_a) {
  131. switch (_a.label) {
  132. case 0:
  133. param = {
  134. collectionName: this._coll,
  135. transactionId: this._transactionId,
  136. query: {
  137. _id: { $eq: this.id }
  138. },
  139. data: bson_1.EJSON.stringify(datatype_1.serialize(data), { relaxed: false }),
  140. upsert: true
  141. };
  142. return [4, this._request.send(UPDATE_DOC, param)];
  143. case 1:
  144. res = _a.sent();
  145. if (res.code)
  146. throw res;
  147. return [2, __assign(__assign({}, res), { updated: bson_1.EJSON.parse(res.updated), upserted: res.upserted
  148. ? JSON.parse(res.upserted)
  149. : null })];
  150. }
  151. });
  152. });
  153. };
  154. DocumentReference.prototype.update = function (data) {
  155. return __awaiter(this, void 0, void 0, function () {
  156. var param, res;
  157. return __generator(this, function (_a) {
  158. switch (_a.label) {
  159. case 0:
  160. param = {
  161. collectionName: this._coll,
  162. transactionId: this._transactionId,
  163. query: {
  164. _id: { $eq: this.id }
  165. },
  166. data: bson_1.EJSON.stringify(update_1.UpdateSerializer.encode(data), {
  167. relaxed: false
  168. })
  169. };
  170. return [4, this._request.send(UPDATE_DOC, param)];
  171. case 1:
  172. res = _a.sent();
  173. if (res.code)
  174. throw res;
  175. return [2, __assign(__assign({}, res), { updated: bson_1.EJSON.parse(res.updated) })];
  176. }
  177. });
  178. });
  179. };
  180. DocumentReference.prototype.delete = function () {
  181. return __awaiter(this, void 0, void 0, function () {
  182. var param, res;
  183. return __generator(this, function (_a) {
  184. switch (_a.label) {
  185. case 0:
  186. param = {
  187. collectionName: this._coll,
  188. transactionId: this._transactionId,
  189. query: {
  190. _id: { $eq: this.id }
  191. }
  192. };
  193. return [4, this._request.send(DELETE_DOC, param)];
  194. case 1:
  195. res = _a.sent();
  196. if (res.code)
  197. throw res;
  198. return [2, __assign(__assign({}, res), { deleted: bson_1.EJSON.parse(res.deleted) })];
  199. }
  200. });
  201. });
  202. };
  203. return DocumentReference;
  204. }());
  205. exports.DocumentReference = DocumentReference;