2010-06-01 00:06:46 +00:00
|
|
|
class ContentInstance
|
|
|
|
|
2010-05-24 00:18:23 +00:00
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-06-10 13:30:22 +00:00
|
|
|
## extensions ##
|
|
|
|
include CustomFields::ProxyClassEnabler
|
2011-04-29 20:10:13 +00:00
|
|
|
include Extensions::Shared::Seo
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-05-25 00:32:12 +00:00
|
|
|
## fields (dynamic fields) ##
|
2010-07-16 20:36:07 +00:00
|
|
|
field :_slug
|
2010-05-26 00:41:10 +00:00
|
|
|
field :_position_in_list, :type => Integer, :default => 0
|
2010-07-19 00:09:10 +00:00
|
|
|
field :_visible, :type => Boolean, :default => true
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-05-25 00:32:12 +00:00
|
|
|
## validations ##
|
|
|
|
validate :require_highlighted_field
|
2011-06-21 20:03:24 +00:00
|
|
|
validate :validate_uniqueness_of_slug
|
|
|
|
validates_presence_of :_slug
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-05-25 00:32:12 +00:00
|
|
|
## associations ##
|
|
|
|
embedded_in :content_type, :inverse_of => :contents
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-06-16 14:43:29 +00:00
|
|
|
## callbacks ##
|
2011-06-21 20:03:24 +00:00
|
|
|
before_validation :set_slug
|
2010-07-19 00:09:10 +00:00
|
|
|
before_save :set_visibility
|
2010-06-16 14:43:29 +00:00
|
|
|
before_create :add_to_list_bottom
|
2011-01-18 14:24:42 +00:00
|
|
|
after_create :send_notifications
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-05-26 00:41:10 +00:00
|
|
|
## named scopes ##
|
2011-01-26 13:07:33 +00:00
|
|
|
scope :latest_updated, :order_by => :updated_at.desc, :limit => Locomotive.config.lastest_items_nb
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-05-25 00:32:12 +00:00
|
|
|
## methods ##
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2011-04-29 20:10:13 +00:00
|
|
|
delegate :site, :to => :content_type
|
|
|
|
|
2010-07-19 00:09:10 +00:00
|
|
|
alias :visible? :_visible?
|
2010-10-26 13:06:57 +00:00
|
|
|
alias :_permalink :_slug
|
2011-07-28 09:53:36 +00:00
|
|
|
alias :_permalink= :_slug=
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-10-10 23:16:43 +00:00
|
|
|
def site_id # needed by the uploader of custom fields
|
|
|
|
self.content_type.site_id
|
|
|
|
end
|
|
|
|
|
2011-01-18 00:19:18 +00:00
|
|
|
def highlighted_field_value
|
2011-05-19 15:44:04 +00:00
|
|
|
self.send(self.content_type.highlighted_field_name)
|
2011-01-18 00:19:18 +00:00
|
|
|
end
|
|
|
|
|
2011-05-19 15:44:04 +00:00
|
|
|
alias :_label :highlighted_field_value
|
|
|
|
|
2010-07-19 00:09:10 +00:00
|
|
|
def visible?
|
|
|
|
self._visible || self._visible.nil?
|
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-12-16 23:42:38 +00:00
|
|
|
def errors_to_hash
|
|
|
|
Hash.new.replace(self.errors)
|
|
|
|
end
|
|
|
|
|
2011-05-20 23:02:03 +00:00
|
|
|
def reload_parent!
|
|
|
|
self.class.reload_parent!
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.reload_parent!
|
|
|
|
self._parent = self._parent.reload
|
|
|
|
end
|
|
|
|
|
2010-06-10 13:30:22 +00:00
|
|
|
def to_liquid
|
|
|
|
Locomotive::Liquid::Drops::Content.new(self)
|
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-05-25 00:32:12 +00:00
|
|
|
protected
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-07-16 20:36:07 +00:00
|
|
|
def set_slug
|
2011-07-13 09:14:44 +00:00
|
|
|
self._slug = self.highlighted_field_value.dup if self._slug.blank? && self.highlighted_field_value.present?
|
2011-06-21 20:03:24 +00:00
|
|
|
self._slug.permalink! if self._slug.present?
|
2010-07-16 20:36:07 +00:00
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-07-19 00:09:10 +00:00
|
|
|
def set_visibility
|
|
|
|
field = self.content_type.content_custom_fields.detect { |f| %w{visible active}.include?(f._alias) }
|
|
|
|
self._visible = self.send(field._name) rescue true
|
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-06-16 14:43:29 +00:00
|
|
|
def add_to_list_bottom
|
|
|
|
self._position_in_list = self.content_type.contents.size
|
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-05-25 00:32:12 +00:00
|
|
|
def require_highlighted_field
|
2010-07-16 20:36:07 +00:00
|
|
|
_alias = self.highlighted_field_alias
|
2010-05-25 00:32:12 +00:00
|
|
|
if self.send(_alias).blank?
|
|
|
|
self.errors.add(_alias, :blank)
|
|
|
|
end
|
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2011-06-21 20:03:24 +00:00
|
|
|
def validate_uniqueness_of_slug
|
|
|
|
if self._parent.contents.any? { |c| c._id != self._id && c._slug == self._slug }
|
|
|
|
self.errors.add(:_slug, :taken)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-07-16 20:36:07 +00:00
|
|
|
def highlighted_field_alias
|
|
|
|
self.content_type.highlighted_field._alias.to_sym
|
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2011-01-18 14:24:42 +00:00
|
|
|
def send_notifications
|
2011-01-18 15:06:36 +00:00
|
|
|
return unless self.content_type.api_enabled? && !self.content_type.api_accounts.blank?
|
2011-01-18 14:24:42 +00:00
|
|
|
|
|
|
|
accounts = self.content_type.site.accounts.to_a
|
|
|
|
|
|
|
|
self.content_type.api_accounts.each do |account_id|
|
|
|
|
next if account_id.blank?
|
|
|
|
|
|
|
|
account = accounts.detect { |a| a.id.to_s == account_id.to_s }
|
|
|
|
|
|
|
|
Admin::Notifications.new_content_instance(account, self).deliver
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-07-23 20:09:54 +00:00
|
|
|
end
|