]> git.openstreetmap.org Git - rails.git/blob - app/controllers/map_bugs_controller.rb
596ec4d5c58cafec2f4c019304196884de5bc352
[rails.git] / app / controllers / map_bugs_controller.rb
1 class MapBugsController < ApplicationController
2
3   layout 'site', :only => [:my_bugs]
4
5   before_filter :check_api_readable
6   before_filter :authorize_web, :only => [:add_bug, :close_bug, :edit_bug, :delete, :my_bugs]
7   before_filter :check_api_writable, :only => [:add_bug, :close_bug, :edit_bug, :delete]
8   before_filter :require_moderator, :only => [:delete]
9   before_filter :set_locale, :only => [:my_bugs]
10   after_filter :compress_output
11   around_filter :api_call_handle_error, :api_call_timeout
12
13   # Help methods for checking boundary sanity and area size
14   include MapBoundary
15
16   def get_bugs
17
18         # Figure out the bbox
19     bbox = params['bbox']
20
21     if bbox and bbox.count(',') == 3
22       bbox = bbox.split(',')
23           min_lon, min_lat, max_lon, max_lat = sanitise_boundaries(bbox)
24         else
25           #Fallback to old style, this is deprecated and should not be used
26           raise OSM::APIBadUserInput.new("No l was given") unless params['l']
27           raise OSM::APIBadUserInput.new("No r was given") unless params['r']
28           raise OSM::APIBadUserInput.new("No b was given") unless params['b']
29           raise OSM::APIBadUserInput.new("No t was given") unless params['t']
30
31           min_lon = params['l'].to_f
32           max_lon = params['r'].to_f
33           min_lat = params['b'].to_f
34           max_lat = params['t'].to_f
35     end
36         limit = getLimit
37         conditions = closedCondition
38         
39         # check boundary is sane and area within defined
40     # see /config/application.yml
41     begin
42       check_boundaries(min_lon, min_lat, max_lon, max_lat)
43     rescue Exception => err
44       report_error(err.message)
45       return
46     end
47
48
49
50         @bugs = MapBug.find_by_area(min_lat, min_lon, max_lat, max_lon, :order => "last_changed DESC", :limit => limit, :conditions => conditions)
51
52         respond_to do |format|
53           format.html {render :template => 'map_bugs/get_bugs.js', :content_type => "text/javascript"}
54           format.rss {render :template => 'map_bugs/get_bugs.rss'}
55           format.js
56           format.xml {render :template => 'map_bugs/get_bugs.xml'}
57           format.json { render :json => @bugs.to_json(:methods => [:lat, :lon], :only => [:id, :status, :date_created], :include => { :map_bug_comment => { :only => [:commenter_name, :date_created, :comment]}}) }      
58 #         format.gpx {render :template => 'map_bugs/get_bugs.gpx'}
59         end
60   end
61
62   def add_bug
63         raise OSM::APIBadUserInput.new("No lat was given") unless params['lat']
64         raise OSM::APIBadUserInput.new("No lon was given") unless params['lon']
65         raise OSM::APIBadUserInput.new("No text was given") unless params['text']
66
67         lon = params['lon'].to_f
68         lat = params['lat'].to_f
69         comment = params['text']
70
71         name = "NoName";
72         name = params['name'] if params['name'];
73
74     @bug = MapBug.create_bug(lat, lon)
75
76
77         #TODO: move this into a helper function
78         url = "http://nominatim.openstreetmap.org/reverse?lat=" + lat.to_s + "&lon=" + lon.to_s + "&zoom=16" 
79     response = REXML::Document.new(Net::HTTP.get(URI.parse(url))) 
80  
81     if result = response.get_text("reversegeocode/result") 
82       @bug.nearby_place = result.to_s 
83     else 
84       @bug.nearby_place = "unknown"
85     end 
86         
87         @bug.save;
88         add_comment(@bug, comment, name);
89  
90         render_ok
91   end
92
93   def edit_bug
94         raise OSM::APIBadUserInput.new("No id was given") unless params['id']
95         raise OSM::APIBadUserInput.new("No text was given") unless params['text']
96
97         name = "NoName";
98         name = params['name'] if params['name'];
99         
100         id = params['id'].to_i
101
102         bug = MapBug.find_by_id(id);
103
104         bug_comment = add_comment(bug, params['text'], name);
105
106         render_ok
107   end
108
109   def close_bug
110         raise OSM::APIBadUserInput.new("No id was given") unless params['id']
111         
112         id = params['id'].to_i
113
114         bug = MapBug.find_by_id(id);
115         bug.close_bug;
116
117         render_ok
118   end 
119
120
121   def rss
122         request.format = :rss
123         get_bugs
124   end
125
126   def gpx_bugs
127         request.format = :xml
128         get_bugs
129   end
130
131   def read
132         @bug = MapBug.find(params['id'])
133     render :text => "", :status => :gone unless @bug.visible
134         respond_to do |format|
135           format.rss
136           format.xml
137           format.json { render :json => @bug.to_json(:methods => [:lat, :lon], :only => [:id, :status, :date_created], :include => { :map_bug_comment => { :only => [:commenter_name, :date_created, :comment]}}) }       
138         end
139   end
140
141   def delete
142         bug = MapBug.find(params['id'])
143         bug.status = "hidden"
144         bug.save
145         render :text => "ok\n", :content_type => "text/html" 
146   end
147
148   def search
149         raise OSM::APIBadUserInput.new("No query string was given") unless params['q']
150         limit = getLimit
151         conditions = closedCondition
152         conditions = cond_merge conditions, ['map_bug_comment.comment ~ ?', params['q']]
153         
154         #TODO: There should be a better way to do this.   CloseConditions are ignored at the moment
155
156         bugs2 = MapBug.find(:all, :limit => limit, :order => "last_changed DESC", :joins => :map_bug_comment,
157                                                 :conditions => conditions)
158         @bugs = bugs2.uniq
159         respond_to do |format|
160           format.html {render :template => 'map_bugs/get_bugs.js', :content_type => "text/javascript"}
161           format.rss {render :template => 'map_bugs/get_bugs.rss'}
162           format.js
163           format.xml {render :template => 'map_bugs/get_bugs.xml'}
164           format.json { render :json => @bugs.to_json(:methods => [:lat, :lon], :only => [:id, :status, :date_created], :include => { :map_bug_comment => { :only => [:commenter_name, :date_created, :comment]}}) }
165 #         format.gpx {render :template => 'map_bugs/get_bugs.gpx'}
166         end
167   end
168
169   def my_bugs
170  
171     if params[:display_name] 
172       @user2 = User.find_by_display_name(params[:display_name], :conditions => { :visible => true }) 
173  
174       if @user2  
175         if @user2.data_public? or @user2 == @user 
176           conditions = ['map_bug_comment.commenter_id = ?', @user2.id] 
177         else 
178           conditions = ['false'] 
179         end 
180       elsif request.format == :html 
181         @title = t 'user.no_such_user.title' 
182         @not_found_user = params[:display_name] 
183         render :template => 'user/no_such_user', :status => :not_found 
184       end 
185     end
186
187         if @user2 
188       user_link = render_to_string :partial => "user", :object => @user2 
189     end 
190
191         @title =  t 'bugs.user.title_user', :user => @user2.display_name 
192     @heading =  t 'bugs.user.heading_user', :user => @user2.display_name 
193     @description = t 'bugs.user.description_user', :user => user_link
194
195         @page = (params[:page] || 1).to_i 
196     @page_size = 10
197
198         @bugs = MapBug.find(:all, 
199                                                 :include => [:map_bug_comment, {:map_bug_comment => :user}],
200                                                 :joins => :map_bug_comment,
201                                                 :order => "last_changed DESC",
202                                                 :conditions => conditions,
203                                                 :offset => (@page - 1) * @page_size, 
204                                                 :limit => @page_size).uniq
205         
206   end
207
208 private 
209   #------------------------------------------------------------ 
210   # utility functions below. 
211   #------------------------------------------------------------   
212  
213   ## 
214   # merge two conditions 
215   # TODO: this is a copy from changeset_controler.rb and should be factored out to share
216   def cond_merge(a, b) 
217     if a and b 
218       a_str = a.shift 
219       b_str = b.shift 
220       return [ a_str + " AND " + b_str ] + a + b 
221     elsif a  
222       return a 
223     else b 
224       return b 
225     end 
226   end 
227
228
229
230   def render_ok
231         output_js = :false
232         output_js = :true if params['format'] == "js"
233
234         if output_js == :true
235           render :text => "osbResponse();", :content_type => "text/javascript" 
236         else
237           render :text => "ok " + @bug.id.to_s + "\n", :content_type => "text/html" if @bug
238           render :text => "ok\n", :content_type => "text/html" unless @bug
239         end
240   end
241
242   def getLimit
243         limit = 100;
244         limit = params['limit'] if ((params['limit']) && (params['limit'].to_i < 10000) && (params['limit'].to_i > 0))
245         return limit
246   end
247
248   def closedCondition
249         closed_since = 7 unless params['closed']
250         closed_since = params['closed'].to_i if params['closed']
251         
252         if closed_since < 0
253           conditions = ["status != 'hidden'"]
254         elsif closed_since > 0
255           conditions = ["((status = 'open') OR ((status = 'closed' ) AND (date_closed > '" + (Time.now - closed_since.days).to_s + "')))"]
256         else
257           conditions = ["status = 'open'"]
258         end
259
260         return conditions
261   end
262
263   def add_comment(bug, comment, name) 
264     t = Time.now.getutc 
265     bug_comment = bug.map_bug_comment.create(:date_created => t, :visible => true, :comment => comment);  
266     if @user  
267       bug_comment.commenter_id = @user.id
268           bug_comment.commenter_name = @user.display_name
269     else  
270       bug_comment.commenter_ip = request.remote_ip
271           bug_comment.commenter_name = name + " (a)"
272     end
273     bug_comment.save; 
274     bug.last_changed = t 
275     bug.save 
276   end
277
278 end