OSDN Git Service

fix js manifest
[pettanr/pettanr.git] / app / models / scroll_panel.rb
1 class ScrollPanel < Peta::Leaf
2   load_manifest
3   belongs_to :author
4   belongs_to :panel
5   belongs_to :scroll
6   
7   validates :scroll_id, :presence => true, :numericality => true, :existence => {:both => false}
8   validates :panel_id, :presence => true, :numericality => true, :existence => {:both => false}
9   validates :t, :presence => true, :numericality => {:greater_than_or_equal_to => 0}
10   
11   def supply_default
12     self.scroll_id = nil
13     self.panel_id = nil
14     self.t = nil
15   end
16   
17   def overwrite operators
18     return false unless operators.author
19     self.author_id = operators.author.id
20   end
21   
22   def self.public_list_where
23     'scrolls.visible > 0'
24   end
25   
26   def self.by_author_list_includes
27     {
28       :scroll => {
29         :author => {}
30       }
31     }
32   end
33   
34   def self.show_opt
35     {:include => {
36       :scroll => {
37         :author => {}
38       }, 
39     }}
40   end
41   
42   def self.licensed_pictures scroll_panels
43     Panel.licensed_pictures scroll_panels.select {|sp| sp.panel }.map {|sp| sp.panel }
44   end
45   
46   def allow? operators
47     return nil if self.scroll_id == nil or self.panel_id == nil
48     self.scroll.own?(operators) and self.panel.usable?(operators)
49   end
50   
51 end