Welcome to mirror list, hosted at ThFree Co, Russian Federation.

relation_factory.rb « sample « project « import_export « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e59174f9a31946d699c70fac5c4e75f20b15a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true

module Gitlab
  module ImportExport
    module Project
      module Sample
        class RelationFactory < Project::RelationFactory
          DATE_MODELS = %i[issues milestones].freeze

          def initialize(date_calculator:, **args)
            super(**args)

            @date_calculator = date_calculator
          end

          private

          def setup_models
            super

            # Override due date attributes in data hash for Sample Data templates
            # Dates are moved by taking the closest one to average and moving that (and rest around it) to the date of import
            override_date_attributes
          end

          def override_date_attributes
            return unless DATE_MODELS.include?(@relation_name)

            @relation_hash['start_date'] = calculate_by_closest_date(@relation_hash['start_date']&.to_time)
            @relation_hash['due_date'] = calculate_by_closest_date(@relation_hash['due_date']&.to_time)
          end

          def calculate_by_closest_date(date)
            return unless date

            @date_calculator.calculate_by_closest_date_to_average(date)
          end
        end
      end
    end
  end
end