Class: Hyrax::ContactForm

Inherits:
Object
  • Object
show all
Includes:
ActiveModel::Model
Defined in:
app/models/hyrax/contact_form.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#categoryObject

Returns the value of attribute category.



4
5
6
# File 'app/models/hyrax/contact_form.rb', line 4

def category
  @category
end

#contact_methodObject

Returns the value of attribute contact_method.



4
5
6
# File 'app/models/hyrax/contact_form.rb', line 4

def contact_method
  @contact_method
end

#emailObject

Returns the value of attribute email.



4
5
6
# File 'app/models/hyrax/contact_form.rb', line 4

def email
  @email
end

#messageObject

Returns the value of attribute message.



4
5
6
# File 'app/models/hyrax/contact_form.rb', line 4

def message
  @message
end

#nameObject

Returns the value of attribute name.



4
5
6
# File 'app/models/hyrax/contact_form.rb', line 4

def name
  @name
end

#subjectObject

Returns the value of attribute subject.



4
5
6
# File 'app/models/hyrax/contact_form.rb', line 4

def subject
  @subject
end

Class Method Details

.issue_types_for_localeObject



25
26
27
28
29
30
31
32
33
# File 'app/models/hyrax/contact_form.rb', line 25

def self.issue_types_for_locale
  [
    I18n.t('hyrax.contact_form.issue_types.depositing'),
    I18n.t('hyrax.contact_form.issue_types.changing'),
    I18n.t('hyrax.contact_form.issue_types.browsing'),
    I18n.t('hyrax.contact_form.issue_types.reporting'),
    I18n.t('hyrax.contact_form.issue_types.general')
  ]
end

Instance Method Details

#headersObject

Declare the e-mail headers. It accepts anything the mail method in ActionMailer accepts.



17
18
19
20
21
22
23
# File 'app/models/hyrax/contact_form.rb', line 17

def headers
  {
    subject: "#{Hyrax.config.subject_prefix} #{subject}",
    to: Hyrax.config.contact_email,
    from: email
  }
end

#spam?Boolean

They should not have filled out the ‘contact_method’ field. That’s there to prevent spam.

Returns:

  • (Boolean)


11
12
13
# File 'app/models/hyrax/contact_form.rb', line 11

def spam?
  contact_method.present?
end