models.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. async function getModels(id){
  13. const SlicedSavable = slice([id, 'user'])
  14. class User extends SlicedSavable {
  15. constructor(...params){
  16. super(...params)
  17. this.moneyEvents = this.moneyEvents instanceof Array ? this.moneyEvents : (this.moneyEvents ? [this.moneyEvents] : [])
  18. }
  19. static get relations(){
  20. return {
  21. moneyEvents: "user"
  22. }
  23. }
  24. }
  25. SlicedSavable.addClass(User)
  26. class Event extends SlicedSavable {
  27. constructor(...params){
  28. super(...params)
  29. this.moneyEvents = this.moneyEvents instanceof Array ? this.moneyEvents : (this.moneyEvents ? [this.moneyEvents] : [])
  30. }
  31. get owner(){
  32. return this.___owner
  33. }
  34. get usersSum(){
  35. return (async () => {
  36. var result = 0;
  37. for (let money of this.moneyEvents){
  38. result += (await money).amount
  39. console.log('MONEY SUM', money.amount, money._id)
  40. }
  41. return result;
  42. })()
  43. }
  44. get moneyDiff(){
  45. return (async () => {
  46. return (await this.usersSum) - (this.total || 0);
  47. })()
  48. }
  49. get avg(){
  50. return this.total/((this.moneyEvents && this.moneyEvents.length) || 1)
  51. }
  52. static get relations(){
  53. return {
  54. moneyEvents: "event"
  55. }
  56. }
  57. }
  58. SlicedSavable.addClass(Event)
  59. class EventMoney extends SlicedSavable {
  60. get owner(){
  61. return this.___owner
  62. }
  63. get avgDiff(){
  64. return (async () => this.amount - (await this.event).avg)()
  65. }
  66. static get relations(){
  67. return {
  68. user: "moneyEvents",
  69. event: "moneyEvents"
  70. }
  71. }
  72. }
  73. SlicedSavable.addClass(EventMoney)
  74. const thisUser = await Savable.m.User.findOne({_id: ObjectID(id)})
  75. return {
  76. SlicedSavable, User, Event, EventMoney, thisUser
  77. }
  78. }
  79. return {
  80. Savable,
  81. slice,
  82. getModels
  83. }
  84. }