Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

devise-doorkeeper

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

devise-doorkeeper

  • 1.2.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Build Status

Devise::Doorkeeper

Integrates OAuth2 tokens from the Doorkeeper gem into Devise authentication strategies

Devise/Doorkeeper Integration

Devise and Doorkeeper are complimentary gems. Doorkeeper's job is to dispense OAuth2 tokens and Devise's job is to ensure your resources are protected from unauthenticated requests.

The devise-doorkeeper gem allows your existing Devise application to accept OAuth2 tokens created by the Doorkeeper authorization flow.

This means you do not need to update your controllers to use the doorkeeper_authorize! filter and can use the standard Devise authenticate_user! methods instead.

Installation

Add this line to your application's Gemfile:

gem 'devise-doorkeeper'

Configuration

Update doorkeeper config

Update your config/initializers/doorkeeper.rb to call Devise::Doorkeeper.configure_doorkeeper(self).

# config/initializers/doorkeeper.rb
Doorkeeper.configure do
  Devise::Doorkeeper.configure_doorkeeper(self)

  # extra configuration goes below
end
Update devise config

Update your config/initializers/devise.rb to call Devise::Doorkeeper.configure_devise.

# config/initializers/devise.rb
Devise.setup do |config|
  Devise::Doorkeeper.configure_devise(config)

  # extra configuration goes below
end
Add :doorkeeper to your list of devise modules
# example app/models/user.rb
class User
  devise :doorkeeper
end
Ensure controllers have authentication enabled
# example app/controllers/comments_controller.rb
class CommentsController < ApplicationController
  before_action :authenticate_user!

  def index
    # this action is protected
    # the devise-doorkeeper gem will permit access via valid OAuth2 tokens
  end
end
(optional) Disable session storage

Most API's should not create sessions for each API request. This can be configured via the Devise skip_session_storage setting.

# config/initializers/devise.rb
config.skip_session_storage = [:http_auth] # this is the default devise config
config.skip_session_storage << :doorkeeper # disable session storage for oauth requests

Contributing

  1. Fork it ( https://github.com/betterup/devise-doorkeeper/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

FAQs

Package last updated on 03 Mar 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc