Failure, APIs, and Error Conditions
- Due Feb 23, 2018 by 11:59pm
- Points 13
- Submitting a file upload
- Available after Feb 8, 2018 at 7am
Part 1: Add/Drop API
Suppose you are designing an API to process class adds and drops for BYU. The basic form of the URL is
/classes/:cid/students
where :cid is the class ID.
Performing a POST on this URL with a body that includes a student ID would add the student to the class.
Performing a DEL on this URL with a student ID as a suffix drops the student from the class like so
/classes/:cid/students/:sid
where :sid is the student ID.
In most cases, the system will return a 200 status code signifying that the action has been taken and all is well.
But what happens if something goes wrong?
Consider the following scenarios:
- A POST is made to add a class for which
- the student doesn’t have the proper prerequisites.
- the class is full and the student needs an add code
In these cases, the add cannot happen.
- A DEL is made to drop a class that is a prerequisite for a course that the student has already registered for the next semester. In this case, the drop can happen only after the postrequisite course is dropped.
Design the responses in keeping with the ideas in How to GET a Cup of Coffee Links to an external site. for the success condition and each of these error conditions that specifies:
- The status code
- Any headers
- The response body
Ensure that the response body includes information about how the client can make forward progress where applicable. If you use relationship attributes (rel) be sure to define what they mean. In contemplating your solution, ask yourself “what are the reasonable next states in this process?”
Part 2: Conversations
Consider a student process (usually being run by the student, but not necessarily) to add and drop a class using your API.
Draw a diagram showing the conversations between the student process and the API you designed in Part 1 like the one in Figure 2 of Your Coffee Shop Doesn’t Use Two-Phase Commit Links to an external site.. Consider only the case where the class is full and the student must get an Add Code.
Consider the following questions:
- Do you need queues in the interaction between the student and the Add/Drop API? Why or why not?
- How would correlation identifiers be used in the Add/Drop API?
- Are there transactional concerns in adding and dropping classes? Explain.
- Are there isolation concerns in this conversation? What is the appropriate solution?
Submission
Turn in
- the responses for the four conditions (success and the three failures)
- your conversation diagram
- the answers to the preceding questions