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
- .acts_as_archived_owner_klasses ⇒ Object
- .effective_membership? ⇒ Boolean
- .max_number ⇒ Object
- .owner_klasses ⇒ Object
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=(categories) ⇒ Object
- #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=(statuses) ⇒ Object
- #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.
6 7 8 |
# File 'app/models/effective/membership.rb', line 6 def current_action @current_action end |
Class Method Details
.acts_as_archived_owner_klasses ⇒ Object
127 128 129 |
# File 'app/models/effective/membership.rb', line 127 def self.acts_as_archived_owner_klasses owner_klasses.select { |klass| klass.try(:acts_as_archived?) } end |
.effective_membership? ⇒ Boolean
118 119 120 |
# File 'app/models/effective/membership.rb', line 118 def self.effective_membership? true end |
.max_number ⇒ Object
114 115 116 |
# File 'app/models/effective/membership.rb', line 114 def self.max_number maximum('number_as_integer') || 0 end |
.owner_klasses ⇒ Object
122 123 124 125 |
# File 'app/models/effective/membership.rb', line 122 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
195 196 197 |
# File 'app/models/effective/membership.rb', line 195 def build_membership_category(category:) membership_category(category: category) || membership_categories.build(category: category) end |
#build_membership_status(status:) ⇒ Object
find or build
246 247 248 |
# File 'app/models/effective/membership.rb', line 246 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.
151 152 153 |
# File 'app/models/effective/membership.rb', line 151 def categories membership_categories.reject(&:marked_for_destruction?).map(&:category) end |
#categories=(categories) ⇒ Object
159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'app/models/effective/membership.rb', line 159 def categories=(categories) categories = Array(categories) raise('expecting a membership category') if categories.any? { |cat| !cat.class.respond_to?(:effective_memberships_category?) } # Delete any removed categories membership_categories.each do |membership_category| membership_category.mark_for_destruction unless categories.include?(membership_category.category) end # Build any additional categories categories.each { |category| build_membership_category(category: category) } nil end |
#categories_sentence ⇒ Object
185 186 187 |
# File 'app/models/effective/membership.rb', line 185 def categories_sentence categories.map(&:to_s).to_sentence.presence || 'None' end |
#category ⇒ Object
We might want to use singular memberships.
175 176 177 178 |
# File 'app/models/effective/membership.rb', line 175 def category raise('expected singular usage but there are more than one membership category') if categories.length > 1 categories.first end |
#category_id ⇒ Object
180 181 182 183 |
# File 'app/models/effective/membership.rb', line 180 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
155 156 157 |
# File 'app/models/effective/membership.rb', line 155 def category_ids membership_categories.reject(&:marked_for_destruction?).map(&:category_id) end |
#change_fees_paid_period ⇒ Object
283 284 285 |
# File 'app/models/effective/membership.rb', line 283 def change_fees_paid_period fees_paid_period end |
#change_fees_paid_period=(date) ⇒ Object
287 288 289 290 291 292 293 294 295 296 297 298 |
# File 'app/models/effective/membership.rb', line 287 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
262 263 264 |
# File 'app/models/effective/membership.rb', line 262 def fees_paid? paid_fees_through?(EffectiveMemberships.Registrar.current_period) end |
#in_good_standing? ⇒ Boolean
258 259 260 |
# File 'app/models/effective/membership.rb', line 258 def in_good_standing? membership_statuses.none? { |ms| ms.status.not_in_good_standing? } end |
#membership_category(category:) ⇒ Object
189 190 191 192 |
# File 'app/models/effective/membership.rb', line 189 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
240 241 242 243 |
# File 'app/models/effective/membership.rb', line 240 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
254 255 256 |
# File 'app/models/effective/membership.rb', line 254 def not_in_good_standing? membership_statuses.any? { |ms| ms.status.not_in_good_standing? } end |
#paid_fees_through?(period = nil) ⇒ Boolean
266 267 268 269 270 271 |
# File 'app/models/effective/membership.rb', line 266 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
250 251 252 |
# File 'app/models/effective/membership.rb', line 250 def reregistered? registration_on.present? && joined_on.present? && registration_on > joined_on end |
#revise! ⇒ Object
Admin updating membership info
301 302 303 304 305 306 307 308 309 310 311 312 |
# File 'app/models/effective/membership.rb', line 301 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 |
#status ⇒ Object
We might want to use singular memberships.
230 231 232 233 |
# File 'app/models/effective/membership.rb', line 230 def status raise('expected singular usage but there are more than one membership status') if statuses.length > 1 statuses.first end |
#status_id ⇒ Object
235 236 237 238 |
# File 'app/models/effective/membership.rb', line 235 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
206 207 208 |
# File 'app/models/effective/membership.rb', line 206 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.
202 203 204 |
# File 'app/models/effective/membership.rb', line 202 def statuses membership_statuses.reject(&:marked_for_destruction?).map(&:status) end |
#statuses=(statuses) ⇒ Object
210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
# File 'app/models/effective/membership.rb', line 210 def statuses=(statuses) statuses = Array(statuses) raise('expecting a membership category') if statuses.any? { |status| !status.class.respond_to?(:effective_memberships_status?) } # Delete any removed statuses membership_statuses.each do |membership_status| membership_status.mark_for_destruction unless statuses.include?(membership_status.status) end # Build any additional statuses statuses.each { |status| build_membership_status(status: status) } nil end |
#statuses_sentence ⇒ Object
225 226 227 |
# File 'app/models/effective/membership.rb', line 225 def statuses_sentence statuses.map(&:to_s).to_sentence.presence || 'None' end |
#to_s ⇒ Object
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'app/models/effective/membership.rb', line 131 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
273 274 275 276 277 278 279 280 281 |
# File 'app/models/effective/membership.rb', line 273 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 |