]> git.openstreetmap.org Git - rails.git/blob - app/models/note.rb
Make setting of a default status for new notes work
[rails.git] / app / models / note.rb
1 class Note < ActiveRecord::Base
2   include GeoRecord
3
4   has_many :comments, :class_name => "NoteComment",
5                       :foreign_key => :note_id,
6                       :order => :created_at,
7                       :conditions => { :visible => true }
8
9   validates_presence_of :id, :on => :update
10   validates_uniqueness_of :id
11   validates_numericality_of :latitude, :only_integer => true
12   validates_numericality_of :longitude, :only_integer => true
13   validates_presence_of :closed_at if :status == "closed"
14   validates_inclusion_of :status, :in => ["open", "closed", "hidden"]
15   validate :validate_position
16
17   after_initialize :set_defaults
18
19   # Sanity check the latitude and longitude and add an error if it's broken
20   def validate_position
21     errors.add_to_base("Note is not in the world") unless in_world?
22   end
23
24   # Close a note
25   def close
26     self.status = "closed"
27     self.closed_at = Time.now.getutc
28     self.save
29   end
30
31   # Return a flattened version of the comments for a note
32   def flatten_comment(separator_char, upto_timestamp = :nil)
33     resp = ""
34     comment_no = 1
35     self.comments.each do |comment|
36       next if upto_timestamp != :nil and comment.created_at > upto_timestamp
37       resp += (comment_no == 1 ? "" : separator_char)
38       resp += comment.body if comment.body
39       resp += " [ " 
40       resp += comment.author_name if comment.author_name
41       resp += " " + comment.created_at.to_s + " ]"
42       comment_no += 1
43     end
44
45     return resp
46   end
47
48   # Check if a note is visible
49   def visible?
50     return status != "hidden"
51   end
52
53   # Return the author object, derived from the first comment
54   def author
55     self.comments.first.author
56   end
57
58   # Return the author IP address, derived from the first comment
59   def author_ip
60     self.comments.first.author_ip
61   end
62
63   # Return the author id, derived from the first comment
64   def author_id
65     self.comments.first.author_id
66   end
67
68   # Return the author name, derived from the first comment
69   def author_name
70     self.comments.first.author_name
71   end
72
73 private
74
75   # Fill in default values for new notes
76   def set_defaults
77     self.status = "open" unless self.attribute_present?(:status)
78   end
79 end