]> git.openstreetmap.org Git - rails.git/blob - app/models/diary_comment.rb
Fix rubocop warning
[rails.git] / app / models / diary_comment.rb
1 # == Schema Information
2 #
3 # Table name: diary_comments
4 #
5 #  id             :bigint(8)        not null, primary key
6 #  diary_entry_id :bigint(8)        not null
7 #  user_id        :bigint(8)        not null
8 #  body           :text             not null
9 #  created_at     :datetime         not null
10 #  updated_at     :datetime         not null
11 #  visible        :boolean          default(TRUE), not null
12 #  body_format    :enum             default("markdown"), not null
13 #
14 # Indexes
15 #
16 #  diary_comment_user_id_created_at_index  (user_id,created_at)
17 #  diary_comments_entry_id_idx             (diary_entry_id,id) UNIQUE
18 #
19 # Foreign Keys
20 #
21 #  diary_comments_diary_entry_id_fkey  (diary_entry_id => diary_entries.id)
22 #  diary_comments_user_id_fkey         (user_id => users.id)
23 #
24
25 class DiaryComment < ApplicationRecord
26   belongs_to :user
27   belongs_to :diary_entry
28
29   scope :visible, -> { where(:visible => true) }
30
31   validates :body, :presence => true, :characters => true
32   validates :diary_entry, :user, :associated => true
33
34   after_save :spam_check
35
36   def body
37     RichText.new(self[:body_format], self[:body])
38   end
39
40   def notification_token(subscriber)
41     sha256 = Digest::SHA256.new
42     sha256 << Rails.application.key_generator.generate_key("openstreetmap/diary_comment")
43     sha256 << id.to_s
44     sha256 << subscriber.to_s
45     Base64.urlsafe_encode64(sha256.digest)[0, 8]
46   end
47
48   private
49
50   def spam_check
51     user.spam_check
52   end
53 end