2016-04-14 10:57:25 -04:00
|
|
|
module Gitlab
|
2016-04-06 12:12:41 -04:00
|
|
|
module ImportExport
|
2016-06-13 15:18:26 -04:00
|
|
|
class Reader
|
2016-05-11 11:22:45 -04:00
|
|
|
attr_reader :tree
|
|
|
|
|
2016-06-13 03:37:58 -04:00
|
|
|
def initialize(shared:)
|
2016-05-10 11:15:20 -04:00
|
|
|
@shared = shared
|
2016-06-13 04:55:54 -04:00
|
|
|
config_hash = YAML.load_file(Gitlab::ImportExport.config_file).deep_symbolize_keys
|
2016-05-09 05:10:12 -04:00
|
|
|
@tree = config_hash[:project_tree]
|
2016-06-13 03:37:58 -04:00
|
|
|
@attributes_finder = Gitlab::ImportExport::AttributesFinder.new(included_attributes: config_hash[:included_attributes],
|
2016-05-18 11:48:15 -04:00
|
|
|
excluded_attributes: config_hash[:excluded_attributes],
|
|
|
|
methods: config_hash[:methods])
|
2016-04-06 12:12:41 -04:00
|
|
|
end
|
|
|
|
|
2016-06-13 06:32:15 -04:00
|
|
|
# Outputs a hash in the format described here: http://api.rubyonrails.org/classes/ActiveModel/Serializers/JSON.html
|
|
|
|
# for outputting a project in JSON format, including its relations and sub relations.
|
2016-05-06 11:55:06 -04:00
|
|
|
def project_tree
|
2017-05-03 06:12:32 -04:00
|
|
|
attributes = @attributes_finder.find(:project)
|
|
|
|
project_attributes = attributes.is_a?(Hash) ? attributes[:project] : {}
|
|
|
|
|
|
|
|
project_attributes.merge(include: build_hash(@tree))
|
2016-05-10 11:15:20 -04:00
|
|
|
rescue => e
|
2016-05-13 06:33:13 -04:00
|
|
|
@shared.error(e)
|
2016-05-16 04:13:00 -04:00
|
|
|
false
|
2016-04-12 09:32:25 -04:00
|
|
|
end
|
|
|
|
|
2017-02-01 06:09:02 -05:00
|
|
|
def group_members_tree
|
|
|
|
@attributes_finder.find_included(:project_members).merge(include: @attributes_finder.find(:user))
|
|
|
|
end
|
|
|
|
|
2016-04-07 07:19:57 -04:00
|
|
|
private
|
|
|
|
|
2016-06-13 06:32:15 -04:00
|
|
|
# Builds a hash in the format described here: http://api.rubyonrails.org/classes/ActiveModel/Serializers/JSON.html
|
|
|
|
#
|
|
|
|
# +model_list+ - List of models as a relation tree to be included in the generated JSON, from the _import_export.yml_ file
|
2016-05-06 11:55:06 -04:00
|
|
|
def build_hash(model_list)
|
2016-05-09 12:40:31 -04:00
|
|
|
model_list.map do |model_objects|
|
|
|
|
if model_objects.is_a?(Hash)
|
2016-07-22 06:10:45 -04:00
|
|
|
Gitlab::ImportExport::JsonHashBuilder.build(model_objects, @attributes_finder)
|
2016-04-07 12:14:42 -04:00
|
|
|
else
|
2016-06-13 03:37:58 -04:00
|
|
|
@attributes_finder.find(model_objects)
|
2016-04-07 12:14:42 -04:00
|
|
|
end
|
|
|
|
end
|
2016-04-06 12:12:41 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-04-08 09:07:12 -04:00
|
|
|
end
|