Sha256: fc5433ddcc7fa5f29528d919863330974b3bfb803bb3e0cef2cb2a021c4f5337

Contents?: true

Size: 1.28 KB

Versions: 6

Compression:

Stored size: 1.28 KB

Contents

class Video
  include Mongoid::Document
  include Mongoid::Timestamps

  PER_PAGE = 6

  field :name, :type => String
  field :descr, :type => String

  default_scope ->{ where({ :is_public => true, :is_trash => false }).order_by({ :created_at => :desc }) }

  field :is_trash, :type => Boolean, :default => false
  field :is_public, :type => Boolean, :default => true
  field :is_feature, :type => Boolean, :default => false

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

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

  field :youtube_id, :type => String
  validates :youtube_id, :uniqueness => true, :presence => true

  belongs_to :tag,  :optional => true
  belongs_to :city, :optional => true
  belongs_to :site
  validates :site, :presence => true
  belongs_to :user
  validates :user, :presence => true
  belongs_to :user_profile, :optional => true
  has_many :newsitems

  accepts_nested_attributes_for :site, :tag, :city

  def self.list
    [['', nil]] + Video.all.order_by( :created_at => :desc ).map { |item| [ "#{item.created_at.strftime('%Y%m%d')} #{item.name}", item.id ] }
  end

  set_callback( :create, :before ) do |doc|
    if doc.is_public
      doc.city.add_newsitem( doc ) unless doc.city.blank?
      doc.site.add_newsitem( doc ) unless doc.site.blank?
    end
    
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ish_models-0.0.33.25 lib/video.rb
ish_models-0.0.33.24 lib/video.rb
ish_models-0.0.33.23 lib/video.rb
ish_models-0.0.33.22 lib/video.rb
ish_models-0.0.33.21 lib/video.rb
ish_models-0.0.33.20 lib/video.rb