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

120 lines
3.7 KiB
Ruby
Raw Normal View History

require 'schedule'
# This is the central ADL class, where are managed all events
class Event < ApplicationRecord
extend SimpleCalendar
include Schedule
acts_as_taggable
strip_attributes
has_paper_trail ignore: %i[last_updated lock_version secret submitter
decision_time latitude longitude]
belongs_to :region
2017-10-21 22:12:19 +02:00
# This is the eventual scheduled first event
belongs_to :event, optional: true
has_many :notes, dependent: :destroy
has_many :events, dependent: :destroy
2013-12-28 23:45:13 +01:00
validates :title, presence: true
validate :end_after_start
RULES = %w[daily weekly monthly monthly_day].freeze
2018-01-01 17:52:33 +01:00
validates :rule, inclusion: RULES, allow_nil: true
validates :description, presence: true
validates :city, presence: true
validates :region, presence: true
2017-04-22 11:35:37 +02:00
validates :url, allow_nil: true, format: %r{\Ahttps?:\/\/.*\..*\z}
validates :contact, email: true, allow_nil: true
validates :submitter, email: true, presence: true
geocoded_by :full_address
after_validation :geocode, if: (lambda do |obj|
obj.address_changed? || obj.city_changed?
end)
2014-08-23 16:59:42 +02:00
2015-11-10 23:29:05 +01:00
# Mechanism to store some reason which can be used when sending notifications
attr_accessor :reason
before_create EventCallbacks
after_create EventCallbacks
before_update EventCallbacks
after_update EventCallbacks
after_destroy EventCallbacks
2015-12-08 00:43:26 +01:00
scope :moderated, ->(*) { where moderated: true }
scope :unmoderated, ->(*) { where moderated: false }
2014-09-05 22:15:38 +02:00
scope :last_year, -> { where '? <= end_time', 1.year.ago }
scope :past, -> { where 'start_time <= ?', Time.zone.now }
scope :future, -> { where '? <= end_time', Time.zone.now }
2017-05-29 22:18:04 +02:00
scope :daylimit, ->(nb) { where 'end_time <= ?', nb.to_i.days.from_now }
scope :year, (lambda do |year|
where '? <= end_time and start_time <= ?',
2015-11-10 23:29:05 +01:00
Date.new(year.to_i, 1, 1).beginning_of_week,
Date.new(year.to_i, 12, 31).end_of_week.end_of_day
end)
scope :month, (lambda do |start_date|
where '? <= end_time and start_time <= ?',
2015-11-10 23:29:05 +01:00
start_date.to_date.beginning_of_month.beginning_of_week,
start_date.to_date.end_of_month.end_of_week.end_of_day
end)
2015-11-10 23:29:05 +01:00
scope :period, (lambda do |year, week|
start_date = Date.commercial(year.to_i, week.to_i)
2015-11-10 23:29:05 +01:00
where '? <= end_time and start_time <= ?',
start_date, start_date.end_of_week.end_of_day
end)
scope :region, (lambda do |region|
return if region.nil? || region == 'all' || region.to_i.zero?
temp = Region.find region
where region: [temp, temp.regions].flatten
end)
scope :locality, ->(locality) { where locality: locality }
scope :tag, ->(tag) { tagged_with tag }
scope :geo, -> { where 'latitude is not null and longitude is not null' }
2013-12-29 23:25:38 +01:00
before_validation on: :create do
self.submission_time = Time.zone.now
self.decision_time = Time.zone.now
2014-05-31 23:13:43 +02:00
# Populate submitter using contact info if absent
2017-05-29 22:18:04 +02:00
self.submitter ||= contact
end
before_validation on: :update do
self.latitude = nil if address_changed?
self.longitude = nil if address_changed?
end
2014-08-23 16:59:42 +02:00
def full_address
[address, city, region, region.try(:region)].compact.join ', '
2014-08-23 16:59:42 +02:00
end
def hashtags
tag_list.map { |tag| "##{tag.tr('-', '_').camelize :lower}" }
end
def to_s
"#{start_time.to_date} #{city}: #{title} #{hashtags.join(' ')}"
end
def to_tweet
url = Rails.application.routes.url_helpers.event_url(
self,
host: ActionMailer::Base.default_url_options[:host]
)
tweet = "#{self} #{url}"
2016-02-13 17:24:23 +01:00
if tweet.size >= 140
tweet = "#{tweet[0, tweet.rindex(/\s/, 140 - url.size)]} #{url}"
end
tweet
end
private
def end_after_start
errors.add :end_time, :before_start if
end_time.present? && start_time.present? && end_time <= start_time
end
2013-12-28 23:45:13 +01:00
end