123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- const MongoClient = require("mongodb").MongoClient;
- const ObjectID = require("mongodb").ObjectID;
- const mm = require('mm')
- module.exports = async (dbName, dsn="mongodb://localhost:27017/") => {
- if (!dbName)
- throw new ReferenceError(`db name does not provided`)
- const mongoClient = new MongoClient(dsn, { useNewUrlParser: true });
- const client = await mongoClient.connect()
- const db = client.db(dbName)
- const Savable = mm(db).Savable
- const slice = mm(db).sliceSavable
- async function getModels(id){
- const SlicedSavable = slice([id, 'user'])
- class User extends SlicedSavable {
- constructor(...params){
- super(...params)
- this.moneyEvents = this.moneyEvents instanceof Array ? this.moneyEvents : (this.moneyEvents ? [this.moneyEvents] : [])
- }
- static get relations(){
- return {
- moneyEvents: "user"
- }
- }
- }
- SlicedSavable.addClass(User)
- class Event extends SlicedSavable {
- constructor(...params){
- super(...params)
- this.moneyEvents = this.moneyEvents instanceof Array ? this.moneyEvents : (this.moneyEvents ? [this.moneyEvents] : [])
- }
- get owner(){
- return this.___owner
- }
- get usersSum(){
- return (async () => {
- var result = 0;
- for (let money of this.moneyEvents){
- result += (await money).amount
- console.log('MONEY SUM', money.amount, money._id)
- }
- return result;
- })()
- }
- get moneyDiff(){
- return (async () => {
- return (await this.usersSum) - (this.total || 0);
- })()
- }
- get avg(){
- return this.total/((this.moneyEvents && this.moneyEvents.length) || 1)
- }
- static get relations(){
- return {
- moneyEvents: "event"
- }
- }
- }
- SlicedSavable.addClass(Event)
- class EventMoney extends SlicedSavable {
- get owner(){
- return this.___owner
- }
- get avgDiff(){
- return (async () => this.amount - (await this.event).avg)()
- }
- static get relations(){
- return {
- user: "moneyEvents",
- event: "moneyEvents"
- }
- }
- }
- SlicedSavable.addClass(EventMoney)
- const thisUser = await Savable.m.User.findOne({_id: ObjectID(id)})
- return {
- SlicedSavable, User, Event, EventMoney, thisUser
- }
- }
- return {
- Savable,
- slice,
- getModels
- }
- }
|