Class: Effective::Membership
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Effective::Membership
- Defined in:
- app/models/effective/membership.rb
Instance Attribute Summary collapse
-
#current_action ⇒ Object
Returns the value of attribute current_action.
Class Method Summary collapse
Instance Method Summary collapse
-
#build_membership_category(category:) ⇒ Object
find or build.
-
#build_membership_status(status:) ⇒ Object
find or build.
-
#categories ⇒ Object
We can’t use the polymorphic has_many.
- #categories_sentence ⇒ Object
-
#category ⇒ Object
We might want to use singular memberships.
- #category_id ⇒ Object
- #category_ids ⇒ Object
- #change_fees_paid_period ⇒ Object
- #change_fees_paid_period=(date) ⇒ Object
- #fees_paid? ⇒ Boolean
- #in_good_standing? ⇒ Boolean
- #membership_category(category:) ⇒ Object
- #membership_status(status:) ⇒ Object
- #not_in_good_standing? ⇒ Boolean
- #paid_fees_through?(period = nil) ⇒ Boolean
- #reregistered? ⇒ Boolean
-
#revise! ⇒ Object
Admin updating membership info.
-
#status ⇒ Object
We might want to use singular memberships.
- #status_id ⇒ Object
- #status_ids ⇒ Object
-
#statuses ⇒ Object
We can’t use the polymorphic has_many.
- #statuses_sentence ⇒ Object
- #to_s ⇒ Object
- #unpaid_fees_through?(period = nil) ⇒ Boolean
Instance Attribute Details
#current_action ⇒ Object
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_number ⇒ Object
99 100 101 |
# File 'app/models/effective/membership.rb', line 99 def self.max_number maximum('number_as_integer') || 0 end |
Instance Method Details
#build_membership_category(category:) ⇒ Object
find or build
152 153 154 |
# File 'app/models/effective/membership.rb', line 152 def build_membership_category(category:) membership_category(category: category) || membership_categories.build(category: category) end |
#build_membership_status(status:) ⇒ Object
find or build
188 189 190 |
# File 'app/models/effective/membership.rb', line 188 def build_membership_status(status:) membership_status(status: status) || membership_statuses.build(status: status) end |
#categories ⇒ Object
We can’t use the polymorphic has_many. So this is a helper.
123 124 125 |
# File 'app/models/effective/membership.rb', line 123 def categories membership_categories.reject(&:marked_for_destruction?).map(&:category) end |
#categories_sentence ⇒ Object
142 143 144 |
# File 'app/models/effective/membership.rb', line 142 def categories_sentence categories.map(&:to_s).to_sentence.presence || 'None' end |
#category ⇒ Object
We might want to use singular memberships.
132 133 134 135 |
# File 'app/models/effective/membership.rb', line 132 def category raise('expected singular usage but there are more than one membership category') if categories.length > 1 categories.first end |
#category_id ⇒ Object
137 138 139 140 |
# File 'app/models/effective/membership.rb', line 137 def category_id raise('expected singular usage but there are more than one membership category') if categories.length > 1 categories.first.id end |
#category_ids ⇒ Object
127 128 129 |
# File 'app/models/effective/membership.rb', line 127 def category_ids membership_categories.reject(&:marked_for_destruction?).map(&:category_id) end |
#change_fees_paid_period ⇒ Object
225 226 227 |
# File 'app/models/effective/membership.rb', line 225 def change_fees_paid_period fees_paid_period end |
#change_fees_paid_period=(date) ⇒ Object
229 230 231 232 233 234 235 236 237 238 239 240 |
# File 'app/models/effective/membership.rb', line 229 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
204 205 206 |
# File 'app/models/effective/membership.rb', line 204 def fees_paid? paid_fees_through?(EffectiveMemberships.Registrar.current_period) end |
#in_good_standing? ⇒ Boolean
200 201 202 |
# File 'app/models/effective/membership.rb', line 200 def in_good_standing? membership_statuses.none? { |ms| ms.status.not_in_good_standing? } end |
#membership_category(category:) ⇒ Object
146 147 148 149 |
# File 'app/models/effective/membership.rb', line 146 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
182 183 184 185 |
# File 'app/models/effective/membership.rb', line 182 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
196 197 198 |
# File 'app/models/effective/membership.rb', line 196 def not_in_good_standing? membership_statuses.any? { |ms| ms.status.not_in_good_standing? } end |
#paid_fees_through?(period = nil) ⇒ Boolean
208 209 210 211 212 213 |
# File 'app/models/effective/membership.rb', line 208 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
192 193 194 |
# File 'app/models/effective/membership.rb', line 192 def reregistered? registration_on.present? && joined_on.present? && registration_on > joined_on end |
#revise! ⇒ Object
Admin updating membership info
243 244 245 246 247 248 249 250 251 252 253 254 255 |
# File 'app/models/effective/membership.rb', line 243 def revise! save! period = EffectiveMemberships.Registrar.current_period return true if paid_fees_through?(period) # Otherwise build fees right now EffectiveMemberships.Registrar.create_renewal_fees!(self, period: period) EffectiveMemberships.Registrar.create_late_fees!(self, period: period) EffectiveMemberships.Registrar.create_not_in_good_standing!(self, period: period) true end |
#status ⇒ Object
We might want to use singular memberships.
172 173 174 175 |
# File 'app/models/effective/membership.rb', line 172 def status raise('expected singular usage but there are more than one membership status') if statuses.length > 1 statuses.first end |
#status_id ⇒ Object
177 178 179 180 |
# File 'app/models/effective/membership.rb', line 177 def status_id raise('expected singular usage but there are more than one membership status') if statuses.length > 1 statuses.first.id end |
#status_ids ⇒ Object
163 164 165 |
# File 'app/models/effective/membership.rb', line 163 def status_ids membership_statuses.reject(&:marked_for_destruction?).map(&:status_id) end |
#statuses ⇒ Object
We can’t use the polymorphic has_many. So this is a helper.
159 160 161 |
# File 'app/models/effective/membership.rb', line 159 def statuses membership_statuses.reject(&:marked_for_destruction?).map(&:status) end |
#statuses_sentence ⇒ Object
167 168 169 |
# File 'app/models/effective/membership.rb', line 167 def statuses_sentence statuses.map(&:to_s).to_sentence.presence || 'None' end |
#to_s ⇒ Object
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
# File 'app/models/effective/membership.rb', line 103 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 registered #{registration_on.strftime('%F')}" if registration_on > joined_on) ].compact.join(' ') (summary + '.').html_safe end |
#unpaid_fees_through?(period = nil) ⇒ Boolean
215 216 217 218 219 220 221 222 223 |
# File 'app/models/effective/membership.rb', line 215 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 |