2018-08-03 13:22:24 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-29 09:37:37 -04:00
|
|
|
module ShaAttribute
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2018-08-27 08:35:31 -04:00
|
|
|
class_methods do
|
2017-06-29 09:37:37 -04:00
|
|
|
def sha_attribute(name)
|
2017-12-26 01:36:33 -05:00
|
|
|
return if ENV['STATIC_VERIFICATION']
|
2018-05-07 20:14:00 -04:00
|
|
|
|
2020-07-30 14:09:39 -04:00
|
|
|
validate_binary_column_exists!(name) if Rails.env.development?
|
2018-05-07 20:14:00 -04:00
|
|
|
|
|
|
|
attribute(name, Gitlab::Database::ShaAttribute.new)
|
|
|
|
end
|
|
|
|
|
|
|
|
# This only gets executed in non-production environments as an additional check to ensure
|
|
|
|
# the column is the correct type. In production it should behave like any other attribute.
|
2019-09-18 10:02:45 -04:00
|
|
|
# See https://gitlab.com/gitlab-org/gitlab/merge_requests/5502 for more discussion
|
2018-05-07 20:14:00 -04:00
|
|
|
def validate_binary_column_exists!(name)
|
2019-02-20 01:37:49 -05:00
|
|
|
return unless database_exists?
|
2020-07-30 14:09:39 -04:00
|
|
|
return unless table_exists?
|
2017-07-07 05:57:34 -04:00
|
|
|
|
2017-06-29 09:37:37 -04:00
|
|
|
column = columns.find { |c| c.name == name.to_s }
|
|
|
|
|
2020-07-30 14:09:39 -04:00
|
|
|
return unless column
|
2017-06-29 09:37:37 -04:00
|
|
|
|
2018-05-07 20:14:00 -04:00
|
|
|
unless column.type == :binary
|
|
|
|
raise ArgumentError.new("sha_attribute #{name.inspect} is invalid since the column type is not :binary")
|
|
|
|
end
|
|
|
|
rescue => error
|
|
|
|
Gitlab::AppLogger.error "ShaAttribute initialization: #{error.message}"
|
|
|
|
raise
|
2017-06-29 09:37:37 -04:00
|
|
|
end
|
2019-02-20 01:37:49 -05:00
|
|
|
|
|
|
|
def database_exists?
|
2020-01-10 07:07:47 -05:00
|
|
|
Gitlab::Database.exists?
|
2019-02-20 01:37:49 -05:00
|
|
|
end
|
2017-06-29 09:37:37 -04:00
|
|
|
end
|
|
|
|
end
|
2019-09-13 09:26:31 -04:00
|
|
|
|
|
|
|
ShaAttribute::ClassMethods.prepend_if_ee('EE::ShaAttribute')
|