OSDN Git Service

t#31896:refact elm
[pettanr/pettanr.git] / app / models / ground_color.rb
1 class GroundColor < ActiveRecord::Base
2   include Element
3   include ElementInspire
4   belongs_to :panel
5   belongs_to :color
6   
7   validates :panel_id, :numericality => {:allow_blank => true}
8   validates :code, :presence => true, :numericality => {:greater_than_or_equal_to => 0, :less_than => 0x1000000}
9   validates :z, :presence => true, :numericality => {:greater_than => 0}
10   validates :t, :presence => true, :numericality => {:greater_than_or_equal_to => 0}
11   
12   before_validation :valid_encode
13   
14   def valid_encode
15     ['caption'].each do |a|
16       next if attributes[a] == nil
17       raise Pettanr::BadRequest unless attributes[a].valid_encoding?
18     end
19   end
20   
21   def self.list_opt_for_panel
22     {
23       :ground_colors => {
24       }
25     }
26   end
27   
28   def self.show_opt_for_panel
29     {
30       :ground_colors => {
31       }
32     }
33   end
34   
35   def self.json_opt_for_panel
36     {
37     }
38   end
39   
40   def self.has_picture?
41     false
42   end
43   
44   def supply_default
45     self.code ||= 0
46     if self.panel
47       self.t = self.panel.new_t 
48       self.z = self.panel.new_z 
49     end
50   end
51   
52   def overwrite pid
53     self.panel_id = pid
54   end
55   
56   def visible? roles
57     if MagicNumber['run_mode'] == 0
58       return false unless guest_role_check(roles)
59     else
60       return false unless reader_role_check(roles)
61     end
62     return true if self.panel.own?(roles)
63     self.panel.visible? roles
64   end
65   
66   def opt_div_style spot = nil, opacity = 20
67     o = (spot and spot != self) ? "opacity: #{opacity.to_f/100}; filter:alpha(opacity=#{opacity});" : ''
68     "position: absolute; width:#{self.get_panel.width}px; height:#{self.get_panel.height}px; z-index:#{self.z}; background-color:##{format("%06x", self.code)}; #{o}"
69   end
70   
71   def boost
72   end
73   
74   def tag_element_type
75     'ground_color'
76   end
77   
78   def self.default_page_size
79     25
80   end
81   
82   def self.max_page_size
83     100
84   end
85   
86   def self.page prm = nil
87     page = prm.to_i
88     page = 1 if page < 1
89     page
90   end
91   
92   def self.page_size prm = self.default_page_size
93     page_size = prm.to_i
94     page_size = self.max_page_size if page_size > self.max_page_size
95     page_size = self.default_page_size if page_size < 1
96     page_size
97   end
98   
99   def self.list_where
100     'panels.publish > 0'
101   end
102   
103   def self.mylist_where au
104     ['panels.author_id = ?', au.id]
105   end
106   
107   def self.himlist_where au
108     ['panels.author_id = ? and panels.publish > 0', au.id]
109   end
110   
111   def self.list page = 1, page_size = self.default_page_size
112     GroundColor.where(self.list_where()).includes(GroundColor.list_opt).order('ground_colors.updated_at desc').offset((page -1) * page_size).limit(page_size)
113   end
114   
115   def self.mylist au, page = 1, page_size = Author.default_ground_color_page_size
116     GroundColor.where(self.mylist_where(au)).includes(GroundColor.list_opt).order('ground_colors.updated_at desc').offset((page -1) * page_size).limit(page_size)
117   end
118   
119   def self.himlist au, page = 1, page_size = Author.default_ground_color_page_size
120     GroundColor.where(self.himlist_where(au)).includes(GroundColor.list_opt).order('ground_colors.updated_at desc').offset((page -1) * page_size).limit(page_size)
121   end
122   
123   def self.list_paginate page = 1, page_size = self.default_page_size
124     Kaminari.paginate_array(Array.new(GroundColor.where(self.list_where()).includes(GroundColor.list_opt).count, nil)).page(page).per(page_size)
125   end
126   
127   def self.mylist_paginate au, page = 1, page_size = Author.default_ground_color_page_size
128     Kaminari.paginate_array(Array.new(GroundColor.where(self.mylist_where(au)).includes(GroundColor.list_opt).count, nil)).page(page).per(page_size)
129   end
130   
131   def self.himlist_paginate au, page = 1, page_size = Author.default_ground_color_page_size
132     Kaminari.paginate_array(Array.new(GroundColor.where(self.himlist_where(au)).includes(GroundColor.list_opt).count, nil)).page(page).per(page_size)
133   end
134   
135   def self.list_opt
136     {:panel => {:author => {}} }
137   end
138   
139   def self.list_json_opt
140     {:include => {:panel => {:include => {:author => {}}} }}
141   end
142   
143   def self.show cid, roles
144     opt = {}
145     opt.merge!(GroundColor.show_opt)
146     res = GroundColor.find(cid, opt)
147     raise ActiveRecord::Forbidden unless res.visible?(roles)
148     res
149   end
150   
151   def self.show_opt
152     {:include => {:panel => {:author => {}} }}
153   end
154   
155   def self.show_json_opt
156     {:include => {:panel => {:include => {:author => {}}} }}
157   end
158   
159   def store au
160     if self.new_record?
161       self.panel.ground_colors.build(self.attributes)
162     else
163       self.panel.ground_colors.each do |ground_color|
164         next unless ground_color == self
165         attr = self.attributes
166         attr.delete 'id'
167         ground_color.attributes = attr
168         break
169       end
170     end
171     self.panel.store({}, au)
172   end
173   
174   def remove au
175     self.panel.remove_element(self, au)
176   end
177   
178   def scenario
179     if caption.blank?
180       ''
181     else
182       '<p>' + ERB::Util.html_escape(self.caption) + '</p>'
183     end
184   end
185   
186   def plain_scenario
187     if caption.blank?
188       ''
189     else
190       self.caption + "\n"
191     end
192   end
193   
194 end