]> git.openstreetmap.org Git - rails.git/blob - app/models/diary_entry.rb
Create invalid_char validators and apply to models
[rails.git] / app / models / diary_entry.rb
1 # == Schema Information
2 #
3 # Table name: diary_entries
4 #
5 #  id            :bigint(8)        not null, primary key
6 #  user_id       :bigint(8)        not null
7 #  title         :string           not null
8 #  body          :text             not null
9 #  created_at    :datetime         not null
10 #  updated_at    :datetime         not null
11 #  latitude      :float
12 #  longitude     :float
13 #  language_code :string           default("en"), not null
14 #  visible       :boolean          default(TRUE), not null
15 #  body_format   :enum             default("markdown"), not null
16 #
17 # Indexes
18 #
19 #  diary_entry_created_at_index                (created_at)
20 #  diary_entry_language_code_created_at_index  (language_code,created_at)
21 #  diary_entry_user_id_created_at_index        (user_id,created_at)
22 #
23 # Foreign Keys
24 #
25 #  diary_entries_language_code_fkey  (language_code => languages.code)
26 #  diary_entries_user_id_fkey        (user_id => users.id)
27 #
28
29 class DiaryEntry < ActiveRecord::Base
30   belongs_to :user, :counter_cache => true
31   belongs_to :language, :foreign_key => "language_code"
32
33   has_many :comments, -> { order(:id).preload(:user) }, :class_name => "DiaryComment"
34   has_many :visible_comments, -> { joins(:user).where(:visible => true, :users => { :status => %w[active confirmed] }).order(:id) }, :class_name => "DiaryComment"
35   has_many :subscriptions, :class_name => "DiaryEntrySubscription"
36   has_many :subscribers, :through => :subscriptions, :source => :user
37
38   scope :visible, -> { where(:visible => true) }
39
40   validates :title, :body, :presence => true, :invalid_chars => true
41   validates :title, :length => 1..255
42   validates :latitude, :allow_nil => true,
43                        :numericality => { :greater_than_or_equal_to => -90,
44                                           :less_than_or_equal_to => 90 }
45   validates :longitude, :allow_nil => true,
46                         :numericality => { :greater_than_or_equal_to => -180,
47                                            :less_than_or_equal_to => 180 }
48   validates :language, :user, :associated => true
49
50   after_save :spam_check
51
52   def body
53     RichText.new(self[:body_format], self[:body])
54   end
55
56   private
57
58   def spam_check
59     user.spam_check
60   end
61 end