Sha256: e3721e4e45970a18ab279c8e0b790a134456db7ee3c19cf1d27276f3d84c1720

Contents?: true

Size: 1.5 KB

Versions: 5

Compression:

Stored size: 1.5 KB

Contents

class Newsitem
  include Mongoid::Document
  include Mongoid::Timestamps

  belongs_to :site,    :optional => true
  belongs_to :tag,     :optional => true
  belongs_to :city,    :optional => true
  belongs_to :report,  :optional => true
  belongs_to :user_profile, class_name: 'IshModels::UserProfile', optional: true
  belongs_to :map, class_name: '::Gameui::Map', optional: true

  belongs_to :gallery, :optional => true
  def gallery
    self.gallery_id ? Gallery.unscoped.find( self.gallery_id ) : nil
  end

  belongs_to :video,   :optional => true

  has_one :photo

  field :name
  field :descr
  def description
    descr
  end

  field :image_path
  field :link_path
  field :username
  field :partial_name

  field :weight,           :type => Integer, :default => 10
  field :n_upvotes,        :type => Integer, :default => 0
  field :n_downvotes,      :type => Integer, :default => 0
  field :upvoting_users,   :type => Array, :default => []
  field :downvoting_users, :type => Array, :default => []
  field :is_feature,       :type => Boolean, :default => false

  PER_PAGE = 6

  default_scope ->{ order_by({ :created_at => :desc }) }

  def self.from_params item
    n = Newsitem.new
    n.descr = item[:descr]
    n.username = item[:username]

    unless item[:report_id].blank?
      n.report = Report.find item[:report_id]
    end

    unless item[:gallery_id].blank?
      n.gallery = Gallery.find item[:gallery_id]
    end

    n.partial_name = item.partial_name unless item.partial_name.blank?

    return n
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ish_models-0.0.33.140 lib/newsitem.rb
ish_models-0.0.33.139 lib/newsitem.rb
ish_models-0.0.33.138 lib/newsitem.rb
ish_models-0.0.33.137 lib/newsitem.rb
ish_models-0.0.33.136 lib/newsitem.rb