debian-mirror-gitlab/app/models/project_services/data_fields.rb

60 lines
1.6 KiB
Ruby
Raw Normal View History

2019-09-04 21:01:54 +05:30
# frozen_string_literal: true
module DataFields
extend ActiveSupport::Concern
2019-12-04 20:38:33 +05:30
class_methods do
# Provide convenient accessor methods for data fields.
2019-12-21 20:55:43 +05:30
# TODO: Simplify as part of https://gitlab.com/gitlab-org/gitlab/issues/29404
2019-12-04 20:38:33 +05:30
def data_field(*args)
args.each do |arg|
self.class_eval <<-RUBY, __FILE__, __LINE__ + 1
unless method_defined?(arg)
def #{arg}
data_fields.send('#{arg}') || (properties && properties['#{arg}'])
end
end
def #{arg}=(value)
@old_data_fields ||= {}
@old_data_fields['#{arg}'] ||= #{arg} # set only on the first assignment, IOW we remember the original value only
data_fields.send('#{arg}=', value)
end
def #{arg}_touched?
@old_data_fields ||= {}
@old_data_fields.has_key?('#{arg}')
end
def #{arg}_changed?
#{arg}_touched? && @old_data_fields['#{arg}'] != #{arg}
end
def #{arg}_was
return unless #{arg}_touched?
return if data_fields.persisted? # arg_was does not work for attr_encrypted
legacy_properties_data['#{arg}']
end
RUBY
end
end
end
2019-09-04 21:01:54 +05:30
included do
2019-12-04 20:38:33 +05:30
has_one :issue_tracker_data, autosave: true
has_one :jira_tracker_data, autosave: true
2020-04-22 19:07:51 +05:30
has_one :open_project_tracker_data, autosave: true
2019-12-04 20:38:33 +05:30
def data_fields
raise NotImplementedError
end
def data_fields_present?
2019-12-26 22:10:19 +05:30
data_fields.present?
2019-12-04 20:38:33 +05:30
rescue NotImplementedError
false
end
2019-09-04 21:01:54 +05:30
end
end