Easy way to authentication and authorization for ActiveRecord based on Sorcery. Curupira will help you quickly develop an application that uses authentication and authorization rules with database.
By Pródiga Sistemas.
Curupira works with rails 4.0 or onwards. Add curupira to your Gemfile:
gem 'curupira'And run:
bundle installIt's necessary to setup user and password on database.yml. Ex:
user: "postgres"
password: "postgres"After this, run:
rake db:createrails generate curupira:installThe generator will install an initializer which describes ALL of Sorcery's configuration options, models and migrations for authentication and authorization solution.
So, run migrations:
rake db:migrateYou have to add an admin user to application. Edit the seeds.rb file:
User.create(username: "user", name: "Default Admin User", email: "user@mail.com", password: "123456", admin: true)Then run:
rake db:seedRun the following task:
rake curupira:db:generate_featuresReplace your en.yml file by curupira/spec/dummy/config/locales/en.yml
If you dont't have root path configurations on your applications, follow these step:
Add this line to routes.rb file:
root to: "home#index"Create the home controller:
class HomeController < ApplicationController
def index
end
endCreate the index home page:
app/views/home/index.html.erbCurupira will provide some helpers to use inside controllers and views. To setup controller with user authentication, just add this before_action:
before_action :require_loginCurupira will provide all features and Sorcery api.
To authorization, add filter authorize on ApplicationController.
before_action :authorizeCurupira will generate views to add users, roles, groups and features in database. You can customize it.
rails generate curupira:viewsFor default, the curupira views use coccon for nested forms.
If the customization at the views level is not enough, you can customize each controller:
rails generate curupira:controllersYou should add in application.html.erb partials for menu, and helper for display flash messages:
<%- flash.each do |name, msg| -%>
<%= content_tag :div, msg, id: "flash_#{name}" %>
<%- end -%>
<%= render "curupira/shared/session_links" %>
<%= render "curupira/shared/model_links" %>
<%= yield %>- Add to your application.js
//= require jquery
//= require cocoonOpen http://localhost:3000/session/new and inform the same user configured on seed file.
Curupira is released under the MIT License.