X-Git-Url: http://git.osdn.net/view?p=pettanr%2Fpettanr.git;a=blobdiff_plain;f=app%2Fmodels%2Fscroll.rb;h=3a500028b8c7325b50880f64a568430fee2df94f;hp=395a84f42c387b05f96b4c4ffaadb3953c7a490d;hb=d7c8065be895b67dc453b0e11ad0f259f1ca6706;hpb=387de02ada617308cad50c4bd35e8dbb05c28be4 diff --git a/app/models/scroll.rb b/app/models/scroll.rb index 395a84f4..3a500028 100644 --- a/app/models/scroll.rb +++ b/app/models/scroll.rb @@ -1,71 +1,72 @@ -class Scroll < Pettanr::Content +class Scroll < Peta::Binder + load_manifest has_many :scroll_panels belongs_to :author + has_many :panels, :through => :scroll_panels + validates :title, :presence => true, :length => {:maximum => 100} validates :visible, :presence => true, :numericality => true, :inclusion => {:in => 0..1} validates :author_id, :presence => true, :numericality => true, :existence => {:both => false} - - def self.valid_encode_columns - super + ['title'] - end - def supply_default - self.visible = 0 if self.visible.blank? + scope :find_index, -> do + where(arel_table[:visible].gt 0) end - def overwrite operators - return false unless operators.author - self.author_id = operators.author.id + scope :find_private, -> (operators) do + where(author_id: operators.author.id) end - def visible? operators - return false unless super - self.visible > 0 + scope :find_by_author, -> (author_id) do + find_index.where(author_id: author_id) end - def scroll_panels_count - ScrollPanel.where(['scroll_panels.scroll_id = ?', self.id]).count + scope :with_panels, -> do + includes(scroll_panels: :panel) end - def self.list_order - 'scrolls.updated_at desc' + scope :find_by_panel, -> (panel_id) do + with_panels.find_index.where(Panel.arel_table[:id].eq panel_id).references(:panel) end - def self.list_where - 'scrolls.visible > 0' + # scope of find_play + def self.find_play(id) + ScrollPanel.find_play(id) end - def self.list_opt - {:scroll_panels => {:panel => {}}, :author => {} } + # scope of find_private_play + def self.find_private_play(id, operators) + ScrollPanel.find_private_play(id, operators) end - def self.list_json_opt - {:include => {:scroll_panels => {:include => {:panel => {}}}, :author => {}}} + def supply_default + self.visible = 0 if self.visible.blank? + self.author_id = nil end - def self.show_opt - {:include => {:scroll_panels => {:panel => {}}, :author => {}}} + def overwrite operators + return false unless operators.author + self.author_id = operators.author.id + super() end - def self.show_json_opt - {:include => {:scroll_panels => {:include => {:panel => {}}}, :author => {}}} + def visible? operators + case super + when nil # super return + return true + when false + return false + else + self.visible > 0 + end end - def self.visible_count - Scroll.count 'visible > 0' + def self.public_list_where list + 'scrolls.visible > 0' end - def destroy_with_scroll_panel - res = false - Scroll.transaction do - self.scroll_panels.each do |scroll_panel| - raise ActiveRecord::Rollback unless scroll_panel.destroy - end - raise ActiveRecord::Rollback unless self.destroy - res = true - end - res + def self.show_opt + {:include => {:scroll_panels => {:panel => {}}, :author => {}}} end def scenario