1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-30 19:52:20 +01:00
fab-manager/app/services/prepaid_pack_service.rb

40 lines
1.4 KiB
Ruby
Raw Normal View History

2021-06-21 17:39:48 +02:00
# frozen_string_literal: true
# Provides methods for PrepaidPack
class PrepaidPackService
2021-06-25 17:24:34 +02:00
class << self
def list(filters)
packs = PrepaidPack.where(nil)
2021-06-21 17:39:48 +02:00
2021-06-25 17:24:34 +02:00
packs = packs.where(group_id: filters[:group_id]) if filters[:group_id].present?
packs = packs.where(priceable_id: filters[:priceable_id]) if filters[:priceable_id].present?
packs = packs.where(priceable_type: filters[:priceable_type]) if filters[:priceable_type].present?
2021-06-21 17:39:48 +02:00
2021-06-25 17:24:34 +02:00
if filters[:disabled].present?
state = filters[:disabled] == 'false' ? [nil, false] : true
packs = packs.where(disabled: state)
end
packs
end
def user_packs(user, priceable, threshold)
query = StatisticProfilePrepaidPack
.includes(:prepaid_pack)
.references(:prepaid_packs)
.where('statistic_profile_id = ?', user.statistic_profile.id)
.where('expires_at < ?', DateTime.current)
.where('prepaid_packs.priceable_id = ?', priceable.id)
.where('prepaid_packs.priceable_type = ?', priceable.class.name)
if threshold.class == Float
query = query.where('prepaid_packs.minutes - minutes_used >= prepaid_packs.minutes * ?', threshold)
elsif threshold.class == Integer
query = query.where('prepaid_packs.minutes - minutes_used >= ?', threshold)
end
query
end
2021-06-21 17:39:48 +02:00
end
end