Model/View/Controller (MVC)

Carson Gross

A common objection I see to using htmx and hypermedia is something along the lines of:

The problem with returning HTML (and not JSON) from your server is that you’d probably also like to serve mobile apps and don’t want to duplicate your API

I have already outlined in another essay that I think you should split your JSON API & your hypermedia API up into separate components.

In that essay I explicitly recommend “duplicating” (to an extent) your API, in order to disentangle your “churny” web application API endpoints that return HTML from your stable, regular & expressive JSON Data API.

In looking back at conversations I’ve had around this idea with people, I think that I have been assuming familiarity with a pattern that many people are not as familiar with as I am: the Model/View/Controller (MVC) pattern.

#An MVC Intro

I was a little shocked to discover in a recent podcast that many younger web developers just don’t have much experience with MVC. This is perhaps due to the Front-end/Back-end split that occurred when Single Page Applications became the norm.

MVC is a simple pattern that predates the web and can be with nearly any program that offers a graphical interface to a user.

The rough idea is as follows:

There are a lot of variations, but that’s the idea.

Early on in web development many server side frameworks explicitly adopted the MVC pattern. The implementation that I’m most familiar with is Ruby On Rails, which has documentation on each of these topics: Models that are persisted to the database, Views for generating HTML views, and Controllers that coordinate between the two.

The rough idea, in Rails, is:

Rails has a fairly standard (although somewhat “shallow” and simplified) implementation of the MVC pattern, built on top of the underlying HTML, HTTP Request/Response lifecycle.

#Fat Model/Skinny Controller

One concept that came up a lot in the Rails community was the notion of “Fat Model, Skinny Controller”. The idea here is that your Controllers should be relatively simple, only maybe invoking a method or two on the Model and then immediately handing the result on to a View.

The Model, on the other hand, could be much “thicker” with lots of domain specific logic. (There are objections that this leads to God Objects, but let’s set that aside for now.)

Let’s keep this idea of fat model/skinny controller in mind as we work through a simple example of the MVC pattern and why it is useful.

#An MVC-Style Web Application

For our example, let’s take a look at one of my favorites: an online Contacts application. Here is a Controller method for that application that displays a given page of Contacts by generating an HTML page:

@app.route("/contacts")
def contacts():
    contacts = Contact.all(page=request.args.get('page', default=0, type=int))
    return render_template("index.html", contacts=contacts)

Here I’m using Python and Flask, since I use those in my Hypermedia Systems book.

Here you can see that the controller is very “thin”: it simply looks up contacts via the Contact Model object, passing a page argument in from the request.

This is very typical: the Controllers job is to map an HTTP request into some domain logic, pulling HTTP-specific information out and turning it into data that the Model can understand, such as a page number.

The controller then hands the paged collection of contacts on to the index.html template, to render them to an HTML page to send back to the user.

Now, the Contact Model, on the other hand, may be relatively “fat” internally: that all() method could have a bunch of domain logic internally that does a database lookup, pages the data somehow, maybe applies some transformations or business rules, etc. And that would be fine, that logic is encapsulated within the Contact model and the Controller doesn’t have to deal with it.

#Creating A JSON Data API Controller

So, if we have this relatively well-developed Contact model that encapsulates our domain, you can easily create a different API end point/Controller that does something similar, but returns a JSON document rather than an HTML document:

@app.route("/api/v1/contacts")
def contacts():
    contacts = Contact.all(page=request.args.get('page', default=0, type=int))
    return jsonify(contacts=contacts)

#But You Are Duplicating Code!

At this point, looking at these two controller functions, you may think “This is stupid, the methods are nearly identical”.

And you’re right, currently they are nearly identical.

But let’s consider two potential additions to our system.

#Rate Limiting Our JSON API

First, let’s add rate limiting to the JSON API to prevent DDOS or badly written automated clients from swamping our system. We’ll add the Flask-Limiter library:

@app.route("/api/v1/contacts")
@limiter.limit("1 per second")
def contacts():
    contacts = Contact.all(page=request.args.get('page', default=0, type=int))
    return jsonify(contacts=contacts)

Easy.

But note: we don’t want that limit applying to our web application, we just want it for our JSON Data API. And, because we’ve split the two up, we can achieve that.

#Adding A Graph To Our Web Application

Let’s consider another change: we want to add a graph of the number of contacts added per day to the index.html template in our HTML-based web application. It turns out that this graph is expensive to compute.

We do not want to block the rendering of the index.html template on the graph generation, so we will use the Lazy Loading pattern for it instead. To do this, we need to create a new endpoint, /graph, that returns the HTML for that lazily loaded content:

@app.route("/graph")
def graph():
    graphInfo = Contact.computeGraphInfo(page=request.args.get('page', default=0, type=int))
    return render_template("graph.html", info=graphInfo)

Note that here, again, our controller is still “thin”: it just delegates out to the Model and then hands the results on to a View.

What’s easy to miss is that we’ve added a new endpoint to our web application HTML API, but we haven’t added it to our JSON Data API. So we are not committing to other non-web clients that this (specialized) endpoint, which is being driven entirely by our UI needs, will be around forever.

Since we are not committing to all clients that this data will be available at /graph forever, and since we are using Hypermedia As The Engine of Application State in our HTML-based web application, we are free to remove or refactor this URL later on.

Perhaps some database optimization suddenly make the graph fast to compute and we can include it inline in the response to /contacts: we can remove this end point because we have not exposed it to other clients, it’s just there to support our web application.

So, we get the flexibility we want for our hypermedia API, and the features we want for our JSON Data API.

The most important thing to notice, in terms of MVC, is that because our domain logic has been collected in a Model, we can vary these two APIs flexibly while still achieving a significant amount of code reuse. Yes, there was a lot of initial similarity to the JSON and HTML controllers, but they diverged over time.

At the same time, we didn’t duplicate our Model logic: both controllers remained relatively “thin” and delegated out to our Model object to do most of the work.

Our two APIs are decoupled, while our domain logic remains centralized.

(Note that this also gets at why I tend not to use content negotiation and return HTML & JSON from the same endpoint.)

#MVC Frameworks

Many older web frameworks such as Spring, ASP.NET, Rails have very strong MVC concepts that allow you to split your logic out in this manner extremely effectively.

Django has a variation on the idea called MVT.

This strong support for MVC is one reason why these frameworks pair very well with htmx and those communities are excited about it.

And, while the examples above are obviously biased towards Object-Oriented programming, the same ideas can be applied in a functional context as well.

#Conclusion

I hope that, if it is new to you, that gives you to a good feel for the concept of MVC and shows how that, by adopting that organizational principle in your web applications, you can effectively decouple your APIs while at the same time avoiding significant duplication of code.

</>