mirror of
https://github.com/github/rails.git
synced 2026-01-09 14:48:08 -05:00
Upstream doesnt support nested hashes having indifferent access, we should stay consistent. Swap order for returned value in session hash.
259 lines
7.8 KiB
Ruby
259 lines
7.8 KiB
Ruby
module ActionController #:nodoc:
|
|
# The flash provides a way to pass temporary objects between actions. Anything you place in the flash will be exposed
|
|
# to the very next action and then cleared out. This is a great way of doing notices and alerts, such as a create
|
|
# action that sets <tt>flash[:notice] = "Successfully created"</tt> before redirecting to a display action that can
|
|
# then expose the flash to its template. Actually, that exposure is automatically done. Example:
|
|
#
|
|
# class PostsController < ActionController::Base
|
|
# def create
|
|
# # save post
|
|
# flash[:notice] = "Successfully created post"
|
|
# redirect_to posts_path(@post)
|
|
# end
|
|
#
|
|
# def show
|
|
# # doesn't need to assign the flash notice to the template, that's done automatically
|
|
# end
|
|
# end
|
|
#
|
|
# show.html.erb
|
|
# <% if flash[:notice] %>
|
|
# <div class="notice"><%= flash[:notice] %></div>
|
|
# <% end %>
|
|
#
|
|
# This example just places a string in the flash, but you can put any object in there. And of course, you can put as
|
|
# many as you like at a time too. Just remember: They'll be gone by the time the next action has been performed.
|
|
#
|
|
# See docs on the FlashHash class for more details about the flash.
|
|
module Flash
|
|
def self.included(base)
|
|
base.class_eval do
|
|
include InstanceMethods
|
|
|
|
alias_method_chain :perform_action, :flash
|
|
alias_method_chain :reset_session, :flash
|
|
alias_method_chain :redirect_to, :flash
|
|
|
|
helper_method :alert
|
|
helper_method :notice
|
|
end
|
|
end
|
|
|
|
class FlashNow #:nodoc:
|
|
def initialize(flash)
|
|
@flash = flash
|
|
end
|
|
|
|
def []=(k, v)
|
|
k = k.to_s
|
|
@flash[k] = v
|
|
@flash.discard(k)
|
|
v
|
|
end
|
|
|
|
def [](k)
|
|
@flash[k.to_s]
|
|
end
|
|
end
|
|
|
|
class FlashHash < Hash
|
|
def self.from_session_value(value)
|
|
flash = case value
|
|
when FlashHash # Rails 2.3
|
|
value
|
|
when Hash # Rails 4.0
|
|
flashes = value['flashes'] || {}
|
|
flashes.stringify_keys!
|
|
discard = value['discard'] || []
|
|
discard = discard.map do |item|
|
|
item.kind_of?(Symbol) ? item.to_s : item
|
|
end
|
|
used = Hash[flashes.keys.map{|k| [k, discard.include?(k)] }]
|
|
|
|
new_from_values(flashes, used)
|
|
else
|
|
new
|
|
end
|
|
flash
|
|
end
|
|
|
|
def initialize #:nodoc:
|
|
super
|
|
@used = {}
|
|
end
|
|
|
|
def to_session_value
|
|
return nil if empty?
|
|
rails_3_discard_list = @used.map{|k,v| k if v}.compact
|
|
{'discard' => rails_3_discard_list, 'flashes' => Hash[to_a]}
|
|
end
|
|
|
|
def []=(k, v) #:nodoc:
|
|
k = k.to_s
|
|
keep(k)
|
|
super(k, v)
|
|
end
|
|
|
|
def [](k)
|
|
super(k.to_s)
|
|
end
|
|
|
|
def delete(k)
|
|
super(k.to_s)
|
|
end
|
|
|
|
def update(h) #:nodoc:
|
|
h.stringify_keys!
|
|
h.keys.each { |k| keep(k) }
|
|
super(h)
|
|
end
|
|
|
|
alias :merge! :update
|
|
|
|
def replace(h) #:nodoc:
|
|
@used = {}
|
|
super(h.stringify_keys)
|
|
end
|
|
|
|
# Sets a flash that will not be available to the next action, only to the current.
|
|
#
|
|
# flash.now[:message] = "Hello current action"
|
|
#
|
|
# This method enables you to use the flash as a central messaging system in your app.
|
|
# When you need to pass an object to the next action, you use the standard flash assign (<tt>[]=</tt>).
|
|
# When you need to pass an object to the current action, you use <tt>now</tt>, and your object will
|
|
# vanish when the current action is done.
|
|
#
|
|
# Entries set via <tt>now</tt> are accessed the same way as standard entries: <tt>flash['my-key']</tt>.
|
|
def now
|
|
FlashNow.new(self)
|
|
end
|
|
|
|
# Keeps either the entire current flash or a specific flash entry available for the next action:
|
|
#
|
|
# flash.keep # keeps the entire flash
|
|
# flash.keep(:notice) # keeps only the "notice" entry, the rest of the flash is discarded
|
|
def keep(k = nil)
|
|
use(k, false)
|
|
end
|
|
|
|
# Marks the entire flash or a single flash entry to be discarded by the end of the current action:
|
|
#
|
|
# flash.discard # discard the entire flash at the end of the current action
|
|
# flash.discard(:warning) # discard only the "warning" entry at the end of the current action
|
|
def discard(k = nil)
|
|
use(k)
|
|
end
|
|
|
|
# Mark for removal entries that were kept, and delete unkept ones.
|
|
#
|
|
# This method is called automatically by filters, so you generally don't need to care about it.
|
|
def sweep #:nodoc:
|
|
keys.each do |k|
|
|
unless @used[k]
|
|
use(k)
|
|
else
|
|
delete(k)
|
|
@used.delete(k)
|
|
end
|
|
end
|
|
|
|
# clean up after keys that could have been left over by calling reject! or shift on the flash
|
|
(@used.keys - keys).each{ |k| @used.delete(k) }
|
|
end
|
|
|
|
def store(session, key = "flash")
|
|
session[key] = to_session_value
|
|
end
|
|
|
|
private
|
|
# Used internally by the <tt>keep</tt> and <tt>discard</tt> methods
|
|
# use() # marks the entire flash as used
|
|
# use('msg') # marks the "msg" entry as used
|
|
# use(nil, false) # marks the entire flash as unused (keeps it around for one more action)
|
|
# use('msg', false) # marks the "msg" entry as unused (keeps it around for one more action)
|
|
def use(k=nil, v=true)
|
|
unless k.nil?
|
|
@used[k.to_s] = v
|
|
else
|
|
keys.each{ |key| use(key, v) }
|
|
end
|
|
end
|
|
|
|
def self.new_from_values(flashes, used)
|
|
new.tap do |flash_hash|
|
|
flashes.each do |k, v|
|
|
flash_hash[k] = v
|
|
end
|
|
flash_hash.instance_variable_set("@used", used)
|
|
end
|
|
end
|
|
end
|
|
|
|
module InstanceMethods #:nodoc:
|
|
protected
|
|
def perform_action_with_flash
|
|
perform_action_without_flash
|
|
if defined? @_flash
|
|
@_flash.store(session)
|
|
remove_instance_variable(:@_flash)
|
|
end
|
|
end
|
|
|
|
def reset_session_with_flash
|
|
reset_session_without_flash
|
|
remove_instance_variable(:@_flash) if defined? @_flash
|
|
end
|
|
|
|
def redirect_to_with_flash(options = {}, response_status_and_flash = {}) #:doc:
|
|
if alert = response_status_and_flash.delete(:alert)
|
|
flash[:alert] = alert
|
|
end
|
|
|
|
if notice = response_status_and_flash.delete(:notice)
|
|
flash[:notice] = notice
|
|
end
|
|
|
|
if other_flashes = response_status_and_flash.delete(:flash)
|
|
flash.update(other_flashes)
|
|
end
|
|
|
|
redirect_to_without_flash(options, response_status_and_flash)
|
|
end
|
|
|
|
# Access the contents of the flash. Use <tt>flash["notice"]</tt> to
|
|
# read a notice you put there or <tt>flash["notice"] = "hello"</tt>
|
|
# to put a new one.
|
|
def flash #:doc:
|
|
if !defined?(@_flash)
|
|
@_flash = Flash::FlashHash.from_session_value(session["flash"])
|
|
@_flash.sweep
|
|
end
|
|
|
|
@_flash
|
|
end
|
|
|
|
|
|
# Convenience accessor for flash[:alert]
|
|
def alert
|
|
flash[:alert]
|
|
end
|
|
|
|
# Convenience accessor for flash[:alert]=
|
|
def alert=(message)
|
|
flash[:alert] = message
|
|
end
|
|
|
|
# Convenience accessor for flash[:notice]
|
|
def notice
|
|
flash[:notice]
|
|
end
|
|
|
|
# Convenience accessor for flash[:notice]=
|
|
def notice=(message)
|
|
flash[:notice] = message
|
|
end
|
|
end
|
|
end
|
|
end
|