Sha256: a29014897b9f2aa156214948751a9a040cbda15e55f0d105b5e847afd93cbdd5

Contents?: true

Size: 1007 Bytes

Versions: 23

Compression:

Stored size: 1007 Bytes

Contents

# frozen_string_literal: true
module Hyrax
  class ContactForm
    include ActiveModel::Model
    attr_accessor :contact_method, :category, :name, :email, :subject, :message
    validates :email, :category, :name, :subject, :message, presence: true
    validates :email, format: /\A([\w\.%\+\-]+)@([\w\-]+\.)+([\w]{2,})\z/i, allow_blank: true

    # - can't use this without ActiveRecord::Base validates_inclusion_of :category, in: self.class.issue_types_for_locale

    # They should not have filled out the `contact_method' field. That's there to prevent spam.
    def spam?
      contact_method.present?
    end

    # Declare the e-mail headers. It accepts anything the mail method
    # in ActionMailer accepts.
    def headers
      {
        subject: "#{Hyrax.config.subject_prefix} #{subject}",
        to: Hyrax.config.contact_email,
        from: email
      }
    end

    def self.issue_types_for_locale
      I18n.t('hyrax.contact_form.issue_types').values.select(&:present?)
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
hyrax-5.0.1 app/models/hyrax/contact_form.rb
hyrax-5.0.0 app/models/hyrax/contact_form.rb
hyrax-5.0.0.rc3 app/models/hyrax/contact_form.rb
hyrax-5.0.0.rc2 app/models/hyrax/contact_form.rb
hyrax-5.0.0.rc1 app/models/hyrax/contact_form.rb
hyrax-3.6.0 app/models/hyrax/contact_form.rb
hyrax-4.0.0 app/models/hyrax/contact_form.rb
hyrax-4.0.0.rc3 app/models/hyrax/contact_form.rb
hyrax-4.0.0.rc2 app/models/hyrax/contact_form.rb
hyrax-4.0.0.rc1 app/models/hyrax/contact_form.rb
hyrax-3.5.0 app/models/hyrax/contact_form.rb
hyrax-4.0.0.beta2 app/models/hyrax/contact_form.rb
hyrax-3.4.2 app/models/hyrax/contact_form.rb
hyrax-4.0.0.beta1 app/models/hyrax/contact_form.rb
hyrax-3.4.1 app/models/hyrax/contact_form.rb
hyrax-3.4.0 app/models/hyrax/contact_form.rb
hyrax-3.3.0 app/models/hyrax/contact_form.rb
hyrax-3.2.0 app/models/hyrax/contact_form.rb
hyrax-3.1.0 app/models/hyrax/contact_form.rb
hyrax-3.0.2 app/models/hyrax/contact_form.rb