Original Article on http://ryanlabouve.com/jwt-rails-api-challenge/
Here's the goal:
Quick and simple Rails API that is JSON API compliant and has secure resources (via JWT) and non-secure resources.
Our scenario:
An read-only API to power a blog that has public posts (accessible by anyone) and private posts (only accessible to users who are logged in).
Notes:
- JWT authentication will be implemented using knock
- JSON API compliance will be accomplished via JSONAPI::Resources
- I'll link out to relevant tests, with comments on what's being test, but try to keep the article quick.
At any point, feel free to checkout the finished code. Let's get started rails-api new rails-api-jwt-toy-blog
.
Posts will be a base class for PrivatePosts and PublicPosts. For the schema, we want Post(title:string, body:text, type:string)
where the type
colum will for singe-table inheritance
to make the PublicPost and PrivatePost inherit gracefully form Post.
(For more on single-table inheritance, check out (this post)[http://blog.arkency.com/2013/07/sti/])
rails g model Post title:string body:text type:string
touch app/models/private_post.rb
touch app/models/public_post.rb
Then I went ahead and setup PublicPost
and PrivatePost
as classes that inherit from Post
. This will come in handy later when we setup our resources.
# app/models/public_post.rb
class PublicPost < Post; end
and
# app/models/private_post.rb
class PrivatePost < Post; end
class Post < ActiveRecord::Base
validates :body, presence: true
validates :title, presence: true
validates :type, presence: true
POST_TYPES = %w(PublicPost PrivatePost)
validates :type, :inclusion => { :in => POST_TYPES }
end
At this point, we should have green tests and a working Post, PublicPost, and PrivatePost model. On to User
.
User
is what will log in to view PrivatePosts
.
We want the User
model to implement Rail's has_secure_password
. Using has_secure_password
, when we create a User
, we'll pass in a password
and password_confirmation
, rails will then encrypt and save their password as password_digest
. We'll be able to use this as a building block to later auth our users.
If you are using Rails Api, you'll need to add gem 'bcrypt'
to your Gemfile.
For the schema, we want User(email:string, name:email, password_digest:string
where password_digest
is required for has_secure_password
to work.
rails g model user password_digest:string name:string email:string
class User < ActiveRecord::Base
has_secure_password
validates :name, presence: true
validates :email, presence: true
end
At this point we have a working user model and green tests!
Now we'll create some seeds to give us some posts and users to play with.
Go ahead and add gem 'faker'
to your Gemfile and bundle install
.
# db/seeds.rb
Post.destroy_all
User.destroy_all
User.create!({
name: 'Lester Tester',
email: 'test@user.com',
password: 'test1234',
password_confirmation: 'test1234'
})
100.times do
PublicPost.create!(
title: Faker::Lorem.sentence,
body: Faker::Lorem.paragraphs
)
PrivatePost.create!(
title: Faker::Lorem.sentence,
body: Faker::Lorem.paragraphs
)
end
After this can run bundle exec rake db:seed
and verify this worked in rails console
.
rails c
> PublicPost.length # => 100
> PublicPost.first # => <PublicPost Object>
Now that we have our models and some dummy data, we'll want to expose it to the world by setting up our controllers, resources, and routing.
Let's introduce JSONAPI::Resources to the project by adding gem 'jsonapi-resources'
to the Gemfile.
- Generate your controller and write tests for
PublicPosts
rails g controller PublicPosts
.
And then set it up as a JSONAPI::Resources controller:
# app/controllers/public_posts_controller.rb
class PublicPostsController < ApplicationController
include JSONAPI::ActsAsResourceController
end
Next, let's write the tests for the PublicPosts
.
We want to GET /public-posts
and get a list of the public posts, and GET /public-posts/:id
to show a single post. Then, we should not be able to create, edit or delete. (Here are the tests: code)
- Generate
PublicPosts
resource and add to your routes.rb.
rails generate jsonapi:resource public_posts
class PublicPostResource < JSONAPI::Resource
immutable
attributes :title, :body
end
and then in routes
# config/routes.rb
jsonapi_resources :public_posts
Yay, passing tests! Now let's move onto our private posts.
We are using Knock to do JWT auth. Let's go ahead and set that up.
Add gem 'knock'
to your Gemfile and bundle install
.
Run rails generate knock:install
. This will add config/initializers/knock.rb
, which you may want to peruse the comments for additional configuration options.
Mount the engine in your routes.rb
to expose our authentication endpoints.
# config/routes.rb
...
mount Knock::Engine => "/knock"
...
Add the Knock::Authenticable
module in ApplicationController to expose Knock authentication methods to our controllers.
class ApplicationController < ActionController::API
include Knock::Authenticable
end
Then later we will be able to add before_action :authenticate
to our PrivatePosts
controller to preform the actual authentication.
(There's a bit of duplication here from the previous section to setup private posts due to their similarity to public posts.)
- Generate your controller and write tests for
Private Posts
rails g controller PrivatePosts
.
And then set it up as a JSONAPI::Resources controller:
# app/controllers/private_posts_controller.rb
class PrivatePostsController < ApplicationController
include JSONAPI::ActsAsResourceController
end
Next, let's write the tests for the PrivatePosts
.
We want to GET /public-posts
for authorized users and a 401
for unathroized users. Same things for the show routes of GET /public-posts/:id
. Then, we should not be able to create, edit or delete. (Here are the tests)
- Generate
PrivatePosts
resource and add to your routes.rb.
rails generate jsonapi:resource private_posts
class PrivatePostResource < JSONAPI::Resource
immutable
attributes :title, :body
end
and then in routes
# config/routes.rb
...
jsonapi_resources :private_posts
...
Now it's time to circle back around to adding authentication to our PrivatePosts
.
class PrivatePostsController < ApplicationController
include JSONAPI::ActsAsResourceController
before_filter :authenticate # added line
end
At this point, our tests are green and our challenge is complete!
Feel free to go check out the project
I've included the Paw file in the project: here.
For the sake of being generic, below I'll walk through how this works via CURL. And, we'll assume you are running this project on port 3000. If you are not, you'll need to make slight adjustments below.
Don't forget, for this to be very satisfying, you'll need to seed the database by running bundle exec rake db:seed
.
Highlights:
- Requst type of GET
- Header that needs to set
Content-Type: application/json
(which this will be the same for all calls for JSONAPI compliance)
curl -X "GET" "http://localhost:3000/public-posts/" \
-H "Content-Type: application/json"
If you try the same request on private posts, you'll get a 401
. This is actually a two part process.
Highlights:
- POST
- Pass in the email and password of the user setup in seeds.
- Knock expects the request to be wrapped in a json object called auth. Check the docs for more, and don't forget to check out the config file knock generaged for more customization options.
curl -X "POST" "http://localhost:3000/knock/auth_token" \
-H "Content-Type: application/json" \
-d $'{"auth": {"email": "test@user.com", "password": "test1234"}}
Output will be something like:
HTTP/1.1 201 Created
{"jwt":"eyJ0eXAiOiJKV1QiLCJhb..."}
The JWT token generated here is needed for the next request.
Highlights:
- The header
Authorization: Bearer [token]
is what auths our request, using the toekn from the previous step - Otherwise, it's the same request as the one for public-posts.
curl -X "GET" "http://localhost:3000/private-posts" \
-H "Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJI....." \
-H "Content-Type: application/json"