Вот отличный скринкаст , который шаг за шагом объясняет, как использовать authlogic в вашем проекте rails.
Как только authlogic настроен, определите следующие полезные вспомогательные методы, связанные с аутентификацией, в вашем Application Controller.
def current_user_session
return @current_user_session if defined?(@current_user_session)
@current_user_session = UserSession.find
end
def current_user
return @current_user if defined?(@current_user)
@current_user = current_user_session && current_user_session.record
end
def require_user
unless current_user
store_location
flash[:notice] = "You must be logged in to access this page"
redirect_to new_user_session_url
return false
end
end
def require_no_user
if current_user
store_location
flash[:notice] = "You must be logged out to access this page"
redirect_to root_url
return false
end
end
Как только эти методы определены, вы можете указать действия, требующие входа пользователя в систему:
before_filter :require_user, :only => [:new, :edit]