engine/app/models/site.rb

113 lines
2.9 KiB
Ruby
Raw Normal View History

class Site
include Locomotive::Mongoid::Document
2010-04-09 09:23:41 +00:00
## fields ##
field :name
field :subdomain
2010-04-09 09:23:41 +00:00
field :domains, :type => Array, :default => []
field :meta_keywords
field :meta_description
2010-04-25 00:33:38 +00:00
## associations ##
references_many :pages
references_many :snippets, :dependent => :destroy
references_many :theme_assets, :dependent => :destroy
references_many :asset_collections, :dependent => :destroy
references_many :content_types, :dependent => :destroy
embeds_many :memberships
2010-09-15 16:09:07 +00:00
## indexes
index :domains
2010-04-09 09:23:41 +00:00
## validations ##
2010-04-10 15:25:07 +00:00
validates_presence_of :name, :subdomain
validates_uniqueness_of :subdomain
validates_exclusion_of :subdomain, :in => Locomotive.config.reserved_subdomains
2010-04-10 15:25:07 +00:00
validates_format_of :subdomain, :with => Locomotive::Regexps::SUBDOMAIN, :allow_blank => true
validate :domains_must_be_valid_and_unique
2010-04-10 15:25:07 +00:00
## callbacks ##
after_create :create_default_pages!
2010-04-10 15:25:07 +00:00
before_save :add_subdomain_to_domains
after_destroy :destroy_pages
2010-04-10 15:25:07 +00:00
## named scopes ##
scope :match_domain, lambda { |domain| { :any_in => { :domains => [*domain] } } }
scope :match_domain_with_exclusion_of, lambda { |domain, site|
{ :any_in => { :domains => [*domain] }, :where => { :_id.ne => site.id } }
}
2010-04-09 09:23:41 +00:00
## methods ##
def all_pages_in_once
Page.quick_tree(self)
end
def domains=(array)
array = [] if array.blank?; super(array)
end
def accounts
Account.criteria.in(:_id => self.memberships.collect(&:account_id))
end
def admin_memberships
self.memberships.find_all { |m| m.admin? }
end
2010-04-10 15:25:07 +00:00
def add_subdomain_to_domains
self.domains ||= []
2010-10-29 14:19:41 +00:00
(self.domains << self.full_subdomain).uniq!
2010-04-10 15:25:07 +00:00
end
2010-04-10 15:25:07 +00:00
def domains_without_subdomain
2010-10-29 14:19:41 +00:00
(self.domains || []) - [self.full_subdomain]
2010-04-09 09:23:41 +00:00
end
def domains_with_subdomain
2010-10-29 14:19:41 +00:00
((self.domains || []) + [self.full_subdomain]).uniq
end
def full_subdomain
"#{self.subdomain}.#{Locomotive.config.default_domain}"
end
def to_liquid
Locomotive::Liquid::Drops::Site.new(self)
end
2010-04-09 09:23:41 +00:00
protected
2010-04-10 15:25:07 +00:00
def domains_must_be_valid_and_unique
return if self.domains.empty?
self.domains_without_subdomain.each do |domain|
if self.class.match_domain_with_exclusion_of(domain, self).any?
2010-04-10 15:25:07 +00:00
self.errors.add(:domains, :domain_taken, :value => domain)
end
2010-04-10 15:25:07 +00:00
if not domain =~ Locomotive::Regexps::DOMAIN
self.errors.add(:domains, :invalid_domain, :value => domain)
end
end
2010-04-09 09:23:41 +00:00
end
def create_default_pages!
%w{index 404}.each do |slug|
self.pages.create({
:slug => slug,
:title => I18n.t("attributes.defaults.pages.#{slug}.title"),
:raw_template => I18n.t("attributes.defaults.pages.#{slug}.body"),
:published => true
})
end
end
def destroy_pages
# pages is a tree so we just need to delete the root (as well as the page not found page)
self.pages.index.first.try(:destroy) && self.pages.not_found.first.try(:destroy)
end
end