24
votes

Imagine a web-application storing some data-resource with some id which stores three attachment (e.g. pdf) per datum.

The URL scheme is

data/{id}/attachment1
data/{id}/attachment2
data/{id}/attachment3

An RESTful API exists for the attachments providing GET/PUT/DELETE operations implementing CRUD operations on the server side.

Letting the id be 123, I would like to perform an operation where

  • attachment1 is replaced by a new attachment (such that GET file/123/attachment1 returns the a new attachment)
  • attachment2 is deleted (such that that GET file/123/attachment2 returns 404)
  • attachment3 remains unchanged.

The update should be atomic - the complete update is performed by the server or nothing at all.

Applying a simple PUT file/123/attachment1 and DELETE file/123/attachment2 is not atomic, since the client could crash after the PUT and the server has no hint that he should do a rollback in this case.

So how do I implement the operation in a RESTful way?

I've thought of two solutions but they both do not seem to be 100% RESTful:

  • Use PATCH (could be PUT, but PATCH better reflects the semantics of an partial update) with multipart/form-data on data/123: The multipart/form-data is a sequence of entities consisting of a new "application/pdf" associated with the field "attachment1" and something which would represent a null-value to denote deletion of attachment2.

While this ensures atomicity, I doubt this is RESTful since i overload the PATCH method using different parameter lists, which violates the uniform-interface constraint.

  • Use a resource representing a transaction. I could POST the data id 123 to a transaction-URL which would create a transaction resource representing a copy of the current state of the data-resource stored on the server, e.g. transaction/data/123. Now i can call PUT and DELETE on the attachments of this temporary resource (e.g. DELETE transaction/data/123/attachment2) and communicate the commit of this version of the resource to the server via a PUT on transaction/data/123. This ensures atomicity while a have to implement additional server side logic to deal with multiple clients changing the same resource and crashed clients which never committed.

While this seems to be consistent with REST it seems to violate the contraint of statelessness. The state of the transactional resource is not service state but application state, since every transactional resource is associated with a single client.

I'm kind of stuck here, so any ideas would be helpful, thanks!

4
The second approach has the benefit of providing a nice history of data changes and might let you skip some logging. - Jasper
@mtsz I'm struggling with this problem right now. I like the answer you selected below, but it seems like a lot of work to create a transaction resource with a short, temporary lifespan. Do you think it would be bad to give the atomic transaction to be performed a name like "switcheroo" and just create a specific web service that performs that transaction? e.g., POST /doSwitcheroo with a body of {fileId: 123} .... This service would have the logic to atomically perform the actions you described above on the file with id 123 - Niko Bellic

4 Answers

16
votes

You want to use the second option, the transaction option.

What you're missing is the creation of the transaction:

POST /transaction

HTTP/1.1 301 Moved Permanently
Location: /transaction/1234

Now you have a transaction resource that is a first class citizen. You can add to it, delete from it, query to see its current contents, and then finally commit it or delete (i.e. rollback) the transaction.

While the transaction is in progress, it's just another resource. There's no client state here. Anyone can add to this transaction.

When its all done, the server applies the changes all at once using some internal transaction mechanism that's out of scope here.

You can capture things like Etags and if-modified headers in the transaction sub actions so that when they're all applied, you know that something didn't change behind your back.

5
votes

Very interesting question. A C.S. professor at university of Lugano (Switzerland) wrote some slides about this situation:

http://www.slideshare.net/cesare.pautasso/atomic-transactions-for-the-rest-of-us

However I'm not really sure that the solution he provide is totally RESTful because it doesn't seem really stateless on the server side.

Being honest, since the transaction itself is composed by multiple states, I don't think there can be a totally RESTful solution for this problem.

0
votes

Assuming your URIs are hierarchical:

PUT data/{id}
[attachment2,attachment3]

Part of your problem is that attachment1/2/3 is a terrible identifier. An index should never be part of your URIs.

0
votes

I am not experienced, but I have an idea for a solution as I am facing exactly this problem in development.

Firstly, I use the analogy of me (client) sending a message to Fred1 in a house (server with resources) that I want him to turn off the light switch (change state of part of a resource) and turn on the kettle (change state of another part of the resource). After turning off the light switch Fred, unfortunately, has a heart attack.

Now I have got nothing back from Fred to say whether or not he did what I asked. Fred is replaced by another Fred. The message I sent has received no answer. The only way I can proceed is to ask Fred2 if the light switch is off and the kettle is on (the resource is in the state I would expect after I asked him to do stuff for me). This is an unfortunate state of affairs (error) and adds to my workload, but I can now proceed on the basis that I know what Fred1 did before his heart attack. I can either go back to the drawing board (inform user that something went wrong and we need to re-do it) or make the changes that would complete my request if that is still relevant (turn on the kettle).

This is the beginning of how I would do it, there are obviously concern re scope, but if I have already defined my scope (I'm only interested in the light switch and the kettle) then I should have enough information (knowing the state of the light switch and the kettle) to give a new command to Fred2 without going back to the user for instruction.

How does that sound?