Go to file
dependabot[bot] ffc9f44b7f
Update rake requirement from ~> 10.0 to ~> 13.0 (#4)
Updates the requirements on [rake](https://github.com/ruby/rake) to permit the latest version.
- [Release notes](https://github.com/ruby/rake/releases)
- [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc)
- [Commits](https://github.com/ruby/rake/compare/v10.5.0...v13.0.1)

Signed-off-by: dependabot[bot] <support@github.com>
2020-02-29 15:33:47 -06:00
.vscode Initial commit for keycloak - opend id support 2018-12-16 15:45:33 -06:00
bin fixed issues with gem release 2018-12-16 16:52:37 -06:00
lib update gems for CVE-2018-16471 2018-12-16 17:53:46 -06:00
spec Initial commit for keycloak - opend id support 2018-12-16 15:45:33 -06:00
.gitignore Initial commit for keycloak - opend id support 2018-12-16 15:45:33 -06:00
.rspec Initial commit for keycloak - opend id support 2018-12-16 15:45:33 -06:00
.travis.yml Initial commit for keycloak - opend id support 2018-12-16 15:45:33 -06:00
CODE_OF_CONDUCT.md Initial commit for keycloak - opend id support 2018-12-16 15:45:33 -06:00
Gemfile Initial commit for keycloak - opend id support 2018-12-16 15:45:33 -06:00
Gemfile.lock Update rake requirement from ~> 10.0 to ~> 13.0 (#4) 2020-02-29 15:33:47 -06:00
LICENSE.txt Initial commit for keycloak - opend id support 2018-12-16 15:45:33 -06:00
README.md Adding Devise Documentation (#1) 2019-04-19 09:11:37 -05:00
Rakefile Initial commit for keycloak - opend id support 2018-12-16 15:45:33 -06:00
omniauth-keycloak.gemspec Update rake requirement from ~> 10.0 to ~> 13.0 (#4) 2020-02-29 15:33:47 -06:00

README.md

Omniauth::Keycloak

Installation

Add this line to your application's Gemfile:

gem 'omniauth-keycloak'

And then execute:

$ bundle

Or install it yourself as:

$ gem install omniauth-keycloak

Usage

OmniAuth::Strategies::Keycloak is simply a Rack middleware. Read the OmniAuth docs for detailed instructions: https://github.com/intridea/omniauth.

Here's a quick example, adding the middleware to a Rails app in config/initializers/omniauth.rb:

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :keycloak_openid, 'Example-Client', '19cca35f-dddd-473a-bdd5-03f00d61d884',
    client_options: {site: 'https://example.keycloak-url.com', realm: 'example-realm'}
end

Devise Usage

Adapted from Devise OmniAuth Instructions

# app/models/user.rb
class User < ApplicationRecord
  #...
  devise :omniauthable, omniauth_providers: %i[keycloakopenid]
  #...
end

# config/initializers/devise.rb
config.omniauth :keycloak_openid, "Example-Client-Name", "example-secret-if-configured", client_options: { site: "https://example.keycloak-url.com", realm: "example-realm" }, :strategy_class => OmniAuth::Strategies::KeycloakOpenId

# Below controller assumes callback route configuration following 
# in config/routes.rb
Devise.setup do |config|
  # ...
  devise_for :users, controllers: { omniauth_callbacks: 'users/omniauth_callbacks' }
end

# app/controllers/users/omniauth_callbacks_controller.rb
class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
  def keycloakopenid
    Rails.logger.debug(request.env["omniauth.auth"])
    @user = User.from_omniauth(request.env["omniauth.auth"])
    if @user.persisted?
      sign_in_and_redirect @user, event: :authentication
    else
      session["devise.keycloakopenid_data"] = request.env["omniauth.auth"]
      redirect_to new_user_registration_url
    end
  end

  def failure
    redirect_to root_path
  end
end

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/ccrockett/omniauth-keycloak. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

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

Code of Conduct

Everyone interacting in the Omniauth::Keycloak projects codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.