Module: ActionController::ForceSSL
- Extended by:
- ActiveSupport::Concern
- Includes:
- AbstractController::Callbacks
- Defined in:
- lib/action_controller/metal/force_ssl.rb
Overview
This module provides a method which will redirect the browser to use HTTPS protocol. This will ensure that user’s sensitive information will be transferred safely over the internet. You should always force the browser to use HTTPS when you’re transferring sensitive information such as user authentication, account information, or credit card information.
Note that if you are really concerned about your application security, you might consider using config.force_ssl
in your config file instead. That will ensure all the data transferred via HTTPS protocol and prevent the user from getting their session hijacked when accessing the site over unsecured HTTP protocol.
Defined Under Namespace
Modules: ClassMethods
Constant Summary collapse
- ACTION_OPTIONS =
[:only, :except, :if, :unless]
- URL_OPTIONS =
[:protocol, :host, :domain, :subdomain, :port, :path]
- REDIRECT_OPTIONS =
[:status, :flash, :alert, :notice]
Instance Method Summary collapse
-
#force_ssl_redirect(host_or_options = nil) ⇒ Object
Redirect the existing request to use the HTTPS protocol.
Methods included from AbstractController::Callbacks
Instance Method Details
#force_ssl_redirect(host_or_options = nil) ⇒ Object
Redirect the existing request to use the HTTPS protocol.
Parameters
-
host_or_options
- Either a host name or any of the url & redirect options available to theforce_ssl
method.
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/action_controller/metal/force_ssl.rb', line 76 def force_ssl_redirect( = nil) unless request.ssl? = { :protocol => 'https://', :host => request.host, :path => request.fullpath, :status => :moved_permanently } if .is_a?(Hash) .merge!() elsif [:host] = end secure_url = ActionDispatch::Http::URL.url_for(.slice(*URL_OPTIONS)) flash.keep if respond_to?(:flash) && request.respond_to?(:flash) redirect_to secure_url, .slice(*REDIRECT_OPTIONS) end end |