We have an existing web app that can score an essay.
A user can start a new revision of an essay, save it, resume it or submit it (for scoring). Once the revision is submitted it is marked as a COMPLETE and it is not later changed. If the user starts a new revision the previous response will be copied to the current revision. If the user resumes the revision - he works with the current revision (that is IN PROGRESS). The saved but not submitted revision is 'IN PROGRESS' state.
We need to design an API that would allow to do the same things in the client app.
As the first step we need to get the latest version of the essay (it might be in progress or complete or not existing yet (so return just a template)).
GET user/{userid}/revisions/mostrecent
The format of revision would be sth like this
<revision>
<id> </id>
<response> </response>
<status> </status>
</revision>
Later the client app should send the changed revision.
However I am not sure how to deal with different states of the essay revision ('IN PROGRESS', 'COMPLETE'), i.e. should the client app perform different PUT/POST operation based on the revision state or should it just POST sth and everything should be handled server-side (i believe it not RESTful API then)?
I would think that sending a new revision would be:
POST user/{userid}/revisions
And updating the current revision:
PUT user/{userid}/revisions/{id}
But how to distinguish that the revision should only be saved not submitted (by setting the status to 'INPROGRESS')?
And how to prevent from creating multiple IN PROGRESS revisions (the POST wouldn't be executed if there is already 'INPROGRESS' revision)?
How to prevent from updating the previous revisions (if status = COMPLETE then PUT is forbidden?)
Thanks for any hints or suggestions.
