I am implementing a RESTful web service that accesses a database. Entities in the database are versioned to detect multiple updates. For instance if the current value is {"name":"Bill", "comment":"tinker", "version":3}
, if one user does a PUT of {"name":"Bill", "comment":"tailor", "version":3}
, the request will succeed (200 OK) and the new value will be {"name":"Bill", "comment":"tailor", "version":4}
. If a second user does a PUT of {"name":"Bill", "comment":"sailor", "version":3"}
that request will fail (409 Conflict) because the version number does not match.
There are existing non-RESTful interfaces, so the design of the databases cannot be changed. The RESTful interface calls an existing interface that handles the details of checking the version.
A rule of thumb in RESTful web services is to follow the details HTTP whenever possible. Would it be better in this case to use a conditional header in the request and return 712 Precondition Failed if the version does not match? The appropriate header appears to be If-Match. This header takes an ETag (Entity Tag) which could be a hash of the representation of the current state of the resource.
If I did this, the ETags would be for appearances' sake, because the version would still be the real thing I'm testing for.
Is there any reason I should do this, other than "making it more RESTful", whatever that is supposed to mean?