personal-book/app/models/book.rb

142 lines
3.8 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
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
field :rss2_id, type: String
field :co_authors, type: String
paginates_per 10
belongs_to :member_profile
has_many :book_files, autosave: true, dependent: :destroy
accepts_nested_attributes_for :book_files
has_and_belongs_to_many :book_authors
accepts_nested_attributes_for :book_authors
2014-07-03 14:34:44 +00:00
has_and_belongs_to_many :book_author_types
belongs_to :book_type
before_validation :add_http
after_save :save_book_files, :save_book_authors
def create_link
title = []
2014-07-09 06:40:03 +00:00
title << self.member_profile.name if self.member_profile.present?
title << "#{self.book_authors.collect{|j| j.name}.join(', ')}" if self.book_authors.present?
title << self.book_title if self.book_title.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
title.join(', ')
end
def self.member_data
members = MemberProfile.all
member_data = []
members.each do |m|
2014-07-09 04:12:51 +00:00
if (m.first_name || m.last_name)
member_data << {"memberId" => m.id.to_s, "memberName" => m.name}
else
member_data << {"memberId" => m.id.to_s, "memberName" => "No Name"}
end
end
member_data.to_json
end
def save_book_files
self.book_files.each do |t|
if t.should_destroy
t.destroy
end
end
end
def save_book_authors
self.book_authors.each do |t|
if t.should_destroy
t.destroy
end
end
end
def authors
authors = []
authors << self.member_profile.name if self.member_profile_id.present?
authors << (!self.book_authors.blank? ? "#{self.book_authors.collect{|j| j.name}.join(', ')}" : nil)
authors.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|
plugin_data = self.get_plugin_field_data(field)
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
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 = []
self.book_files.each do |book_file|
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
{
"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