Class: Effective::Membership

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#current_actionObject

Returns the value of attribute current_action.



5
6
7
# File 'app/models/effective/membership.rb', line 5

def current_action
  @current_action
end

Class Method Details

.max_numberObject



99
100
101
# File 'app/models/effective/membership.rb', line 99

def self.max_number
  maximum('number_as_integer') || 0
end

.owner_klassesObject



103
104
105
106
# File 'app/models/effective/membership.rb', line 103

def self.owner_klasses
  klasses = Effective::Membership.distinct(:owner_type).pluck(:owner_type)
  klasses.select { |klass| klass.safe_constantize }.map { |klass| klass.constantize }
end

Instance Method Details

#build_membership_category(category:) ⇒ Object

find or build



157
158
159
# File 'app/models/effective/membership.rb', line 157

def build_membership_category(category:)
  membership_category(category: category) || membership_categories.build(category: category)
end

#build_membership_status(status:) ⇒ Object

find or build



193
194
195
# File 'app/models/effective/membership.rb', line 193

def build_membership_status(status:)
  membership_status(status: status) || membership_statuses.build(status: status)
end

#categoriesObject

We can’t use the polymorphic has_many. So this is a helper.



128
129
130
# File 'app/models/effective/membership.rb', line 128

def categories
  membership_categories.reject(&:marked_for_destruction?).map(&:category)
end

#categories_sentenceObject



147
148
149
# File 'app/models/effective/membership.rb', line 147

def categories_sentence
  categories.map(&:to_s).to_sentence.presence || 'None'
end

#categoryObject

We might want to use singular memberships.



137
138
139
140
# File 'app/models/effective/membership.rb', line 137

def category
  raise('expected singular usage but there are more than one membership category') if categories.length > 1
  categories.first
end

#category_idObject



142
143
144
145
# File 'app/models/effective/membership.rb', line 142

def category_id
  raise('expected singular usage but there are more than one membership category') if categories.length > 1
  categories.first.id
end

#category_idsObject



132
133
134
# File 'app/models/effective/membership.rb', line 132

def category_ids
  membership_categories.reject(&:marked_for_destruction?).map(&:category_id)
end

#change_fees_paid_periodObject



230
231
232
# File 'app/models/effective/membership.rb', line 230

def change_fees_paid_period
  fees_paid_period
end

#change_fees_paid_period=(date) ⇒ Object



234
235
236
237
238
239
240
241
242
243
244
245
# File 'app/models/effective/membership.rb', line 234

def change_fees_paid_period=(date)
  if date.blank?
    return assign_attributes(fees_paid_period: nil, fees_paid_through_period: nil)
  end

  date = (date.respond_to?(:strftime) ? date : Date.parse(date))

  period = EffectiveMemberships.Registrar.period(date: date)
  period_end_on = EffectiveMemberships.Registrar.period_end_on(date: date)

  assign_attributes(fees_paid_period: period, fees_paid_through_period: period_end_on)
end

#fees_paid?Boolean

Returns:

  • (Boolean)


209
210
211
# File 'app/models/effective/membership.rb', line 209

def fees_paid?
  paid_fees_through?(EffectiveMemberships.Registrar.current_period)
end

#in_good_standing?Boolean

Returns:

  • (Boolean)


205
206
207
# File 'app/models/effective/membership.rb', line 205

def in_good_standing?
  membership_statuses.none? { |ms| ms.status.not_in_good_standing? }
end

#membership_category(category:) ⇒ Object



151
152
153
154
# File 'app/models/effective/membership.rb', line 151

def membership_category(category:)
  raise('expected a category') unless category.class.respond_to?(:effective_memberships_category?)
  membership_categories.find { |mc| mc.category_id == category.id && mc.category_type == category.class.name }
end

#membership_status(status:) ⇒ Object



187
188
189
190
# File 'app/models/effective/membership.rb', line 187

def membership_status(status:)
  raise('expected a status') unless status.class.respond_to?(:effective_memberships_status?)
  membership_statuses.find { |ms| ms.status_id == status.id && ms.status_type == status.class.name }
end

#not_in_good_standing?Boolean

Returns:

  • (Boolean)


201
202
203
# File 'app/models/effective/membership.rb', line 201

def not_in_good_standing?
  membership_statuses.any? { |ms| ms.status.not_in_good_standing? }
end

Returns:

  • (Boolean)


213
214
215
216
217
218
# File 'app/models/effective/membership.rb', line 213

def paid_fees_through?(period = nil)
  period ||= EffectiveMemberships.Registrar.current_period

  return false if fees_paid_period.blank?
  fees_paid_period >= period
end

#reregistered?Boolean

Returns:

  • (Boolean)


197
198
199
# File 'app/models/effective/membership.rb', line 197

def reregistered?
  registration_on.present? && joined_on.present? && registration_on > joined_on
end

#revise!Object

Admin updating membership info



248
249
250
251
252
253
254
255
256
257
258
259
# File 'app/models/effective/membership.rb', line 248

def revise!
  save!

  period = EffectiveMemberships.Registrar.current_period
  return true if paid_fees_through?(period)

  # Otherwise build fees right now
  EffectiveMemberships.Registrar.delete_fees!(self)
  EffectiveMemberships.Registrar.create_fees!(self, period: period)

  true
end

#statusObject

We might want to use singular memberships.



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

def status
  raise('expected singular usage but there are more than one membership status') if statuses.length > 1
  statuses.first
end

#status_idObject



182
183
184
185
# File 'app/models/effective/membership.rb', line 182

def status_id
  raise('expected singular usage but there are more than one membership status') if statuses.length > 1
  statuses.first.id
end

#status_idsObject



168
169
170
# File 'app/models/effective/membership.rb', line 168

def status_ids
  membership_statuses.reject(&:marked_for_destruction?).map(&:status_id)
end

#statusesObject

We can’t use the polymorphic has_many. So this is a helper.



164
165
166
# File 'app/models/effective/membership.rb', line 164

def statuses
  membership_statuses.reject(&:marked_for_destruction?).map(&:status)
end

#statuses_sentenceObject



172
173
174
# File 'app/models/effective/membership.rb', line 172

def statuses_sentence
  statuses.map(&:to_s).to_sentence.presence || 'None'
end

#to_sObject



108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# File 'app/models/effective/membership.rb', line 108

def to_s
  return 'membership' if owner.blank?

  summary = [
    owner.to_s,
    'is',
    (statuses.to_sentence if statuses.present?),
    (categories.to_sentence if categories.present?),
    'member',
    ("##{number_was}" if number_was.present?),
    "who joined #{joined_on&.strftime('%F') || '-'}",
    ("and last changed on #{registration_on.strftime('%F')}" if registration_on > joined_on)
  ].compact.join(' ')

  (summary + '.').html_safe
end

#unpaid_fees_through?(period = nil) ⇒ Boolean

Returns:

  • (Boolean)


220
221
222
223
224
225
226
227
228
# File 'app/models/effective/membership.rb', line 220

def unpaid_fees_through?(period = nil)
  period ||= EffectiveMemberships.Registrar.current_period

  return false if joined_on.blank?
  return false unless joined_on < period

  return true if fees_paid_period.blank?
  fees_paid_period < period
end