2011-03-27 15:05:14 -04:00
|
|
|
module ActionController
|
2011-05-24 01:40:29 -04:00
|
|
|
# This module provides a method which will redirect browser to use HTTPS
|
2011-03-27 15:05:14 -04:00
|
|
|
# protocol. This will ensure that user's sensitive information will be
|
|
|
|
# transferred safely over the internet. You _should_ always force browser
|
|
|
|
# to use HTTPS when you're transferring sensitive information such as
|
|
|
|
# user authentication, account information, or credit card information.
|
|
|
|
#
|
2011-05-24 01:40:29 -04:00
|
|
|
# Note that if you are really concerned about your application security,
|
|
|
|
# you might consider using +config.force_ssl+ in your config file instead.
|
2011-03-27 15:05:14 -04:00
|
|
|
# That will ensure all the data transferred via HTTPS protocol and prevent
|
|
|
|
# user from getting session hijacked when accessing the site under unsecured
|
|
|
|
# HTTP protocol.
|
|
|
|
module ForceSSL
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
include AbstractController::Callbacks
|
|
|
|
|
|
|
|
module ClassMethods
|
|
|
|
# Force the request to this particular controller or specified actions to be
|
|
|
|
# under HTTPS protocol.
|
|
|
|
#
|
2012-02-23 07:57:36 -05:00
|
|
|
# If you need to disable this for any reason (e.g. development) then you can use
|
|
|
|
# an +:if+ or +:unless+ condition.
|
|
|
|
#
|
|
|
|
# class AccountsController < ApplicationController
|
|
|
|
# force_ssl :if => :ssl_configured?
|
|
|
|
#
|
|
|
|
# def ssl_configured?
|
|
|
|
# !Rails.env.development?
|
|
|
|
# end
|
|
|
|
# end
|
2011-03-27 15:05:14 -04:00
|
|
|
#
|
|
|
|
# ==== Options
|
2012-02-23 08:34:44 -05:00
|
|
|
# * <tt>host</tt> - Redirect to a different host name
|
2011-03-27 15:05:14 -04:00
|
|
|
# * <tt>only</tt> - The callback should be run only for this action
|
|
|
|
# * <tt>except<tt> - The callback should be run for all actions except this action
|
2012-02-23 07:57:36 -05:00
|
|
|
# * <tt>if</tt> - A symbol naming an instance method or a proc; the callback
|
|
|
|
# will be called only when it returns a true value.
|
|
|
|
# * <tt>unless</tt> - A symbol naming an instance method or a proc; the callback
|
|
|
|
# will be called only when it returns a false value.
|
2011-03-27 15:05:14 -04:00
|
|
|
def force_ssl(options = {})
|
2011-10-08 19:38:02 -04:00
|
|
|
host = options.delete(:host)
|
2011-03-27 15:05:14 -04:00
|
|
|
before_filter(options) do
|
2012-05-31 10:06:17 -04:00
|
|
|
force_ssl_redirect(host)
|
2011-03-27 15:05:14 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-05-31 10:06:17 -04:00
|
|
|
|
|
|
|
# Redirect the existing request to use the HTTPS protocol.
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * <tt>host</tt> - Redirect to a different host name
|
|
|
|
def force_ssl_redirect(host = nil)
|
|
|
|
unless request.ssl?
|
|
|
|
redirect_options = {:protocol => 'https://', :status => :moved_permanently}
|
|
|
|
redirect_options.merge!(:host => host) if host
|
|
|
|
redirect_options.merge!(:params => request.query_parameters)
|
|
|
|
flash.keep if respond_to?(:flash)
|
|
|
|
redirect_to redirect_options
|
|
|
|
end
|
|
|
|
end
|
2011-03-27 15:05:14 -04:00
|
|
|
end
|
2011-10-08 19:38:02 -04:00
|
|
|
end
|