agenda-libre-ruby/app/models/event.rb

60 lines
1.8 KiB
Ruby

# TODO migrate moderated column to a SQL bool type
# TODO migrate locality column to a SQL bool type
class Event < ActiveRecord::Base
extend SimpleCalendar
belongs_to :related_region, foreign_key: 'region', class_name: Region
has_many :notes, dependent: :destroy
has_one :related_city, foreign_key: :name, primary_key: :city, class_name: City
validates_presence_of :title, :description, :city, :related_region, :url, :contact
validates_format_of :url, with: /\Ahttps?:\/\/.*\z/
validates :contact, email: true
validates :submitter, email: true
scope :all_moderated, -> { where moderated: 1 }
scope :past, -> { where('end_time < now()').order(start_time: :desc) }
scope :future, -> { where('end_time >= now()').order(start_time: :asc) }
scope :future_30, -> {
where('start_time >= now() and end_time <= ?', Date.today + 30)
.order :start_time
}
scope :year, -> year {
where '? <= end_time and start_time <= ?',
Date.new(year, 1, 1).beginning_of_week, Date.new(year, 12, 31).end_of_week
}
scope :month, -> start_date {
where '? <= end_time and start_time <= ?',
start_date.beginning_of_week,
start_date.next_month.end_of_week
}
scope :region, -> region { where 'region = ? or locality = 1', region }
scope :tag, -> tag { where 'tags like ?', "%#{tag}%" }
before_validation on: :create do
self.submission_time = Date.today
self.decision_time = Date.today
if self.submitter.empty?
self.submitter = self.contact
end
end
before_create do
self.secret = SecureRandom.urlsafe_base64(32)[0...32]
self.moderator_mail_id = SecureRandom.urlsafe_base64(32)[0...32]
self.submitter_mail_id = SecureRandom.urlsafe_base64(32)[0...32]
end
def same_day?
start_time.to_date == end_time.to_date
end
def is_moderated?
moderated == 1
end
end