couchdb icon indicating copy to clipboard operation
couchdb copied to clipboard

Invoking update function when changing document in Fauxton

Open hubodz opened this issue 1 year ago • 3 comments

Hello, I would like to add a simple functionality using update function in design document. I would like it to be invoked when a document is changed/created in Fauxton. Normally, one has to call the update function explicitly, but this (I believe) not possible with Fauxton.

Is there any way to achieve behaviour described above? Maybe it's possible to set an update function as default, so it doesn't require explicit call?

Thanks!

hubodz avatar Apr 28 '24 12:04 hubodz

It is not possible. Clients must call through to the appropriate _update handler url explicitly.

rnewson avatar Apr 28 '24 13:04 rnewson

Thank you! Do you think the idea I described could be proposed as enhancement to Couch, or there are reasons to not go that way?

hubodz avatar Apr 28 '24 17:04 hubodz

The idea has come up before but it is has always been rejected, for similar reasons to your other ticket.

What you can do is use a validate_doc_update function to ensure only valid updates are made (you can compare the new incoming update to the current document to ensure any state transition constraints) and provide an update handler to your clients to make it easier to create a valid update.

rnewson avatar Apr 29 '24 06:04 rnewson