Sha256: 97370d504e9750f007cb7bdfaa0a2513c22818c8ba4b2e91209c52e98cac3bab
Contents?: true
Size: 1.25 KB
Versions: 2
Compression:
Stored size: 1.25 KB
Contents
module Ahoy class MessagesController < ActionController::Base before_filter :set_message def open if @message and !@message.opened_at @message.opened_at = Time.now @message.save! end send_data Base64.decode64("R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="), type: "image/gif", disposition: "inline" end def click if @message and !@message.clicked_at @message.clicked_at = Time.now @message.save! end url = params[:url] signature = OpenSSL::HMAC.hexdigest(OpenSSL::Digest.new("sha1"), AhoyEmail.secret_token, url) if secure_compare(params[:signature], signature) redirect_to url else redirect_to main_app.root_url end end protected def set_message @message = AhoyEmail.message_model.where(token: params[:id]).first end # from https://github.com/rails/rails/blob/master/activesupport/lib/active_support/message_verifier.rb # constant-time comparison algorithm to prevent timing attacks def secure_compare(a, b) return false unless a.bytesize == b.bytesize l = a.unpack "C#{a.bytesize}" res = 0 b.each_byte { |byte| res |= byte ^ l.shift } res == 0 end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ahoy_email-0.1.2 | app/controllers/ahoy/messages_controller.rb |
ahoy_email-0.1.1 | app/controllers/ahoy/messages_controller.rb |