gallery/app/models/album_image.rb

27 lines
817 B
Ruby
Raw Normal View History

2015-10-23 06:50:07 +00:00
require 'net/http'
class AlbumImage
include Mongoid::Document
include Mongoid::Timestamps
include OrbitTag::Taggable
mount_uploader :file, GalleryUploader
field :title
2021-04-04 05:03:24 +00:00
field :title_translations, type: Hash, default: {}
2021-09-01 04:55:33 +00:00
field :description, type: String, localize: true, default: ""
2014-06-13 08:15:13 +00:00
field :rss2_id, type: String
field :order, type: Integer, default: -1
2021-04-04 05:03:24 +00:00
# has_and_belongs_to_many :tags, :class_name => "GalleryTag"
2021-04-04 05:03:24 +00:00
def title_translations
tmp = super || {}
if tmp == {}
tmp = I18n.available_locales.collect{|locale| [locale,self[:title]]}.to_h
end
tmp
end
def title
self.title_translations[I18n.locale]
end
belongs_to :album
has_many :album_crops, :autosave => true, :dependent => :destroy
accepts_nested_attributes_for :album_crops, :allow_destroy => true
end