轨道:访问清扫器中的控制器变量



所以我这里有一些关于Rails Sweeper的代码需要修改:

class UserTrackingSweeper < ActionController::Caching::Sweeper
  observe User
  def after_update(user)
    return if user.nil? || user.created_at.nil? #fix weird bug complaining about to_date on nil class
    return if user.created_at.to_date < Date.today || user.email.blank?
    user.send_welcome_email if user.email_was.blank?
  end
  #use sweeper as a way to ingest metadata from the user access to the site automatically
  def after_create(user)
    begin
      if !cookies[:user_tracking_meta].nil?
        full_traffic_source = cookies[:user_tracking_meta]
      else
        if !session.empty? && !session[:session_id].blank?
          user_tracking_meta = Rails.cache.read("user_meta_data#{session[:session_id]}")
          full_traffic_source = CGI::unescape(user_tracking_meta[:traffic_source])
        end
      end
      traffic_source = URI::parse(full_traffic_source).host || "direct"
    rescue Exception => e
      Rails.logger.info "ERROR tracking ref link. #{e.message}"
      traffic_source = "unknown"
      full_traffic_source = "unknown"
    end
    # if I am registered from already, than use that for now (false or null use site)
    registered_from = user.registered_from || "site" 
    if params && params[:controller]
      registered_from = "quiz" if params[:controller].match(/quiz/i)
      # registered_from = "api" if params[:controller].match(/api/i)
    end

    meta = {
      :traffic_source => user.traffic_source || traffic_source,
      :full_traffic_source => full_traffic_source,
      :registered_from => registered_from,
      :id_hash => user.get_id_hash
    }
    user.update_attributes(meta)
  end
end

问题是,我注意到,似乎不可能在清除器中访问cookie和参数哈希,但在我们公司的一些集成环境中,这似乎很好。不过,它在我的本地机器上不起作用。所以我的问题是:

  1. 如何在Sweeper中访问参数/cookie
  2. 如果不可能,你会怎么做

感谢

我相信你可以在缓存清理器中使用会话变量,所以如果有什么东西放在那里,你就可以设置

相关内容

  • 没有找到相关文章

最新更新