Sha256: 3cf8638c199585ed81a01488b0244be102fa744ec3bbfadff2f4217d7784e97c

Contents?: true

Size: 903 Bytes

Versions: 3

Compression:

Stored size: 903 Bytes

Contents

module RocketCMS
  module Models
    module Mongoid
      module Gallery
        extend ActiveSupport::Concern
        include ::Mongoid::Paperclip

        included do
          manual_slug :name

          acts_as_nested_set
          scope :sorted, -> { order_by([:lft, :asc]) }

          has_mongoid_attached_file :image # need to override
          validates_attachment :image, content_type: { content_type: ["image/jpg", "image/jpeg", "image/png"] }

          def image_file_name=(val)
            return self[:image_file_name] = ""  if val == ""
            return self[:image_file_name] = nil if val == nil
            val = val.to_s
            extension = File.extname(val)[1..-1]
            file_name = val[0..val.size-extension.size-1]
            self[:image_file_name] = "#{file_name.filename_to_slug}.#{extension.filename_to_slug}"
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ack_rocket_cms-0.7.7.1 lib/rocket_cms/models/mongoid/gallery.rb
ack_rocket_cms-0.7.7 lib/rocket_cms/models/mongoid/gallery.rb
ack_rocket_cms-0.7.6.4 lib/rocket_cms/models/mongoid/gallery.rb