OSDN Git Service

classname rename to module_name
[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 :author_id, :presence => true, :numericality => true, :existence => {:both => false}
10   validates :t, :presence => true, :numericality => {:greater_than_or_equal_to => 0}
11   
12   def supply_default
13     self.scroll_id = nil
14     self.panel_id = nil
15     self.t = nil
16   end
17   
18   def overwrite operators
19     return false unless operators.author
20     self.author_id = operators.author.id
21   end
22   
23   def self.public_list_where
24     'scrolls.visible > 0'
25   end
26   
27   def self.by_author_list_includes
28     {
29       :scroll => {
30         :author => {}
31       }
32     }
33   end
34   
35   def self.show_opt
36     {:include => {
37       :scroll => {
38         :author => {}
39       }, 
40     }}
41   end
42   
43   def self.licensed_pictures scroll_panels
44     Panel.licensed_pictures scroll_panels.select {|sp| sp.panel }.map {|sp| sp.panel }
45   end
46   
47   def allow? operators
48     return nil if self.scroll_id == nil or self.panel_id == nil
49     self.scroll.own?(operators) and self.panel.usable?(operators)
50   end
51   
52 end