]> git.openstreetmap.org Git - rails.git/blob - app/models/note.rb
Added description, user_id, user_ip columns to notes
[rails.git] / app / models / note.rb
1 # == Schema Information
2 #
3 # Table name: notes
4 #
5 #  id          :bigint(8)        not null, primary key
6 #  latitude    :integer          not null
7 #  longitude   :integer          not null
8 #  tile        :bigint(8)        not null
9 #  updated_at  :datetime         not null
10 #  created_at  :datetime         not null
11 #  status      :enum             not null
12 #  closed_at   :datetime
13 #  description :text             default(""), not null
14 #  user_id     :bigint(8)
15 #  user_ip     :inet
16 #
17 # Indexes
18 #
19 #  notes_created_at_idx   (created_at)
20 #  notes_tile_status_idx  (tile,status)
21 #  notes_updated_at_idx   (updated_at)
22 #
23 # Foreign Keys
24 #
25 #  notes_user_id_fkey  (user_id => users.id)
26 #
27
28 class Note < ApplicationRecord
29   include GeoRecord
30
31   has_many :comments, -> { left_joins(:author).where(:visible => true, :users => { :status => [nil, "active", "confirmed"] }).order(:created_at) }, :class_name => "NoteComment", :foreign_key => :note_id
32   has_many :all_comments, -> { left_joins(:author).order(:created_at) }, :class_name => "NoteComment", :foreign_key => :note_id, :inverse_of => :note
33   has_many :subscriptions, :class_name => "NoteSubscription"
34   has_many :subscribers, :through => :subscriptions, :source => :user
35
36   validates :id, :uniqueness => true, :presence => { :on => :update },
37                  :numericality => { :on => :update, :only_integer => true }
38   validates :latitude, :longitude, :numericality => { :only_integer => true }
39   validates :closed_at, :presence => true, :if => proc { :status == "closed" }
40   validates :status, :inclusion => %w[open closed hidden]
41
42   validate :validate_position
43
44   scope :visible, -> { where.not(:status => "hidden") }
45   scope :invisible, -> { where(:status => "hidden") }
46
47   after_initialize :set_defaults
48
49   DEFAULT_FRESHLY_CLOSED_LIMIT = 7.days
50
51   # Sanity check the latitude and longitude and add an error if it's broken
52   def validate_position
53     errors.add(:base, "Note is not in the world") unless in_world?
54   end
55
56   # Close a note
57   def close
58     self.status = "closed"
59     self.closed_at = Time.now.utc
60     save
61   end
62
63   # Reopen a note
64   def reopen
65     self.status = "open"
66     self.closed_at = nil
67     save
68   end
69
70   # Check if a note is visible
71   def visible?
72     status != "hidden"
73   end
74
75   # Check if a note is closed
76   def closed?
77     !closed_at.nil?
78   end
79
80   def freshly_closed?
81     return false unless closed?
82
83     Time.now.utc < freshly_closed_until
84   end
85
86   def freshly_closed_until
87     return nil unless closed?
88
89     closed_at + DEFAULT_FRESHLY_CLOSED_LIMIT
90   end
91
92   # Return the author object, derived from the first comment
93   def author
94     comments.first.author
95   end
96
97   # Return the author IP address, derived from the first comment
98   def author_ip
99     comments.first.author_ip
100   end
101
102   private
103
104   # Fill in default values for new notes
105   def set_defaults
106     self.status = "open" unless attribute_present?(:status)
107   end
108 end