Authlogic is a clean, simple, and unobtrusive ruby authentication solution.
23
votes
5answers
8k views
Rails 3 Authentication: Authlogic vs Devise
I have always used Authlogic in Rails 2.3 but now that I am using Rails 3 I think I might try out a new authentication solution.
How does Devise compare with Authlogic? What are their differences?
...
19
votes
4answers
5k views
Migrating from Authlogic to Devise
I've previously implemented Authlogic for authorization on my site. Now however I wish to switch over to using Devise instead, and I'm wondering if anyone has any experience with this. Perhaps ...
18
votes
6answers
7k views
Rails 3 authetication with OpenID, Twitter or Facebook
Can you suggest some working example of it? I tried Authlogic and Devise withous success.
16
votes
1answer
3k views
Implicit user creation with Authlogic and Authlogic OAuth plugin
I'm trying to write a simple OAuth consumer app in Rails. I'm using Authlogic for handling authentication and the Authlogic OAuth plugin to do the oauth thing.
The oauth plugin provides a couple of ...
14
votes
7answers
4k views
Can't put email address field on login form (Authlogic)
So I have Authlogic working fine with this user_sessions/new view:
<% form_for @user_session, :url => user_session_path do |f| %>
<% if @user_session.errors.present? %>
Invalid ...
10
votes
4answers
918 views
Rails, OpenID and Authlogic
I've been following ryan baytes screencast #170 and adding ruby-openid, authlogic and authlogic-oid to an existing authlogic authentication system.
However, i keep getting the following stack of ...
10
votes
1answer
2k views
RESTful-Authentication or Authlogic?
I'm having trouble deciding between the two. They both seem like great plugins but I'd like to know which is easier to control.
What are your guy's experiences with these plugins? Which would you ...
9
votes
8answers
10k views
SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed
I am using Authlogic-Connect for third party logins. After running appropriate migrations, Twitter/Google/yahoo logins seem to work fine but the facebook login throws exception:
SSL_connect ...
9
votes
2answers
682 views
Authlogic openid with multiple openid identifiers per account
How would you go about allowing a user to log in with multiple openid accounts and optionally a password, using authlogic?
9
votes
5answers
3k views
Ruby-OpenID: Requiring email-address from OpenID provider
I'm playing with the authlogic-example-app and I'm failing to get the email address from the OpenID provider (in my case: Google and Yahoo) when I register a user, resp. I get an empty response ...
8
votes
3answers
1k views
Authlogic OpenID integration
I'm having difficulty getting OpenId authentication working with Authlogic. It appears that the problem arose with changes to the open_id_authentication plugin. From what I've read so far, one needs ...
8
votes
3answers
2k views
authlogic email as username
How do i override/set authlogic to use the email field instead of the username field for both signup and authentication, having a username + an email is occasionally too intense for some some ...
8
votes
2answers
810 views
Authlogic Facebook Connect Snafu
I have an application configured with authlogic and authlogic_facebook_connect, but every time I click to "Connect" button, my UserSession fails validation, saying "You did not provide any details for ...
7
votes
3answers
4k views
Ruby on Rails: Best way to add Facebook login, Twitter login, OpenID login, etc
I'm currently running on a Ruby on Rails app with Authlogic handling my authentication and user management.
I'm struggling to find up to date information on the best way to add 3rd party login ...
7
votes
1answer
951 views
Configuring authlogic-oauth with google
Howdy everybody, I am trying to learn rails, and I'm working on an app that uses Google for logins and also for calendar data. I'm currently working on configuring authlogic-oauth and having some ...
7
votes
7answers
4k views
Integration testing with Authlogic?
For the life of me I don't understand why Authlogic isn't logging me in in this integration test. I haven't had any problems w/ Authlogic logging me in in functional tests using this code. According ...
6
votes
4answers
2k views
Authlogic throwing errors on Heroku
Yes, I've read this.
This is what I'm getting in my production.log:
ActionView::TemplateError (undefined method `password' for #<User:0x2b0ddb58cdc0>) on line #11 of ...
6
votes
2answers
3k views
Using custom authlogic error messages
I am using the authlogic gem for user validation on one of my sites. All is going well, but I am wondering if it's possible to change the error message that gets returned when the user types in an ...
6
votes
2answers
245 views
Why does my session expire when using PerformanceTest and not IntegrationTest?
OK, I am writing performance tests and am having trouble getting my session to persist like it does in integration tests. As I understand it, PerformanceTest is a child of IntegrationTest and any ...
6
votes
2answers
958 views
How do I impersonate a user with AuthLogic
I need to be able to create a UserSession without having the decrypted password.
How do I go about doing this?
My current workaround is:
In user.rb
def ...
6
votes
4answers
5k views
Using Facebook Connect with Authlogic
I am trying to make Authlogic and Facebook Connect (using Facebook) play nice so that you can create an account either the normal registration way or with Facebook connect. I have been able to get the ...
6
votes
1answer
3k views
How can I test authlogic's current_user in Cucumber?
I am trying to use authlogic's test helpers in Cucumber, calling activate_authlogic.
Our application_controller has a current_user_session method.
When we drop into the debugger mid-story, ...
5
votes
3answers
904 views
Rails 3 Authlogic - 'acts_as_authentic' undefined
I'm getting the following error:
NameError (undefined local variable or method `acts_as_authentic' for #<Class:0x1037e6310>):
app/models/user.rb:2
app/controllers/user_controller.rb:3:in ...
5
votes
2answers
214 views
Authlogic_OpenID - “uninitialized constant Rack::OpenID”
So I followed the railscast tutorial (http://railscasts.com/episodes/170-openid-with-authlogic) and used the old version of the plugin from Ryan's git file. I can now successfuly create/register a ...
5
votes
2answers
1k views
Rails 3, Authlogic, NGINX and HTTP basic authentication no working nicely together
I am in the early stages of building an app using Rails 3. User authentication is powered by Authlogic which I have setup pretty much as standard (as per the example docs) and everything is working as ...
5
votes
1answer
154 views
Authlogic admin subsite
Following this tutorial getting the following errors:
NameError in Admin/dashboardsController#show
uninitialized constant Admin::DashboardsController
NameError in Admin sessionController#new
...
5
votes
3answers
1k views
Authlogic's current_user object in models
I need to know the ID of the current user in a model:
def after_save
desc, points=nil, nil
if answer_index == daily_question.correct_answer_index
desc = ...
5
votes
1answer
1k views
Rest-client log in with authlogic
I am trying to use the Rest-client gem to do a few small tasks for my app which uses Authlogic to authenticate users. From Rest-Client's API, I see that one can post data necessary for the log-in ...
5
votes
1answer
1k views
Authlogic and multiple sessions for the same user
I'm using Authlogic to manage the sessions in my application.
However, by default, authlogic allows a user to be logged in many times from different computers.
I don't want that (the user pays to get ...
5
votes
1answer
2k views
Authlogic accessing user id in session object
I was wondering if anyone knows how I can access the user ID from the session object in Rails using the Authlogic gem ?
I have a sweeper that runs to expire a cache fragment specific to a user:
...
4
votes
1answer
232 views
No route matches “/oauth/authorize”
I've started integrating Omniauth 1.0 into my Rails/Authlogic application and I get a route error when I try to access localhost:3000/auth/facebook.
Are we supposed to create a custom route for each ...
4
votes
2answers
278 views
Rails 3 Devise grinds to halt with more encryption “stretches”
Whenever I put config.stretches = 20 in config/initializers/devise.rb, the server times out on encryption requests.
The reposnse time is bearable at 15 stretches, then rapidly increases as I raise ...
4
votes
2answers
833 views
How to install authlogic in Rails 3?
I find that the the config/environment.rb file looks different in Rails version 3.0.
Also when i add the line "config.gem "authlogic".To environment.rb file
4
votes
2answers
339 views
Log-in through authlogic without having to fill in form every time
I have a number of Cucumber scenarios which run with capybara on a project I am working on.
Most of these scenarios start with a "Given I am logged in" step. Currently my implementation of this is:
...
4
votes
3answers
534 views
Using authlogic_api for Rails REST API access
I am writing a Rails back-end API for a Steam game that is only accessed via REST calls, so no user-specific authentication is required. I am trying to implement the authlogic_api plug-in for the ...
4
votes
1answer
1k views
AuthLogic perishable_token resets on every request
In my User model I have:
acts_as_authentic do |c|
c.perishable_token_valid_for = 30.minutes
end
In my Application Controller I have the standard boilerplate code:
def current_user_session
...
4
votes
2answers
345 views
Rails authlogic : How to make Levels?
i followed this tutorial fo setting Autlogic up properly. So, my site needs a form of level, like "Admin", "Moderator", "User", "Guest". So Admins can do everything, where Moderators may not can make ...
4
votes
3answers
1k views
Rails Authlogic authentication method
Within Authlogic, is there a way that I can add conditions to the authentication method? I know by using the find_by_login_method I can specify another method to use, but when I use this I need to ...
4
votes
5answers
2k views
Force validation of blank passwords in Authlogic
I'm adding a password reset feature to my Rails application that uses Authlogic. I was following the guide here: http://www.binarylogic.com/2008/11/16/tutorial-reset-passwords-with-authlogic/ and ...
4
votes
3answers
1k views
Specify Cookie Domain in Authlogic When Session Is Created
Is it possible to set the cookie domain to something other than the current domain when a session is created with Authlogic?
When a new account is created from our signup domain, I'd like to redirect ...
4
votes
2answers
622 views
authlogic auto_register feature using my options
I have auto registration working with authlogic using gaizka's version of authlogic_openid which I found on Github since pelle's original addition of the feature seemed to cause issues.
...
4
votes
5answers
975 views
undefined method 'add_acts_as_authentic_module'
config.gem "authlogic-oauth", :lib => "authlogic_oauth"
to the environment.rb file in my app and got error
undefined method 'add_acts_as_authentic_module' for ActiveRecord::Base::Class
is ...
4
votes
4answers
3k views
How can I use mock models in AuthLogic controller specs?
I am trying to write specs for a controller without using fixtures (instead employing mock models). This controller requires a user to be logged in, for which I'm employing AuthLogic, following the ...
4
votes
2answers
8k views
Rails: Authorization with Authlogic
I need a very granular authorization system that works seamlessly with Authlogic.
I've tried these gems/plugins so far:
Lockdown
rails_authorization_plugin
ACL9
I've also looked at, but not tried ...
3
votes
1answer
141 views
Getting error of undefined method 'valid_password?' with Authlogic
I get suddenly the below error on my server with Authlogic
NoMethodError (undefined method `valid_password?' for #):
authlogic (2.1.3) [v] lib/authlogic/session/password.rb:191:in `send'
authlogic ...
3
votes
0answers
169 views
+50
#<UserSession: {:unauthorized_record=>“<protected>”}>
I'm trying to build a "just click on your name to login" system using auth_logic. My user model has an email and name field. To login, I simply do:
UserSession.create(@user, true)
Unfortunately ...
3
votes
1answer
75 views
Migrating user records and crypted passwords from Devise to Authlogic
Does anyone have any experience migrating from Devise to Authlogic, specifically when it comes to dealing with the crypted password? I currently use bcrypt in Devise and will also use bcrypt in ...
3
votes
1answer
180 views
undefined method `setup' for main:Object while trying to run controller tests with authlogic
I am a little new to RSpec tests and i am trying to run some controller tests in my Rails 3 application using RSpec 2 and Authlogic 3 authentication.
Following the steps provided by Authlogic ...
3
votes
1answer
246 views
Authlogic and iPhone app login
This has been a head-banger for me. I have looked at all of the similar questions on SO and none have proved satisfactory. Here's my go at it.
I have a perfectly fine rails 3 app setup with ...
3
votes
2answers
488 views
How do I force an SSL connection with Rails 3, but only when a user is logged in?
I'm creating a Rails 3 site that allows a company to update some of its web pages, and I've used AuthLogic to take care of logging users & out.
For most traffic to our site, we don't need to use ...