Rails Devise: get object of the currently logged in user?

Ruby on-RailsRuby on-Rails-PluginsDevise

Ruby on-Rails Problem Overview


I've recently installed Devise on a rails application, and I am wondering if it is possible to get an instance of the currently logged in user in either one of the other models or controllers, and if so, how do I do that?

Ruby on-Rails Solutions


Solution 1 - Ruby on-Rails

Devise creates convenience methods on the fly that represent your currently logged user.

However you should note that the generated method name includes the class name of your user model. e.g. if your Devise model is called 'User' then the currently logged in user can be accessed with 'current_user', and if your Devise class is 'Admin' then the logged in admin user can be accessed with 'current_admin'.

There are a number of other methods created with similar conventions, for example 'user_signed_in?' or again 'admin_signed_in?', which are really nice.

These methods are available in controllers and views so you might have the following in a view:

<% if user_signed_in? %>
  <div>Signed in as... <%= current_user.email %></div>
<% end %>

Finally, if you are using two or more Devise models in your app (e.g. User and Admin), you can use the 'anybody_signed_in?' convenience method to check if either of those types of user are signed in:

<% if anybody_signed_in? %>
  <h2>Special offers</h2>
  <p>All registered users will receive free monkeys!</p>
<% end %>

Update:

Since Devise version 1.2.0, 'anybody_signed_in?' has been deprecated and replaced by 'signed_in?'

Solution 2 - Ruby on-Rails

The Devise helper methods are only available at the controller and view layers. They are not available at the model layer (see Controller filters and helpers section of README).

  • Is it possible to get the currently logged in user from within a model?.

It is not possible via the default helper methods that Devise creates for you. However, there are many alternative methods you can use to provide the current_user to a model. The simplest way has already been suggested by Alex Bartlow, and that is to simply pass the current_user via a method to your model.

  • Is it possible to get the currently logged in user from within a controllers?

Yes it is possible. Use current_<modelname>, where <modelname> is the name of the model that has Devise authentication capabilities (i.e., via rails g devise <modelname>). If, for example, your model is User, then you would use current_user. If your model is Elmo, then you would use current_elmo.

Solution 3 - Ruby on-Rails

Pass it in as a parameter to the method call :).

One idea is to use Thread.current[:current_user] = @current_user as a before_filter - but if you're using a deployment stack like Thin + EM_Mysql2 + Rack::FiberPool, you'll need to set that to Fiber.current[:current_user].

Those solutions are really just covering up for a lack of good design logic.

Solution 4 - Ruby on-Rails

simple method is:

if @suit.user == current_user

example:

= link_to "Back", root_path, class: "btn btn-default"

  -if @suit.user == current_user

    = link_to "Edit", edit_suit_path, class: "btn btn-default"

    = link_to "Delete", suit_path, method: :delete, data: {confirm: "Are you sure?" }, class: "btn btn-default"

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionGStoView Question on Stackoverflow
Solution 1 - Ruby on-RailsScottView Answer on Stackoverflow
Solution 2 - Ruby on-RailsJohnView Answer on Stackoverflow
Solution 3 - Ruby on-RailsAlex BartlowView Answer on Stackoverflow
Solution 4 - Ruby on-RailsMaximuSSmileView Answer on Stackoverflow