2018-08-03 13:22:24 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-05-04 13:23:08 -04:00
|
|
|
module CacheableAttributes
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
after_commit { self.class.expire }
|
|
|
|
end
|
|
|
|
|
|
|
|
class_methods do
|
2018-05-29 11:49:52 -04:00
|
|
|
def cache_key
|
2018-07-05 06:33:42 -04:00
|
|
|
"#{name}:#{Gitlab::VERSION}:#{Rails.version}".freeze
|
2018-05-29 11:49:52 -04:00
|
|
|
end
|
|
|
|
|
2018-10-30 06:53:01 -04:00
|
|
|
# Can be overridden
|
2018-05-04 13:23:08 -04:00
|
|
|
def current_without_cache
|
|
|
|
last
|
|
|
|
end
|
|
|
|
|
2018-10-30 06:53:01 -04:00
|
|
|
# Can be overridden
|
2018-05-04 13:23:08 -04:00
|
|
|
def defaults
|
|
|
|
{}
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_from_defaults(attributes = {})
|
|
|
|
new(defaults.merge(attributes))
|
|
|
|
end
|
|
|
|
|
|
|
|
def cached
|
2018-09-20 15:32:54 -04:00
|
|
|
Gitlab::SafeRequestStore[:"#{name}_cached_attributes"] ||= retrieve_from_cache
|
2018-05-29 11:49:52 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def retrieve_from_cache
|
|
|
|
record = Rails.cache.read(cache_key)
|
|
|
|
ensure_cache_setup if record.present?
|
2018-05-04 13:23:08 -04:00
|
|
|
|
2018-05-29 11:49:52 -04:00
|
|
|
record
|
2018-05-04 13:23:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def current
|
|
|
|
cached_record = cached
|
|
|
|
return cached_record if cached_record.present?
|
|
|
|
|
|
|
|
current_without_cache.tap { |current_record| current_record&.cache! }
|
2018-05-29 11:49:52 -04:00
|
|
|
rescue => e
|
|
|
|
if Rails.env.production?
|
|
|
|
Rails.logger.warn("Cached record for #{name} couldn't be loaded, falling back to uncached record: #{e}")
|
|
|
|
else
|
|
|
|
raise e
|
|
|
|
end
|
2018-05-04 13:23:08 -04:00
|
|
|
# Fall back to an uncached value if there are any problems (e.g. Redis down)
|
|
|
|
current_without_cache
|
|
|
|
end
|
|
|
|
|
|
|
|
def expire
|
|
|
|
Rails.cache.delete(cache_key)
|
|
|
|
rescue
|
|
|
|
# Gracefully handle when Redis is not available. For example,
|
|
|
|
# omnibus may fail here during gitlab:assets:compile.
|
|
|
|
end
|
2018-05-29 11:49:52 -04:00
|
|
|
|
|
|
|
def ensure_cache_setup
|
|
|
|
# This is a workaround for a Rails bug that causes attribute methods not
|
|
|
|
# to be loaded when read from cache: https://github.com/rails/rails/issues/27348
|
|
|
|
define_attribute_methods
|
|
|
|
end
|
2018-05-04 13:23:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def cache!
|
2018-07-05 06:33:42 -04:00
|
|
|
Rails.cache.write(self.class.cache_key, self, expires_in: 1.minute)
|
2018-05-04 13:23:08 -04:00
|
|
|
end
|
|
|
|
end
|