personal-book/app/models/book.rb

121 lines
3.7 KiB
Ruby
Raw Normal View History

class Book
include Mongoid::Document
include Mongoid::Timestamps
include Mongoid::Attributes::Dynamic
include OrbitModel::Status
include MemberHelper
include Slug
field :book_title, as: :slug_title, type: String, localize: true
field :extracted_chapters, type: String, localize: true
field :publisher, type: String, localize: true
field :editor, type: String, localize: true
2014-08-11 11:18:35 +00:00
field :authors, type: String, localize: true
field :year, type: String
field :language, type: String
field :publish_date, type: DateTime
field :pages, type: String
field :isbn, type: String
field :keywords, type: String
field :publication_date, type: DateTime
field :url, type: String
field :note, type: String
2014-12-05 06:37:24 +00:00
field :create_user_id, :type => BSON::ObjectId
field :update_user_id, :type => BSON::ObjectId
field :rss2_id, type: String
2014-08-11 11:18:35 +00:00
field :number_of_authors
2014-12-05 06:37:24 +00:00
paginates_per 10
belongs_to :member_profile
2015-01-09 07:38:49 +00:00
belongs_to :book_type
has_many :book_files, autosave: true, dependent: :destroy
2014-08-11 11:18:35 +00:00
accepts_nested_attributes_for :book_files, :allow_destroy => true
2014-07-03 14:34:44 +00:00
has_and_belongs_to_many :book_author_types
before_validation :add_http
def create_link
title = []
2015-05-08 08:21:45 +00:00
# title << self.member_profile.name if self.member_profile.present?
2014-08-11 11:18:35 +00:00
title << self.authors if self.authors.present?
title << self.book_title if self.book_title.present?
2015-01-09 07:38:49 +00:00
title << self.extracted_chapters if self.extracted_chapters.present?
title << self.publisher if self.publisher.present?
title << self.isbn if self.isbn.present?
if !self.publish_date.nil?
pd = self.publish_date.strftime("%Y-%m-%d").split('-')
title << pd[0]+"/"+pd[1]
end
2015-01-09 07:38:49 +00:00
title << self.pages if self.pages.present?
title << self.year
2014-12-05 06:37:24 +00:00
title.join(', ')
end
2014-08-01 11:49:55 +00:00
def get_plugin_data(fields_to_show)
plugin_datas = []
fields_to_show.each do |field|
2014-10-03 06:11:11 +00:00
plugin_data = self.get_plugin_field_data(field) rescue nil
2014-08-01 11:49:55 +00:00
next if plugin_data.blank? or plugin_data['value'].blank?
plugin_datas << plugin_data
end
plugin_datas
end
def get_plugin_field_data(field)
case field
2015-01-09 07:38:49 +00:00
when "book_paper_type"
value = self.book_type.title rescue ""
when "author_type"
value = self.book_author_types.collect{|type| type.title}.join(',') rescue ""
2014-08-11 11:18:35 +00:00
when "author_name"
value = []
([I18n.locale]+(Site.first.in_use_locales-[I18n.locale])).each do |locale|
if self.member_profile.first_name_translations[locale] || self.member_profile.last_name_translations[locale]
value << "#{self.member_profile.first_name_translations[locale]} #{self.member_profile.last_name_translations[locale]}"
end
end
value = value.join(" / ")
2014-08-01 11:49:55 +00:00
when "language"
value = I18n.t(self.language) rescue ""
when "publish_date", "publication_date"
value = self.send(field).to_date.strftime("%Y-%m-%d") rescue nil
when "file"
files = []
2014-12-05 06:37:24 +00:00
self.book_files.each do |book_file|
2014-08-01 11:49:55 +00:00
url = book_file.member_book_file.url
title = (book_file.title.blank? ? File.basename(book_file.member_book_file.path) : book_file.title)
files << "<li><a href='#{url}'' target='_blank'>#{title}</li>"
end
value = files.join("")
else
value = self.send(field) rescue ""
end
value = (value =~ /\A#{URI::regexp(['http', 'https'])}\z/) ? "<a href='#{value}' target='blank'>#{value}</a>" : value
2014-12-05 06:37:24 +00:00
2014-08-01 11:49:55 +00:00
{
"key"=>field,
"title_class"=>"book-#{field.gsub('_','-')}-field",
"value_class"=>"book-#{field.gsub('_','-')}-value",
"title"=>I18n.t('personal_book.'+field),
"value"=>value
}
end
protected
def add_http
unless self.url.blank? || self.url[/^http:\/\//] || self.url[/^https:\/\//]
self.url = 'http://' + self.url
end
end
end