You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The big benefits that we now get for free from Devise are:
- RCAVs that handle sign up, sign in, and sign out
- the `user_signed_in?` helper method, available within all views and controllers, that will return `true` or `false` depending on whether or not a user is signed in
- the `current_user` helper method, available within all views and controllers, that will retrieve the row from the Users table for whoever is currently signed in
- the `before_action :authenticate_user!` filter that we can use in our controllers to ensure someone is signed in before accessing any actions within that controller
arjunvenkat
revised
this gist May 13, 2015.
1 changed file
with
2 additions
and
2 deletions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -15,28 +15,38 @@ Devise will give you some setup instructions. We don't need to worry about most
> get "/", :controller => "photos", :action => "index"
Next, we need to secure one of our models with Devise. If you already have one, that's fine, but I usually use Devise to generate the model itself (rather than using `starter:resource`):
Next, we need to secure one of our models with Devise. If you already have a model (like User) created, skip down to the "Add Devise for existing model" section. Otherwise continue with the "Generate a new model with Devise" section.
### Generate a new model with Devise
Use the following command to generate a User model with Devise built-in. Replace the column names with ones that are relevant to your application.
rails g devise user username:string avatar_url:string
`rake db:migrate` and restart your server.
> If you already have rows in the users table and don't want to drop your database, you will have to go through a couple of extra steps to prevent errors.
>
> - First, add a column called "email" if you don't already have one.
> - Second, make sure that every existing row has a unique value for email.
>
> Then,
>
> rails g devise user
>
> - Finally, go into the migration file called "add_devise_to_users" and comment out the line that adds an email column.
>
> and
>
> rake db:migrate
>
> and restart your server.
### Add Devise for existing model
Skip down to "benefits" if you've just generated a new model with Devise
If you already have rows in the users table and don't want to drop your database, you will have to go through a couple of extra steps to prevent errors.
- First, add a column called "email" if you don't already have one.
- Second, make sure that every existing row has a unique value for email.
Then,
rails g devise user
- Finally, go into the migration file called "add_devise_to_users" and comment out the line that adds an email column.
and
rake db:migrate
and restart your server.
### Benefits
The big benefits that we now get for free from Devise are:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
We will be using the [Devise gem][2] to help us get started with authentication (are you who you say you are?) and authorization (are you allowed to do/see this?).
## Add sign-in/sign-out
- Add `gem 'devise'` to your Gemfile and `bundle`
-`rails g devise:install`
Devise will give you some setup instructions. We don't need to worry about most of them, but we do need to set a root URL. Usually, you will point the root URL to the index action of some important resource in your application: In `config/routes.rb`:
root 'photos#index'
> This is just a shortcut for setting a root URL the old way,
> get "/", :controller => "photos", :action => "index"
Next, we need to secure one of our models with Devise. If you already have one, that's fine, but I usually use Devise to generate the model itself (rather than using `starter:resource`):
rails g devise user username:string avatar_url:string
`rake db:migrate` and restart your server.
> If you already have rows in the users table and don't want to drop your database, you will have to go through a couple of extra steps to prevent errors.
>
> - First, add a column called "email" if you don't already have one.
> - Second, make sure that every existing row has a unique value for email.
>
> Then,
>
> rails g devise user
>
> - Finally, go into the migration file called "add_devise_to_users" and comment out the line that adds an email column.
>
> and
>
> rake db:migrate
>
> and restart your server.
The big benefits that we now get for free from Devise are:
- RCAVs that handle sign up, sign in, and sign out
- the `current_user` helper method, available within all views and controllers, that will retrieve the row from the Users table for whoever is currently signed in
- the `before_action :authenticate_user!` filter that we can use in our controllers to ensure someone is signed in before accessing any actions within that controller
There are lots more (password reset emails, etc), but these are the first ones that we care about.
The application layout file that is written by `rails g starter:style default` includes examples in the nav bar of what the sign-up/in/out links look like. You'll have to customize them a bit based on what you called your secure model. Notice the `data-method="delete"` attribute on the sign-out link -- that is important, and you need to include it. We'll talk about why next week.
## Customizing Devise Views
Devise does an incredible amount of work for us out of the box, but at some point, we will want to customize it; at the very least, we will want to make the sign-up and sign-in forms look nicer.
Assuming we are using `before_action :authenticate_user!` in our `ApplicationController` to force visitors to sign up or sign in before doing anything else, then the sign in page is our landing page, after all (try going to Twitter, Facebook, etc when signed out -- the landing page is really a sign-in page with some extra info thrown in). So it would be nice to be able to make it pretty.
More importantly, we will likely want to allow users to provide more information when they sign up or edit their profiles than simply their email addresses and passwords.
## Step One: Get Our Hands On The View Templates
The first problem is that we don't even have any code to edit in order to customize the view templates for sign-in, sign-up, edit profile, etc. That's because, by default, these templates are wrapped up inside the Devise gem.
It's really easy to have Devise generate copies of these templates that we can edit, though. And then our edited versions will take precedence. Simply run
rails g devise:views
There will now be a folder in your `app/views` folder called `devise`, with a whole bunch of stuff in it. What we are most interested in are the contents of the `registrations` and `sessions` subfolders. `app/views/devise/registrations/new.html.erb` is the sign up form, `registrations/edit.html.erb` is the edit profile form, and `sessions/new.html.erb` is the sign in form.
## Step Two: Modify The Markup
Devise's markup is a bit more advanced than what we had time to get to in class. We have, until now, only been writing raw HTML code by hand.
In practice, Rails developers often use built-in Ruby helper methods to generate HTML. This provides benefits in terms of security, brevity, etc.
Devise is using some of these helpers to draw the `<form>` and `<input>` elements in its forms, so we don't directly see those things in the view templates.
Instead, we see something like
<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %>
etc. Basically, the `form_for` helper method is spitting out the `<form>` tag, and each of the `f.____field` methods are spitting out the `<input>` tags.
### Add HTML Around The Helpers
You can write whatever HTML you want *around* these helpers; for example, Devise has already wrapped each label/input pair inside a `<div>`.
If we're adhering to [Bootstrap conventions for form markup][1], we should probably add `class="form-group"` to each of those. Also, we should remove the `<br />` tags that Devise includes.
### Add CSS Classes To The Helpers
You can also add CSS classes to the input tags they generate, like so:
There are various types of `____field` helpers; the most common are
-`f.text_field`
-`f.email_field`
-`f.password_field`
-`f.number_field`
-`f.check_box`
-`f.collection_select` -- this one is special. It is similar to the `select_tag` and `options_from_collection_for_select` helpers we discussed in class, but rolled into one. The syntax looks like this (assuming you have a Company table and you want the user to belong to one company):
You can add as many of these as you need for the additional columns you've included in your user model.
## Step Three: Allow Additional Parameters Through Security
The last step we need to take is to whitelist these additional attributes as things that we will allow users to modify about themselves. To do this, you need to go to your `ApplicationController` and add the following code:
For each column you want them to be able to modify, you have to add lines as shown in the example above. In the example, I have whitelisted both username and avatar_url to be modified upon sign-up, but only avatar_url can be modified after that. You have to decide what makes sense in your app.