]> git.openstreetmap.org Git - rails.git/blob - app/models/map_bug.rb
Detabify and tidy up some more of the bugs code
[rails.git] / app / models / map_bug.rb
1 class MapBug < ActiveRecord::Base
2   include GeoRecord
3
4   has_many :map_bug_comment, :foreign_key => :bug_id, :order => :date_created, :conditions => "visible = true and comment is not null"
5
6   validates_presence_of :id, :on => :update
7   validates_uniqueness_of :id
8   validates_numericality_of :latitude, :only_integer => true
9   validates_numericality_of :longitude, :only_integer => true
10   validates_presence_of :date_created
11   validates_presence_of :last_changed
12   validates_presence_of :date_closed if :status == "closed"
13   validates_inclusion_of :status, :in => ["open", "closed", "hidden"]
14
15   def self.create_bug(lat, lon)
16     bug = MapBug.new(:lat => lat, :lon => lon)
17     raise OSM::APIBadUserInput.new("The node is outside this world") unless bug.in_world?
18
19     bug.date_created = Time.now.getutc
20     bug.last_changed = Time.now.getutc
21     bug.status = "open"
22
23     return bug
24   end
25
26   def close_bug
27     self.status = "closed"
28     close_time = Time.now.getutc
29     self.last_changed = close_time
30     self.date_closed = close_time
31
32     self.save
33   end
34
35   def flatten_comment(separator_char, upto_timestamp = :nil)
36     resp = ""
37     comment_no = 1
38     self.map_bug_comment.each do |comment|
39       next if upto_timestamp != :nil and comment.date_created > upto_timestamp
40       resp += (comment_no == 1 ? "" : separator_char)
41       resp += comment.comment if comment.comment
42       resp += " [ " 
43       resp += comment.commenter_name if comment.commenter_name
44       resp += " " + comment.date_created.to_s + " ]"
45       comment_no += 1
46     end
47
48     return resp
49   end
50
51   def visible
52     return status != "hidden"
53   end
54 end