1 class Note < ActiveRecord::Base
4 has_many :comments, :class_name => "NoteComment",
5 :foreign_key => :note_id,
7 :conditions => { :visible => true }
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
17 after_initialize :set_defaults
19 # Sanity check the latitude and longitude and add an error if it's broken
21 errors.add_to_base("Note is not in the world") unless in_world?
26 self.status = "closed"
27 self.closed_at = Time.now.getutc
31 # Return a flattened version of the comments for a note
32 def flatten_comment(separator_char, upto_timestamp = :nil)
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
40 resp += comment.author_name if comment.author_name
41 resp += " " + comment.created_at.to_s + " ]"
48 # Check if a note is visible
50 return status != "hidden"
53 # Return the author object, derived from the first comment
55 self.comments.first.author
58 # Return the author IP address, derived from the first comment
60 self.comments.first.author_ip
63 # Return the author id, derived from the first comment
65 self.comments.first.author_id
68 # Return the author name, derived from the first comment
70 self.comments.first.author_name
75 # Fill in default values for new notes
77 self.status = "open" unless self.attribute_present?(:status)