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