krainboltgreene/authn-rails

View on GitHub
README.md

Summary

Maintainability
Test Coverage
AuthN Rails
-----------

  - [![Gem Version](https://badge.fury.io/rb/authn-rails.png)](https://rubygems.org/gems/authn-rails)
  - [![Code Climate](https://codeclimate.com/github/krainboltgreene/authn-rails.png)](https://codeclimate.com/github/krainboltgreene/authn-rails)
  - [![Build Status](https://travis-ci.org/krainboltgreene/authn-rails.png)](https://travis-ci.org/krainboltgreene/authn-rails)
  - [![Dependency Status](https://gemnasium.com/krainboltgreene/authn-rails.png)](https://gemnasium.com/krainboltgreene/authn-rails)
  - [![Coverage Status](https://coveralls.io/repos/krainboltgreene/authn-rails/badge.png?branch=master)](https://coveralls.io/r/krainboltgreene/authn-rails)

authn-rails is an extention of the AuthN library to give easy integration into Rails framework.


Using AuthN Rails
=================

To start using authn you simply need to install and hook up to your existing "user" model:

``` ruby
# create_table :accounts do |t|
#   t.string :email
#   t.binary :password_digest
#
#   t.timestamps
# end
# add_index :accounts, :email
#

class Account < ActiveRecord::Base
  include AuthN::Model

  has_authentication
  has_secure_password

  validates :email, uniqueness: true, presence: true, length: 5..255
  validates :password, length: 10..1024

  attr_accessible :email
end
```

See?
No muss, no fuss.
Now what about all those addons?
We'll you can see their own pages, but here's a taste:

``` ruby
# create_table :accounts do |t|
#   t.string :email
#   t.binary :password_digest
#
#   t.string :activation_token
#   t.boolean :activation_state, default: false
#   t.datetime :activation_expires_at
#
#   t.string :password_recovery_token
#   t.datetime :password_recovery_expires_at
#
#   t.string :login_protection_token
#   t.datetime :login_protection_expires_at
#   t.integer :login_protection_attempts, default: 0
#
#   t.timestamps
# end
# add_index :accounts, :email
# add_index :accounts, :activation_token
# add_index :accounts, :activation_state
# add_index :accounts, :password_recovery_token
# add_index :accounts, :login_protection_token
#

class Account < ActiveRecord::Base
  include AuthN::Model

  has_authentication
  has_password_recovery mailer: "PasswordRecoveryMailer"
  has_activation mailer: "ActivationMailer", on_create: false
  has_login_protection maximum: 3, redirect: { controller: :accounts, action: :maximum_login_failure }
  has_secure_password

  validates :email, uniqueness: true, presence: true, length: 5..255
  validates :password, length: 10..1024

  attr_accessible :email
end
```

You'll notice that there are options after some of the addon singleton methods.
These are used to overwrite the global configuration.
authn assumes quite a few things, but never stops you from changing how it works.
As above you can change how each of your "user" models functions (for say admin recovery emails vs support recovery emails).
You can programatically write the "global" configuration by editing the `config/initializers/authn.rb` file.


Installing AuthN Rails
======================

Add this line to your application's Gemfile:

    gem 'authn-rails'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install authn-rails

You're all setup and can follow the examples above.
However if you want to fine tune your AuthN install simply run this generator:

    $ rails generate authen:config

If you want to use a model for users other than the default "Account":

    $ rails generate authen:config --model SomeUserModel


Contributing
============

  1. Fork it
  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 new Pull Request


License
=======

    Copyright (c) 2012 Kurtis Rainbolt-Greene

    MIT License

    Permission is hereby granted, free of charge, to any person obtaining
    a copy of this software and associated documentation files (the
    "Software"), to deal in the Software without restriction, including
    without limitation the rights to use, copy, modify, merge, publish,
    distribute, sublicense, and/or sell copies of the Software, and to
    permit persons to whom the Software is furnished to do so, subject to
    the following conditions:

    The above copyright notice and this permission notice shall be
    included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.