models.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. const MongoClient = require("mongodb").MongoClient;
  2. const ObjectID = require("mongodb").ObjectID;
  3. const mm = require('mm')
  4. module.exports = async (dbName, dsn="mongodb://localhost:27017/") => {
  5. if (!dbName)
  6. throw new ReferenceError(`db name does not provided`)
  7. const mongoClient = new MongoClient(dsn, { useNewUrlParser: true });
  8. const client = await mongoClient.connect()
  9. const db = client.db(dbName)
  10. const Savable = mm(db).Savable
  11. const slice = mm(db).sliceSavable
  12. function getModels(id){
  13. const SlicedSavable = slice([id, 'user'])
  14. class User extends SlicedSavable {
  15. constructor(...params){
  16. super(...params)
  17. if (this.moneyEvents instanceof Array)
  18. return
  19. if (this.moneyEvents instanceof SlicedSavable)
  20. this.moneyEvents = [this.moneyEvents];
  21. this.moneyEvents = [];
  22. }
  23. static get relations(){
  24. return {
  25. moneyEvents: "user"
  26. }
  27. }
  28. }
  29. SlicedSavable.addClass(User)
  30. class Event extends SlicedSavable {
  31. constructor(...params){
  32. super(...params)
  33. if (this.moneyEvents instanceof Array)
  34. return
  35. if (this.moneyEvents instanceof SlicedSavable)
  36. this.moneyEvents = [this.moneyEvents];
  37. this.moneyEvents = [];
  38. }
  39. get owner(){
  40. return this.___owner
  41. }
  42. get usersSum(){
  43. return (async () => {
  44. var result = 0;
  45. for (let money of this.moneyEvents){
  46. result += (await money).amount
  47. console.log('MONEY SUM', money.amount, money._id)
  48. }
  49. return result;
  50. })()
  51. }
  52. get moneyDiff(){
  53. return (async () => {
  54. return (await this.usersSum) - (this.total || 0);
  55. })()
  56. }
  57. get avg(){
  58. return this.total/((this.moneyEvents && this.moneyEvents.length) || 1)
  59. }
  60. static get relations(){
  61. return {
  62. moneyEvents: "event"
  63. }
  64. }
  65. }
  66. SlicedSavable.addClass(Event)
  67. class EventMoney extends SlicedSavable {
  68. get owner(){
  69. return this.___owner
  70. }
  71. get avgDiff(){
  72. return (async () => this.amount - (await this.event).avg)()
  73. }
  74. static get relations(){
  75. return {
  76. user: "moneyEvents",
  77. event: "moneyEvents"
  78. }
  79. }
  80. }
  81. SlicedSavable.addClass(EventMoney)
  82. return {
  83. SlicedSavable, User, Event, EventMoney
  84. }
  85. }
  86. return {
  87. Savable,
  88. slice,
  89. getModels
  90. }
  91. }