impress/app/controllers/sessions_controller.rb

39 lines
1,002 B
Ruby
Raw Normal View History

2010-10-18 14:58:45 -07:00
class SessionsController < ApplicationController
rescue_from Openneo::Auth::Session::InvalidSignature, :with => :invalid_signature
rescue_from Openneo::Auth::Session::MissingParam, :with => :missing_param
before_action :initialize_session, :only => [new]
skip_before_action :verify_authenticity_token, :only => [:create]
2010-10-18 14:58:45 -07:00
def new
redirect_to Openneo::Auth.remote_auth_url(params, session)
end
def create
session = Openneo::Auth::Session.from_params(params)
session.save!
render :text => 'Success'
end
def destroy
sign_out(:user)
redirect_to (params[:return_to] || root_path)
2010-10-18 14:58:45 -07:00
end
protected
def initialize_session
session[:session_initialization_placeholder] = nil
end
2010-10-18 14:58:45 -07:00
def invalid_signature(exception)
render :text => "Signature did not match. Check secret.",
:status => :unprocessable_entity
end
def missing_param(exception)
render :text => exception.message, :status => :unprocessable_entity
end
end