2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-28 09:17:42 -04:00
|
|
|
class BroadcastMessage < ApplicationRecord
|
2016-10-06 17:17:11 -04:00
|
|
|
include CacheMarkdownField
|
2015-02-05 17:20:55 -05:00
|
|
|
include Sortable
|
|
|
|
|
2019-03-20 16:01:27 -04:00
|
|
|
cache_markdown_field :message, pipeline: :broadcast_message, whitelisted: true
|
2016-10-06 17:17:11 -04:00
|
|
|
|
2015-12-01 18:53:44 -05:00
|
|
|
validates :message, presence: true
|
2013-11-12 07:28:12 -05:00
|
|
|
validates :starts_at, presence: true
|
2015-12-01 18:53:44 -05:00
|
|
|
validates :ends_at, presence: true
|
2013-11-12 08:08:20 -05:00
|
|
|
|
2015-12-01 18:53:44 -05:00
|
|
|
validates :color, allow_blank: true, color: true
|
|
|
|
validates :font, allow_blank: true, color: true
|
2013-12-19 13:11:01 -05:00
|
|
|
|
2015-12-31 17:07:11 -05:00
|
|
|
default_value_for :color, '#E75E40'
|
|
|
|
default_value_for :font, '#FFFFFF'
|
|
|
|
|
2018-12-07 14:16:45 -05:00
|
|
|
CACHE_KEY = 'broadcast_message_current_json'.freeze
|
2017-08-09 09:49:30 -04:00
|
|
|
|
|
|
|
after_commit :flush_redis_cache
|
|
|
|
|
2013-11-12 08:08:20 -05:00
|
|
|
def self.current
|
2018-12-19 11:33:16 -05:00
|
|
|
messages = cache.fetch(CACHE_KEY, as: BroadcastMessage, expires_in: cache_expires_in) do
|
|
|
|
current_and_future_messages
|
2018-12-07 14:16:45 -05:00
|
|
|
end
|
2017-08-18 08:52:11 -04:00
|
|
|
|
2018-12-07 14:16:45 -05:00
|
|
|
return [] unless messages&.present?
|
2017-08-18 08:52:11 -04:00
|
|
|
|
|
|
|
now_or_future = messages.select(&:now_or_future?)
|
|
|
|
|
|
|
|
# If there are cached entries but none are to be displayed we'll purge the
|
|
|
|
# cache so we don't keep running this code all the time.
|
2018-12-19 11:33:16 -05:00
|
|
|
cache.expire(CACHE_KEY) if now_or_future.empty?
|
2017-08-18 08:52:11 -04:00
|
|
|
|
|
|
|
now_or_future.select(&:now?)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.current_and_future_messages
|
2017-08-15 06:27:37 -04:00
|
|
|
where('ends_at > :now', now: Time.zone.now).order_id_asc
|
2015-12-31 17:07:11 -05:00
|
|
|
end
|
|
|
|
|
2018-12-19 11:33:16 -05:00
|
|
|
def self.cache
|
|
|
|
Gitlab::JsonCache.new(cache_key_with_version: false)
|
|
|
|
end
|
|
|
|
|
2018-04-11 13:49:56 -04:00
|
|
|
def self.cache_expires_in
|
2019-06-25 18:41:05 -04:00
|
|
|
2.weeks
|
2018-04-11 13:49:56 -04:00
|
|
|
end
|
|
|
|
|
2015-12-31 17:07:11 -05:00
|
|
|
def active?
|
|
|
|
started? && !ended?
|
|
|
|
end
|
|
|
|
|
|
|
|
def started?
|
|
|
|
Time.zone.now >= starts_at
|
|
|
|
end
|
|
|
|
|
|
|
|
def ended?
|
|
|
|
ends_at < Time.zone.now
|
|
|
|
end
|
2017-08-09 09:49:30 -04:00
|
|
|
|
2017-08-18 08:52:11 -04:00
|
|
|
def now?
|
|
|
|
(starts_at..ends_at).cover?(Time.zone.now)
|
|
|
|
end
|
|
|
|
|
|
|
|
def future?
|
|
|
|
starts_at > Time.zone.now
|
|
|
|
end
|
|
|
|
|
|
|
|
def now_or_future?
|
|
|
|
now? || future?
|
|
|
|
end
|
|
|
|
|
2017-08-09 09:49:30 -04:00
|
|
|
def flush_redis_cache
|
2018-12-19 11:33:16 -05:00
|
|
|
self.class.cache.expire(CACHE_KEY)
|
2017-08-09 09:49:30 -04:00
|
|
|
end
|
2013-11-12 06:47:28 -05:00
|
|
|
end
|