debian-mirror-gitlab/app/models/broadcast_message.rb

109 lines
2.6 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
class BroadcastMessage < ActiveRecord::Base
2016-11-03 12:29:30 +05:30
include CacheMarkdownField
2015-04-26 12:48:37 +05:30
include Sortable
2016-11-03 12:29:30 +05:30
cache_markdown_field :message, pipeline: :broadcast_message
2015-12-23 02:04:40 +05:30
validates :message, presence: true
2014-09-02 18:07:02 +05:30
validates :starts_at, presence: true
2015-12-23 02:04:40 +05:30
validates :ends_at, presence: true
2014-09-02 18:07:02 +05:30
2015-12-23 02:04:40 +05:30
validates :color, allow_blank: true, color: true
validates :font, allow_blank: true, color: true
2014-09-02 18:07:02 +05:30
default_value_for :color, '#E75E40'
default_value_for :font, '#FFFFFF'
2018-12-23 12:14:25 +05:30
CACHE_KEY = 'broadcast_message_current_json'.freeze
LEGACY_CACHE_KEY = 'broadcast_message_current'.freeze
2017-09-10 17:25:29 +05:30
after_commit :flush_redis_cache
2014-09-02 18:07:02 +05:30
def self.current
2018-12-23 12:14:25 +05:30
raw_messages = Rails.cache.fetch(CACHE_KEY, expires_in: cache_expires_in) do
remove_legacy_cache_key
current_and_future_messages.to_json
end
2017-09-10 17:25:29 +05:30
2018-12-23 12:14:25 +05:30
messages = decode_messages(raw_messages)
return [] unless messages&.present?
2017-09-10 17:25:29 +05:30
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.
Rails.cache.delete(CACHE_KEY) if now_or_future.empty?
now_or_future.select(&:now?)
end
2018-12-23 12:14:25 +05:30
def self.decode_messages(raw_messages)
return unless raw_messages&.present?
message_list = ActiveSupport::JSON.decode(raw_messages)
return unless message_list.is_a?(Array)
valid_attr = BroadcastMessage.attribute_names
message_list.map do |raw|
BroadcastMessage.new(raw) if valid_cache_entry?(raw, valid_attr)
end.compact
rescue ActiveSupport::JSON.parse_error
end
def self.valid_cache_entry?(raw, valid_attr)
return false unless raw.is_a?(Hash)
(raw.keys - valid_attr).empty?
end
2017-09-10 17:25:29 +05:30
def self.current_and_future_messages
2018-03-17 18:26:18 +05:30
where('ends_at > :now', now: Time.zone.now).order_id_asc
end
2018-10-15 14:42:47 +05:30
def self.cache_expires_in
nil
end
2018-12-23 12:14:25 +05:30
# This can be removed in GitLab 12.0+
# The old cache key had an indefinite lifetime, and in an HA
# environment a one-shot migration would not work because the cache
# would be repopulated by a node that has not been upgraded.
def self.remove_legacy_cache_key
Rails.cache.delete(LEGACY_CACHE_KEY)
end
def active?
started? && !ended?
end
def started?
Time.zone.now >= starts_at
end
def ended?
ends_at < Time.zone.now
2014-09-02 18:07:02 +05:30
end
2017-09-10 17:25:29 +05:30
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
def flush_redis_cache
Rails.cache.delete(CACHE_KEY)
2018-12-23 12:14:25 +05:30
self.class.remove_legacy_cache_key
2017-09-10 17:25:29 +05:30
end
2014-09-02 18:07:02 +05:30
end