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
|
2021-05-04 11:10:36 -04:00
|
|
|
raise ArgumentError, "sha_attribute #{name.inspect} is invalid since the column type is not :binary"
|
2018-05-07 20:14:00 -04:00
|
|
|
end
|
2021-04-26 08:09:44 -04:00
|
|
|
rescue StandardError => error
|
2018-05-07 20:14:00 -04:00
|
|
|
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?
|
2021-07-29 11:09:48 -04:00
|
|
|
Gitlab::Database.main.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
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
ShaAttribute::ClassMethods.prepend_mod_with('ShaAttribute')
|