Sha256: 10dd0dc9f97f3e591feb7e420fc18e9337416e2163f54df85618bb6078479296

Contents?: true

Size: 1.61 KB

Versions: 19

Compression:

Stored size: 1.61 KB

Contents

class Venue
  include ::Mongoid::Document
  include ::Mongoid::Timestamps

  field :name, :type => String
  validates :name, :uniqueness => true, :allow_nil => false

  field :name_seo, :type => String
  validates :name_seo, :uniqueness => true, :allow_nil => false
  
  field :descr, :type => String
  
  field :is_trash, :type => Boolean, :default => false
  scope :fresh, ->{ where({ :is_trash => false }) }
  scope :trash, ->{ where({ :is_trash => true }) }

  field :is_public, :type => Boolean, :default => true
  scope :public, ->{ where({ :is_public => true }) }
  scope :not_public, ->{ where({ :is_public => false }) }

  field :is_feature, :type => Boolean, :default => false

  field :x, :type => Float
  field :y, :type => Float

  field :lang, :type => String, :default => 'en'

  belongs_to :city
  belongs_to :owner, :class_name => 'User', :inverse_of => :owned_venue
  validates :city, :allow_nil => false, :presence => true

  has_and_belongs_to_many :users

  has_one :profile_photo, :class_name => 'Photo', :inverse_of => :profile_venue

  has_many :reports
  has_many :galleries
  has_many :photos

  embeds_many :newsitems
  embeds_many :features

  def self.list conditions = { :is_trash => false }
    out = self.where( conditions).order_by( :name => :asc )
    [['', nil]] + out.map { |item| [ item.name, item.id ] }
  end

  set_callback(:create, :before) do |doc|
    doc.name_seo = doc.name.to_simple_string
  end

  def self.types
    return []
#    if 'en' == @locale
#      [ 'Hotels', 'Restaurants', 'Bars' ]
#    else
#      [ 'Hotels', 'Restaurants', 'Bars' ]
#    end
  end

  def self.n_features
    6
  end

end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
ish_models-0.0.33.17 lib/venue.rb
ish_models-0.0.33.16 lib/venue.rb
ish_models-0.0.33.15 lib/venue.rb
ish_models-0.0.33.14 lib/venue.rb
ish_models-0.0.33.13 lib/venue.rb
ish_models-0.0.33.12 lib/venue.rb
ish_models-0.0.33.11 lib/venue.rb
ish_models-0.0.33.10 lib/venue.rb
ish_models-0.0.33.8 lib/venue.rb
ish_models-0.0.33.7 lib/venue.rb
ish_models-0.0.33.6 lib/venue.rb
ish_models-0.0.33.5 lib/venue.rb
ish_models-0.0.33 lib/venue.rb
ish_models-0.0.32 lib/venue.rb
ish_models-0.0.31 lib/venue.rb
ish_models-0.0.30 lib/venue.rb
ish_models-0.0.29.10 lib/venue.rb
ish_models-0.0.29.9 lib/venue.rb
ish_models-0.0.6 lib/venue.rb