Automattic / mongoose

MongoDB object modeling designed to work in an asynchronous environment.
https://mongoosejs.com
MIT License
26.91k stars 3.83k forks source link

About asynchronous getters/setters again #4227

Open bigslycat opened 8 years ago

bigslycat commented 8 years ago

I have read the two discussions (#2571 and #517) that relate to this opportunity, and still do not see any reason to abandon it. Why not? Even if Mongoose should maintain compatibility with the ES5, this does not prevent to check that the setter returns to us. Watch this pseudo-code:

if (setterResult.constructor.name === 'Promise' && setterResult.then) {
  promisesArray.push(setterResult.then(
    value => {
      return {
        path: path,
        value: value
      };
    },
    err => {
      return err;
    }
  ));
}

// ...

if (promisesArray.length){
  return Promise.all(promisesArray).then(
    results => {
      for (let result of results) {
        // Do anything with it
      }
      // Do anything with all fields
      return this.save();
    },
    errors => {
      for (let err of errors) {
        // Do anything with it
      }
      return errors;
    }
  );
} else {
  // Do anything with all fields
  return this.save();
}

So why not? This is a very useful feature, and it will join naturally in existing.

vkarpov15 commented 8 years ago

Yeah async setters would be useful. It's more difficult than you think, because the setter would need to resolve before doing validate(), and you'd need to return a promise from .set() because .set() can throw an error if there's a cast error.

maxs15 commented 7 years ago

Would love to see that coming in Mongoose ! Do you plan to implement that in a next release @vkarpov15 ?

vkarpov15 commented 7 years ago

@maxs15 possibly. Still haven't investigated how we would implement this feature, so uncertain.

c0d0g3n commented 7 years ago

I've written a little plugin to mock async getters/setters until it lands in the core. It uses different properties (read instead of get and write instead of set) to simplify things and middleware (pre init and post save for getters and pre save for setters). It is by no means perfect (I'm especially not happy how it interacts with validators) but it gets the job done.

You can try it here and leave your opinion.

vkarpov15 commented 7 years ago

I like this plugin but there's a few caveats, we'd also have to integrate this queries, because we also support doing things like findByIdAndUpdate(doc, doc)

Ulrikop commented 6 years ago

I would be happy to see that feature.

What's the status?

Zwimber commented 6 years ago

+1

bigslycat commented 6 years ago

May be we ready for PR? Oh I wait this so long. =)

Matzu89 commented 5 years ago

Hi what is status on this?

Library worked great with mongoose 4.

vkarpov15 commented 5 years ago

@Matzu89 what library?

lvkins commented 3 years ago

Any update on this?

gaborszita commented 3 years ago

This would be a great feature to add.

sol-villar commented 5 hours ago

Resurrecting this old thread since it is still the latest for this issue, and trying to bump it for visibility.

For my use case, I have a couple of fields that need to be encrypted with libsodium before saving, and that needs to be done asynchronously. As of now I can't use neither get/set, nor a virtual getter/setter and had to settle on using a pre save method which is far from ideal.