Sha256: f5216462c3c113fc3a08eef00775770acb2feae3c8b617cf408a31c0804f4aa4

Contents?: true

Size: 1.67 KB

Versions: 9

Compression:

Stored size: 1.67 KB

Contents

# This is a tableless model only used for validating contactform fields.
#
# You can specify the fields for your contactform in the +config/alchemy/config.yml+ file in the +:mailer+ options.
#
# === Example Contactform Configuration:
#
#   mailer:
#     form_layout_name: contact
#     fields: [subject, name, email, message, info]
#     validate_fields: [name, email]

module Alchemy
  class Message

    extend ::ActiveModel::Naming
    include ::ActiveModel::Validations
    include ::ActiveModel::Conversion
    include ::ActiveModel::MassAssignmentSecurity

    class << self
      def attr_accessor(*vars)
        @attributes ||= {}
        vars.map { |v| @attributes[v] = nil}
        super(*vars)
      end

      def attributes
        @attributes
      end

      def config
        Config.get(:mailer)
      end
    end

    attr_accessor :contact_form_id, :ip
    attr_accessible :contact_form_id

    config['fields'].each do |field|
      attr_accessor field.to_sym
      attr_accessible field.to_sym
    end

    config['validate_fields'].each do |field|
      validates_presence_of field

      case field.to_sym
      when :email
        validates_format_of field, :with => ::Devise.email_regexp, :if => :email_is_filled
      when :email_confirmation
        validates_confirmation_of :email
      end
    end

    def initialize(attributes = {})
      @attributes ||= {}
      attributes.keys.each do |a|
        send("#{a}=", attributes[a])
        @attributes[a] = attributes[a]
      end
    end

    def attributes
      self.class.attributes
    end

    def persisted? #:nodoc:
      false
    end

  private

    def email_is_filled #:nodoc:
      !email.blank?
    end

  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
alchemy_cms-2.8.3 app/models/alchemy/message.rb
alchemy_cms-2.7.5 app/models/alchemy/message.rb
alchemy_cms-2.7.4 app/models/alchemy/message.rb
alchemy_cms-2.8.2 app/models/alchemy/message.rb
alchemy_cms-2.8.1 app/models/alchemy/message.rb
alchemy_cms-2.7.3 app/models/alchemy/message.rb
alchemy_cms-2.7.2 app/models/alchemy/message.rb
alchemy_cms-2.7.1 app/models/alchemy/message.rb
alchemy_cms-2.7.0 app/models/alchemy/message.rb