This rails engine adds config on top of Warden, we build strategies on engine, help easy integration with rails app.
To experiment with that code, run bin/console
for an interactive prompt.
TODO: Delete this and the text above, and describe your gem
Add this line to your application's Gemfile:
gem 'warden_lake'
And then execute:
$ bundle
Or install it yourself as:
$ gem install warden_lake
To create new warden initializer under config/initializers/
, and name
it warden.rb
. for example:
# config/initializers/warden.rb
Warden::Strategies.add(:password_strategy, WardenLake::Strategies::PasswordStrategy)
Rails.application.config.middleware.use Warden::Manager do |manager|
manager.default_strategies :password_strategy
manager.failure_app = WardenLake::Delegator.new
end
You also found more detail on Warden
To config WardenLake in warden.rb
, append config after warden config
WardenLake.scope_mapping = {user: User}
WardenLake.default_scope = :user
WardenLake.identity_field = :username
The scope
is come from warden, sometimes, you need authenticating
admin, user in you rails application
if you have admin
, user
, you could set which scope mapping which
model.
WardenLake.scope_mapping = {user: User, admin: Admin}
The Value User
, Admin
is rails model which will used in strategies,
and password_strategy
is default used them.
the identity_field
should be one field on authenticated model, if we
used email
to login, we should make config as follow:
WardenLake.identity_field = :email
WardenLake integrated authentication with warden's strategry, so only
need mixin authenticated helpers in ApplicationController.
Finally, you should adding before_action
in ApplciationController, for
example:
class ApplicationController < ActionController::Base
include WardenLake::Authentication
before_action authenticate_user
def authenticate_user
if !warden.authenticated? && current_user.blank?
redirect_to sign_in_path
end
end
def current_user
if warden && warden.user
@current_user ||= User.find(warden.user['id'])
end
end
end
You need make authentication when you have done configuration.
WardenLake provide fallback
as failure redirection when
authenticating. For example, user login case:
if warden.authenticate!(fallback: "#{controller_path}#new")
redirect_to get_started_path, notice: 'Logged in'
else
render new_auths_sessions_path, alert: warden.message
end
Putting fallback
option in authenticate!
method, fallback should be
format in append with #
between controller_path and action name, and
it should be "login path"
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/craftingbot/warden_lake. 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.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the WardenLake project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.