Sha256: f32942811d5eaf27a596c5cb36d2b9b0c54dcf9c1ca50d652464207c25463ea6
Contents?: true
Size: 1.95 KB
Versions: 9
Compression:
Stored size: 1.95 KB
Contents
class Cms::Site < ActiveRecord::Base ComfortableMexicanSofa.establish_connection(self) self.table_name = 'cms_sites' # -- Relationships -------------------------------------------------------- has_many :layouts, :dependent => :destroy has_many :pages, :dependent => :destroy has_many :snippets, :dependent => :destroy has_many :files, :dependent => :destroy has_many :categories, :dependent => :destroy # -- Callbacks ------------------------------------------------------------ before_validation :assign_identifier, :assign_label before_save :clean_path # -- Validations ---------------------------------------------------------- validates :identifier, :presence => true, :uniqueness => true, :format => { :with => /^\w[a-z0-9_-]*$/i } validates :label, :presence => true validates :hostname, :presence => true, :uniqueness => { :scope => :path }, :format => { :with => /^[\w\.\-]+$/ } # -- Scopes --------------------------------------------------------------- scope :mirrored, where(:is_mirrored => true) # -- Class Methods -------------------------------------------------------- # returning the Cms::Site instance based on host and path def self.find_site(host, path = nil) return Cms::Site.first if Cms::Site.count == 1 cms_site = nil Cms::Site.find_all_by_hostname(host).each do |site| if site.path.blank? cms_site = site elsif "#{path}/".match /^\/#{Regexp.escape(site.path.to_s)}\// cms_site = site break end end return cms_site end protected def assign_identifier self.identifier = self.identifier.blank?? self.hostname.try(:idify) : self.identifier end def assign_label self.label = self.label.blank?? self.identifier.try(:titleize) : self.label end def clean_path self.path ||= '' self.path.squeeze!('/') self.path.gsub!(/\/$/, '') end end
Version data entries
9 entries across 9 versions & 1 rubygems