Sha256: bbda29c578fc83e79c9269012cf8ea145685b6b6774316e05fdb2c1665902013

Contents?: true

Size: 1.72 KB

Versions: 26

Compression:

Stored size: 1.72 KB

Contents

class Gallery
  include Mongoid::Document
  include Mongoid::Timestamps
  include Ish::PremiumItem
  include Ish::Utils

  PER_PAGE = 6

  field :name
  validates :name, :uniqueness => true
  index({ :name => -1 }) ## 2023-09-23 removed uniqueness

  field :subhead
  field :descr,   :as => :description

  field :is_public, type: Boolean, default: false
  has_and_belongs_to_many :shared_profiles, :class_name => 'Ish::UserProfile', :inverse_of => :shared_galleries

  field :is_trash,   type: Boolean, default: false
  field :is_done,    type: Boolean, default: false

  def published
    where({ :is_public => true, :is_trash => false }).order_by({ :created_at => :desc })
  end

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

  field :lang,    :default => 'en'
  field :username
  field :lead_id, type: :integer

  field :slug
  index({ :slug => -1 }, { :unique => true })
  validates :slug, presence: true, uniqueness: true
  before_validation :set_slug, :on => :create

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

  belongs_to :user_profile, :optional => true, :class_name => 'Ish::UserProfile', :inverse_of => :galleries

  has_many :newsitems # Seems correct. _vp_ 2022-03-21

  has_many :photos, order: { ordering: :asc }

  ACTIONS = [ 'show_mini', 'show_long', 'show' ]
  # @deprecated, use Gallery::ACTIONS
  def self.actions
    ACTIONS
  end


  RENDER_TITLES = 'index_titles' # view name
  RENDER_THUMBS = 'index_thumbs' # view name

  def export_fields
    %w| name subhead descr |
  end

end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
ish_models-3.0.0.1 lib/gallery.rb
ish_models-0.0.33.304 lib/gallery.rb
ish_models-0.0.33.303 lib/gallery.rb
ish_models-0.0.33.302 lib/gallery.rb
ish_models-0.0.33.301 lib/gallery.rb
ish_models-0.0.33.300 lib/gallery.rb
ish_models-0.0.33.299 lib/gallery.rb
ish_models-0.0.33.298 lib/gallery.rb
ish_models-0.0.33.297 lib/gallery.rb
ish_models-0.0.33.296 lib/gallery.rb
ish_models-0.0.33.295 lib/gallery.rb
ish_models-0.0.33.294 lib/gallery.rb
ish_models-0.0.33.293 lib/gallery.rb
ish_models-0.0.33.292 lib/gallery.rb
ish_models-0.0.33.291 lib/gallery.rb
ish_models-0.0.33.287 lib/gallery.rb
ish_models-0.0.33.286 lib/gallery.rb
ish_models-0.0.33.285 lib/gallery.rb
ish_models-0.0.33.284 lib/gallery.rb
ish_models-0.0.33.283 lib/gallery.rb