2015-05-05 03:10:25 +02:00
|
|
|
class Category < ActiveRecord::Base
|
2016-06-30 11:24:57 +02:00
|
|
|
extend FriendlyId
|
|
|
|
friendly_id :name, use: :slugged
|
|
|
|
|
2016-07-25 16:16:25 +02:00
|
|
|
has_many :events, dependent: :destroy
|
2016-06-30 09:57:40 +02:00
|
|
|
|
2016-06-30 11:24:57 +02:00
|
|
|
after_create :create_statistic_subtype
|
|
|
|
after_update :update_statistic_subtype, if: :name_changed?
|
|
|
|
after_destroy :remove_statistic_subtype
|
|
|
|
|
|
|
|
|
|
|
|
def create_statistic_subtype
|
|
|
|
index = StatisticIndex.where(es_type_key: 'event')
|
|
|
|
StatisticSubType.create!({statistic_types: index.first.statistic_types, key: self.slug, label: self.name})
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_statistic_subtype
|
|
|
|
index = StatisticIndex.where(es_type_key: 'event')
|
|
|
|
subtype = StatisticSubType.joins(statistic_type_sub_types: :statistic_type).where(key: self.slug, statistic_types: { statistic_index_id: index.first.id }).first
|
|
|
|
subtype.label = self.name
|
|
|
|
subtype.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_statistic_subtype
|
|
|
|
subtype = StatisticSubType.where(key: self.slug).first
|
|
|
|
subtype.destroy!
|
|
|
|
end
|
|
|
|
|
2016-06-30 09:57:40 +02:00
|
|
|
def safe_destroy
|
2016-06-30 11:24:57 +02:00
|
|
|
if Category.count > 1 && self.events.count == 0
|
2016-06-30 09:57:40 +02:00
|
|
|
destroy
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|