OSDN Git Service

t#31834:new base
[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 new_index
72     @new_index
73   end
74   
75   def new_index= v
76     @new_index = v
77   end
78   
79   def new_panel
80     @new_panel
81   end
82   
83   def new_panel= v
84     @new_panel = v
85   end
86   
87   def get_panel
88     self.panel || @new_panel
89   end
90   
91   def tag_id c = nil
92     'panel' + tag_panel_id + 'ground_color' + tag_element_id + c.to_s
93   end
94   
95   def field_tag_id f
96     self.tag_id + f.to_s
97   end
98   
99   def tag_panel_id
100     self.get_panel.new_record? ? '0' : self.get_panel.id.to_s
101   end
102   
103   def tag_element_id
104     self.new_record? ? '0' : self.id.to_s
105   end
106   
107   def tag_element_type
108     'ground_color'
109   end
110   
111   def tag_new_index
112     self.new_index.to_s
113   end
114   
115   def self.default_page_size
116     25
117   end
118   
119   def self.max_page_size
120     100
121   end
122   
123   def self.page prm = nil
124     page = prm.to_i
125     page = 1 if page < 1
126     page
127   end
128   
129   def self.page_size prm = self.default_page_size
130     page_size = prm.to_i
131     page_size = self.max_page_size if page_size > self.max_page_size
132     page_size = self.default_page_size if page_size < 1
133     page_size
134   end
135   
136   def self.list_where
137     'panels.publish > 0'
138   end
139   
140   def self.mylist_where au
141     ['panels.author_id = ?', au.id]
142   end
143   
144   def self.himlist_where au
145     ['panels.author_id = ? and panels.publish > 0', au.id]
146   end
147   
148   def self.list page = 1, page_size = self.default_page_size
149     GroundColor.where(self.list_where()).includes(GroundColor.list_opt).order('ground_colors.updated_at desc').offset((page -1) * page_size).limit(page_size)
150   end
151   
152   def self.mylist au, page = 1, page_size = Author.default_ground_color_page_size
153     GroundColor.where(self.mylist_where(au)).includes(GroundColor.list_opt).order('ground_colors.updated_at desc').offset((page -1) * page_size).limit(page_size)
154   end
155   
156   def self.himlist au, page = 1, page_size = Author.default_ground_color_page_size
157     GroundColor.where(self.himlist_where(au)).includes(GroundColor.list_opt).order('ground_colors.updated_at desc').offset((page -1) * page_size).limit(page_size)
158   end
159   
160   def self.list_paginate page = 1, page_size = self.default_page_size
161     Kaminari.paginate_array(Array.new(GroundColor.where(self.list_where()).includes(GroundColor.list_opt).count, nil)).page(page).per(page_size)
162   end
163   
164   def self.mylist_paginate au, page = 1, page_size = Author.default_ground_color_page_size
165     Kaminari.paginate_array(Array.new(GroundColor.where(self.mylist_where(au)).includes(GroundColor.list_opt).count, nil)).page(page).per(page_size)
166   end
167   
168   def self.himlist_paginate au, page = 1, page_size = Author.default_ground_color_page_size
169     Kaminari.paginate_array(Array.new(GroundColor.where(self.himlist_where(au)).includes(GroundColor.list_opt).count, nil)).page(page).per(page_size)
170   end
171   
172   def self.list_opt
173     {:panel => {:author => {}} }
174   end
175   
176   def self.list_json_opt
177     {:include => {:panel => {:include => {:author => {}}} }}
178   end
179   
180   def self.show cid, roles
181     opt = {}
182     opt.merge!(GroundColor.show_opt)
183     res = GroundColor.find(cid, opt)
184     raise ActiveRecord::Forbidden unless res.visible?(roles)
185     res
186   end
187   
188   def self.show_opt
189     {:include => {:panel => {:author => {}} }}
190   end
191   
192   def self.show_json_opt
193     {:include => {:panel => {:include => {:author => {}}} }}
194   end
195   
196   def store au
197     if self.new_record?
198       self.panel.ground_colors.build(self.attributes)
199     else
200       self.panel.ground_colors.each do |ground_color|
201         next unless ground_color == self
202         attr = self.attributes
203         attr.delete 'id'
204         ground_color.attributes = attr
205         break
206       end
207     end
208     self.panel.store({}, au)
209   end
210   
211   def remove au
212     self.panel.remove_element(self, au)
213   end
214   
215   def scenario
216     if caption.blank?
217       ''
218     else
219       '<p>' + ERB::Util.html_escape(self.caption) + '</p>'
220     end
221   end
222   
223   def plain_scenario
224     if caption.blank?
225       ''
226     else
227       self.caption + "\n"
228     end
229   end
230   
231 end