Giter Site home page Giter Site logo

issueapp / authlogic_bundle Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tsechingho/authlogic_bundle

1.0 1.0 1.0 212 KB

The authlogic/declarative_authorization based authentication/authorization system supported via engines and template of rails.

License: MIT License

authlogic_bundle's Introduction

Authlogic Bundle

This plugin will help you build up an authentication/authorization system easily. You can also customize it by rails built-in engines’ way.

This plugin uses work flow of registration as:

  1. The new user registers his/her login and email

  2. System sends activation instructions mail to the user

  3. The user follows up activation url in mail

  4. The user chooses authentication type (password / Open ID)

  5. System sends registration completion mail to the user

  6. The user is been instantly logged in

The user using password authentication can also reset his/her password.

  1. The user fills in his/her email in forgot password page

  2. System sends password reset instruction mail to the user

  3. The user follows up password reset url in mail

  4. The user chooses new password

  5. The user can log in with new password

The Role-Based Access Control (RBAC) is introduced, and you can design the authorization rules (DSL) in first place. Here gives sample rules.

  1. The anonymous (guest role) can create a new user (customer role).

  2. The logged-in user (customer role) can show and update his/her account.

  3. A special user “admin” (admin role) can manage all users.

The internationalization of interface and messages are built-in with english and chinese (zh-TW/zh-CN).

Requirements

  • rails gem (2.3.4+)

  • bcrypt-ruby gem

  • authlogic gem

  • ruby-openid gem

  • rack-openid gem

  • open_id_authentication plugin

  • authlogic_oid gem

  • declarative_authorization gem

  • ssl_requirement plugin

  • formtastic gem

  • validation_reflection gem

for testing:

  • rspec gem

  • rspec-rails gem

  • cucumber gem

  • webrat gem

  • bmabey-email_spec gem

Installation

If you start up a new rails application, you can

$ rails <your-app> -m http://github.com/tsechingho/authlogic_bundle/raw/master/templates/remote.rb

If you have an existing rails application, you can

$ cd <your-app>
$ git submodule add git://github.com/tsechingho/authlogic_bundle.git vendor/plugins/authlogic_bundle
$ rake rails:template LOCATION=vendor/plugins/authlogic_bundle/templates/base.rb SCM=git

If rails version >= 2.3.4, there are default data sets imported by

$ rake db:seed

And you can login with root/root (login/password).

Configuration

SSL will turn on in production mode and turn off in development/test mode automatically. If you want to switch manually, please set ENV = ‘on’ in environment.rb or start server with SSL variable like

$ SSL=on script/server

Customization

If you prepare to customize your own User model, please start by

$ cp vendor/plugins/authlogic_bundle/app/models/user.rb app/models
$ cp vendor/plugins/authlogic_bundle/app/models/user_session.rb app/models

Otherwise you will encounter “TypeError (can’t dup NilClass)” and “ApplicationHelper” error messages.

For complicated needs, please fork and modify the whole plugin.

Testing

If you want to run the cucumber features, you can

$ rake authlogic_bundle:features

Upgrades

It’s supposed you should modify your existing codes by yourself with newer version of authlogic_bundle or accessory plugins if this step is needed.

If you want to update the authlogic_bundle, you can

$ cd <your-app>/vendor/plugins/authlogic_bundle
$ git pull origin master
$ cd ../../..
$ git add vendor/plugins/authlogic_bundle
$ git commit -m 'update authlogic_bundle submodule'

If you want to update all plugins into edge, you can

$ cd <your-app>
$ rake rails:template LOCATION=vendor/plugins/authlogic_bundle/templates/update.rb

If you want to update all gems, you can

$ sudo gem update

Note on Patches/Pull Requests

  • Fork the project.

  • Make your feature addition or bug fix.

  • Add tests for it. This is important so I don’t break it in a future version unintentionally.

  • Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)

  • Send me a pull request. Bonus points for topic branches.

Copyright & License

Copyright © 2009 Tse-Ching Ho, released under the MIT license. See MIT-LICENSE for details.

authlogic_bundle's People

Contributors

tsechingho avatar rmoriz avatar msimkins avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.