No commit activity in last 3 years
No release in over 3 years
Rack middleware for API Version-specific Component Service redirection.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

= 1.14.6
= 1.1.0
= 2.8.1
= 4.6.1
= 2.14.1
= 1.0.0
= 1.0.2
= 5.10.1
= 3.4.2
= 0.10.0
= 12.0.0
= 4.5.6
= 0.47.1
= 0.14.1

Runtime

= 2.0.1
 Project Readme

Rack::ServiceApiVersioning

Join the chat at https://gitter.im/jdickey/rack-service_api_versioning

This Gem implements three Rack middleware components that, together, enable possibly multiple API Versions of one or more Component Services to be active at the same time. Incoming requests for a service specify their version requirements, if any, with an Accept HTTP header.


Contents

  • A Note on Terminology
    • Ubiquitous Language
    • Requirement-Level Keywords
  • Installation
  • Usage
    • An Overview of the Protocol
    • API Documentation
  • Development
    • Prerequisites
    • Running Tests
  • Contributing
  • License

A Note on Terminology

Ubiquitous Language

This Gem was developed to support a larger project involving a collection of separately packaged, independent Component Services communicating via HTTP, with any data transfer objects encoded as JSON. As such, these middleware components use a subset of that project's Ubiquitous Langauge, which is documented in the file UBIQUITOUS_LANGUAGE.md in the /doc directory.

These terms, when used in this or other documents, can be identified as probable Ubiquitous Language terms by their use of initial capital letters, as demonstrated by the usage of Ubiquitous Language itself.

Requirement-Level Keywords

Additionally, the keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119. These keywords must be styled in a strong ("bold") font face when used in this or other related documents; rendering them in grammatically-appropriate case rather than in ALL CAPS is a recommended variance from the RFC unless the author is certain that the audience will be viewing the content only as raw text, in which case the ALL CAPS styling is strongly recommended.

Installation

The middleware components in this Gem are intended for use in an API Version-independent Delivery Application, or AVIDA. They will not normally be used by API Version implementations or by other applications not developed using this protocol for API Version disambiguation. Therefore, this Gem will ordinarily be added to the Gemfile of such an AVIDA, rather than installed in the system Gem repository.

Add this line to the Gemfile for an API Version-independent Delivery Application:

gem 'rack-service_api_versioning'

And then execute:

$ bundle

Usage

An Overview of the Protocol

An application platform may be constructed of a number of separately-maintained components, including use case or use story implementations running as separate Primary Delivery Applications, or PDAs. Each of these is invoked by and interacts with other Component Services via HTTP, with data objects encoded using JSON. Each of these also is ordinarily versioned independently of others, which presents challenges when a Component Service and its PDA (collectively, a Target Service) are updated:

  • How do its collaborators, which may be implemented and maintained by different teams, ensure that they collaborate only with a known-good version of the Target Service when the possibility exists that new versions may introduce breaking changes?
  • How do new API Versions of the Target Service evolve and implement functionality, or even simple API changes, that introduce breaking changes without being hobbled by fealty to backwards compatibility?
  • Given the above, how can multiple API Versions of a given Target Service be deployed in the same system to meet the needs of different clients which have not all updated to the latest version due to API changes?
  • From an operational perspective, how can the system maintain adequate resilience if a newly-deployed API Version's PDA of a Service proves unreliable, yet all clients will happily work with previous API Versions if the new one is unavailable?
  • How can network- and server-related issues such as failover or migration be dealt with while maintaining continuous availability of the larger system?

One solution is to define a single Service Base URL for each Component Service, with the AVIDA application accessible via that URL existing solely to generate HTTP redirects to the Service Base URL for the Primary Delivery Application of a given API Version. The AVIDA must not implement code to serve Service Endpoints itself, as they will never be accessed when using the middleware correctly. The middleware components get information about the currently-available API Versions by querying a Repository; maintaining the correctness and currency of that data is outside the scope of this document (or this Gem).

In the accompanying API Documentation, we discuss the three artefacts directly involved with the use of the Rack middleware components in this Gem: the AVIDA (API Version-Independent Primary Delivery Application); the Repository containing information about currently available API Versions; and the API Implementation Primary Delivery Application (PDA).

API Documentation

As noted above, the API Documentation for the Rack middleware components implemented in this Gem, including overview and usage, is in a separate document.

Development

After checking out the repo, run bin/setup to install dependencies (which as of now must already be in­stalled on your local system). Then, run bin/rake test to run the tests, or bin/rake to run tests and, if tests are successful, further static-analysis tools (RuboCop, Flay, Flog, and RubyCritic).

To install your build of this Gem onto your local machine, run bin/rake install. We recom­mend that you uninstall any previously-installed "official" Gem to increase your confi­dence that your tests are running against your build. You should then be able to either run tests or test the middleware components from within your set of applications (AVIDA and PDA).

Prerequisites

The development setup as automated by bin/setup assumes that

  1. you're using rbenv for Ruby version management;
  2. you have the rbenv-gemset plugin installed (see here for a quick setup HOWTO).

Gemsets make life easier, both by maintaining a pristine system Gem repository and by guaranteeing that a program can be rebuilt with the exact same versions of Gems as was used to build a specific commit. Our use of Gemsets, as shown in the gemsets/setup_and_bundle.sh file and the gemspec, can be seen as "imposing a burden" on maintainence by requiring that Gem version updates be made consistently in both files, but it more than compensates for that by ensuring that each Gem directly used by our Gem doesn't have any "stealth updates" applied against it that risk changing functionality.

Running Tests

Running tests works just as you would expect for individual MiniTest::Spec test scripts; you can run a command line such as ruby test/rack/service_api_versioning/service_component_describer_test.rb to run a single test-spec file. Also, running rake and rake test works just as you'd expect for running the complete set of tests.

Contributing

  1. Fork it;
  2. Please open an issue on this repo so we can discuss your feature. Features which reflect a consensus reached are much more likely to be merged quickly;
  3. Create your feature branch (git checkout -b NNN-my-new-feature) where NNN is the issue number for the aforementioned discussion;
  4. Ensure that your changes are completely covered by passing specs, and comply with the Ruby Style Guide as enforced by RuboCop. To verify this, run bundle exec rake, noting and repairing any lapses in coverage or style violations;
  5. Commit your changes (git add .; git commit). Please do not use a single-line commit message (git commit -am "some message"). A good commit message notes what was changed and why in sufficient detail that a relative newcomer to the code can understand your reasoning and your code. We recommend (but do not yet enforce) commit messages conforming to these conventions;
  6. Push to the branch (git push origin NNN-my-new-feature). Remember that the first time pushing a branch to a remote requires an "unconditional" push (git push -u origin NNN-my-new-feature);
  7. Create a new Pull Request. In the initial message, reference the open issue where your feature has been discussed; if no such issue exists (why?), then describe at some length the rationale for your new feature; your implementation strategy at a higher level than each individual commit message; anything future maintainers should be aware of; and so on. Modifications to existing code must have been discussed in an issue for PRs containing them to be accepted and merged;
  8. Don't be discouraged if the PR generates further discussion leading to further refinement of your PR through additional commits. These should generally be discussed in comments on the relevant issue; discussion in the Gitter room (see below) may also be useful;
  9. If you've comments, questions, or just want to talk through your ideas, come hang out in the project's room on Gitter. Ask away!

License

The gem is available as open source under the terms of the MIT License.

Copyright © 2017, Jeff Dickey and Prolog Systems (Singapore) Private Limited.