My app is using Rails 3.0.4 and Devise 1.1.7.

I'm looking for a way to prevent users from sharing accounts as the app is a subscription based service. I've been searching for over a week, and I still don't know how to implement a solution. I'm hoping someone has implemented a solution and can point me in the right direction.

Solution (Thank you everyone for your answers and insight!)

In application controller.rb

before_filter :check_concurrent_session

def check_concurrent_session
  if is_already_logged_in?
    sign_out_and_redirect(current_user)
  end
end

def is_already_logged_in?
  current_user && !(session[:token] == current_user.login_token)
end

In session_controller that overrides Devise Sessions controller:

skip_before_filter :check_concurrent_session

def create
  super
  set_login_token
end

private
def set_login_token
  token = Devise.friendly_token
  session[:token] = token
  current_user.login_token = token
  current_user.save
end

In migration AddLoginTokenToUsers

def self.up
  change_table "users" do |t|
    t.string "login_token"
  end
end

def self.down
  change_table "users" do |t|
    t.remove "login_token"
  end
end
link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

You can't do it.

You never can't do it.

  • You can control IP addresses of user, so you can prevent presence of user from two IP at a time. ANd you can bind login and IP. You can try to check cities and other geolocation data through IP to block user.
  • You can set cookies to control something else.

But none of this will guarantee that only one user uses this login, and that those 105 IP from all over the world doesn't belong to only one unique user, which uses Proxy or whatever.

And the last: you never need this in the Internet.

UPD

However, what I'm asking is about limiting multiple users from using the same account simultaneously which I feel should be possible

So you can store some token, that will contain some encrypted data: IP + secret string + user agent + user browser version + user OS + any other personal info: encrypt(IP + "some secret string" + request.user_agent + ...). And then you can set a session or cookie with that token. And with each request you can fetch it: if user is the same? Is he using the same browser and the same browser version from the same OS etc.

Also you can use dynamic tokens: you change token each request, so only one user could use system per session, because each request token will be changed, another user will be logged out as far as his token will be expired.

link|improve this answer
Sharing the account I agree is impossible to stop. However, what I'm asking is about limiting multiple users from using the same account simultaneously which I feel should be possible. – user825641 Aug 15 '11 at 23:08
@user825641, answe is updated – fl00r Aug 16 '11 at 8:34
Thanks for your update fl00rs. I'm using a simple token for now until I get it working, but I appreciate your detailed response. – user825641 Aug 16 '11 at 16:59
You never can't do it == You can do it. Double negation here. – Kenny M. Sep 17 '11 at 15:55
@Kenny M. :) ok – fl00r Sep 17 '11 at 21:21
feedback

As far as actually implementing it in Devise, add this to your User.rb model. Something like this will log them out automatically (untested).

  def token_valid?
     # Use fl00rs method of setting the token
     session[:token] == cookies[:token]
  end

  ## Monkey Patch Devise methods ##
  def active_for_authentication? 
    super && token_valid?
  end 
  def inactive_message 
   token_valid? ? super : "You are sharing your account." 
  end 
link|improve this answer
Hi, thanks your response. I'm trying to fully understand your solution combined with floors. I didn't find active_for_authentication? but I did find active? which I believe serves the same purpose. I'm a little lost where the cookies[:token] comes into play? Are you just setting the token in the cookie or are you storing it in a database. I have updated my question to reflect my current progress. Thanks. – user825641 Aug 16 '11 at 16:49
feedback

Keep track of uniq IPs used per user. Now and then, run an analysis on those IPs - sharing would be obvious if a single account has simultaneous logins from different ISPs in different countries. Note that simply having a different IP is not sufficient grounds to consider it shared - some ISPs use round-robin proxies, so each hit would necessarily be a different IP.

link|improve this answer
I'm more worried about users sharing an account within an organization than across countries. Will uniq IP solution be viable if the account being shared is by multiple people on the same network? – user825641 Aug 15 '11 at 18:58
Possibly, unless they've got a NAT gateway, which'd make all the users appear under a single (or very few IPs). – Marc B Aug 15 '11 at 18:59
feedback

While you can't reliably prevent users from sharing an account, what you can do (I think) is prevent more than one user being logged on at the same time to the same account. Not sure if this is sufficient for your business model, but it does get around a lot of the problems discussed in the other answers. I've implemented something that is currently in beta and seems to work reasonably well - there are some notes here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.