require_dependency "user" module LoginSystem def current_user get_current_user end def prefs current_user.prefs unless current_user.nil? end protected # overwrite this if you want to restrict access to only a few actions # or if you want to check if the user has the correct rights # example: # # # only allow nonbobs # def authorize?(user) # user.login != "bob" # end def authorize?(user) true end # overwrite this method if you only want to protect certain actions of the controller # example: # # # don't protect the login and the about method # def protect?(action) # if ['action', 'about'].include?(action) # return false # else # return true # end # end def protect?(action) true end # When called with before_filter :login_from_cookie will check for an :auth_token # cookie and log the user back in if appropriate def login_from_cookie return unless cookies[:auth_token] && !logged_in? user = User.find_by_remember_token(cookies[:auth_token]) if user && user.remember_token? session['user_id'] = user.id set_current_user(user) current_user.remember_me cookies[:auth_token] = { :value => current_user.remember_token , :expires => current_user.remember_token_expires_at, :secure => SITE_CONFIG['secure_cookies'] } flash[:notice] = t('login.successful') end end def login_or_feed_token_required if ['rss', 'atom', 'txt', 'ics'].include?(params[:format]) if user = User.find_by_token(params[:token]) set_current_user(user) return true end end login_required end # login_required filter. add # # before_filter :login_required # # if the controller should be under any rights management. # for finer access control you can overwrite # # def authorize?(user) # def login_required if not protect?(action_name) return true end login_from_cookie if session['user_id'] and authorize?(get_current_user) return true end http_user, http_pass = get_basic_auth_data if user = User.authenticate(http_user, http_pass) session['user_id'] = user.id set_current_user(user) return true end # store current location so that we can # come back after the user logged in store_location unless params[:format] == 'js' # call overwriteable reaction to unauthorized access access_denied return false end def login_optional login_from_cookie if session['user_id'] and authorize?(get_current_user) return true end http_user, http_pass = get_basic_auth_data if user = User.authenticate(http_user, http_pass) session['user_id'] = user.id set_current_user(user) return true end return true end def logged_in? current_user != nil end def get_current_user if @user.nil? && session['user_id'] @user = User.find(session['user_id'], :include => [:preference]) end @prefs = @user.prefs unless @user.nil? @user end def set_current_user(user) @user = user end # overwrite if you want to have special behavior in case the user is not authorized # to access the current operation. # the default action is to redirect to the login screen # example use : # a popup window might just close itself for instance def access_denied respond_to do |format| format.html { redirect_to login_path } format.m { redirect_to formatted_login_path(:format => 'm') } format.js { render :partial => 'login/redirect_to_login' } format.xml { basic_auth_denied } format.rss { basic_auth_denied } format.atom { basic_auth_denied } format.text { basic_auth_denied } end end # store current uri in the session. # we can return to this location by calling return_location def store_location session['return-to'] = request.request_uri end # move to the last store_location call or to the passed default one def redirect_back_or_default(default) if session['return-to'].nil? redirect_to default else redirect_to session['return-to'] session['return-to'] = nil end end # HTTP Basic auth code adapted from Coda Hale's simple_http_auth plugin. Thanks, Coda! def get_basic_auth_data auth_locations = ['REDIRECT_REDIRECT_X_HTTP_AUTHORIZATION', 'REDIRECT_X_HTTP_AUTHORIZATION', 'X-HTTP_AUTHORIZATION', 'HTTP_AUTHORIZATION'] authdata = nil for location in auth_locations if request.env.has_key?(location) authdata = request.env[location].to_s.split end end if authdata and authdata[0] == 'Basic' user, pass = Base64.decode64(authdata[1]).split(':')[0..1] else user, pass = ['', ''] end return user, pass end def basic_auth_denied response.headers["Status"] = "401 Unauthorized" response.headers["WWW-Authenticate"] = "Basic realm=\"'Tracks Login Required'\"" render :text => t('login.unsuccessful'), :status => 401 end end