Class: Effective::Classified

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/effective/classified.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#current_userObject

Returns the value of attribute current_user.



7
8
9
# File 'app/models/effective/classified.rb', line 7

def current_user
  @current_user
end

#importingObject

Returns the value of attribute importing.



8
9
10
# File 'app/models/effective/classified.rb', line 8

def importing
  @importing
end

Instance Method Details

#approve!Object



177
178
179
# File 'app/models/effective/classified.rb', line 177

def approve!
  approved!
end

#published?Boolean

Returns:

  • (Boolean)


158
159
160
161
162
163
164
# File 'app/models/effective/classified.rb', line 158

def published?
  return false unless approved?
  return false if archived?
  return false if start_on.blank? || (Time.zone.now < start_on)
  return false if end_on.present? && (Time.zone.now >= end_on)
  true
end

#purchasable_nameObject



154
155
156
# File 'app/models/effective/classified.rb', line 154

def purchasable_name
  "#{category} - #{title}"
end

#submit!Object



166
167
168
169
170
171
172
173
174
175
# File 'app/models/effective/classified.rb', line 166

def submit!
  
  approve! if EffectiveClassifieds.auto_approve

  after_commit do
    EffectiveClassifieds.send_email(:classified_submitted, self)
  end

  true
end

#to_sObject



150
151
152
# File 'app/models/effective/classified.rb', line 150

def to_s
  title.presence || model_name.human
end

#unapprove!Object



181
182
183
# File 'app/models/effective/classified.rb', line 181

def unapprove!
  unapproved!
end