Class: GoodData::LCM2::SynchronizeETLsInSegment

Inherits:
BaseAction show all
Defined in:
lib/gooddata/lcm/actions/synchronize_etls_in_segment.rb

Constant Summary collapse

DESCRIPTION =
'Synchronize ETLs (CC/Ruby) In Segment'
PARAMS =
define_params(self) do
  description 'Client Used for Connecting to GD'
  param :gdc_gd_client, instance_of(Type::GdClientType), required: true

  description 'Synchronization Info'
  param :synchronize, array_of(instance_of(Type::SynchronizationInfoType)), required: true, generated: true

  description 'Schedule Additional Parameters'
  param :additional_params, instance_of(Type::HashType), required: false, deprecated: true, replacement: :schedule_additional_params

  description 'Schedule Additional Secure Parameters'
  param :additional_hidden_params, instance_of(Type::HashType), required: false, deprecated: true, replacement: :schedule_additional_hidden_params

  description 'Schedule Additional Parameters'
  param :schedule_additional_params, instance_of(Type::HashType), required: false

  description 'Schedule Additional Secure Parameters'
  param :schedule_additional_hidden_params, instance_of(Type::HashType), required: false

  description 'Schedule Parameters'
  param :schedule_params, instance_of(Type::HashType), required: false, default: {}

  description 'Schedule Hidden Parameters'
  param :schedule_hidden_params, instance_of(Type::HashType), required: false, default: {}

  description 'DataProduct to manage'
  param :data_product, instance_of(Type::GDDataProductType), required: false

  description 'Logger'
  param :gdc_logger, instance_of(Type::GdLogger), required: true

  description 'Delete extra process schedule flag'
  param :delete_extra_process_schedule, instance_of(Type::BooleanType), required: false, default: true
end
RESULT_HEADER =

will be updated later based on the way etl synchronization

[
  :segment,
  :master_project,
  :client_id,
  :client_project,
  :status
]

Constants included from Dsl::Dsl

Dsl::Dsl::DEFAULT_OPTS, Dsl::Dsl::TYPES

Class Method Summary collapse

Methods inherited from BaseAction

check_params, without_check

Methods included from Dsl::Dsl

#define_params, #define_type, #process

Class Method Details

.call(params) ⇒ Object



59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# File 'lib/gooddata/lcm/actions/synchronize_etls_in_segment.rb', line 59

def call(params)
  client = params.gdc_gd_client
  data_product = params.data_product

  schedule_additional_params = params.schedule_additional_params || params.additional_params
  schedule_additional_hidden_params = params.schedule_additional_hidden_params || params.additional_hidden_params

  synchronize_segments = params.synchronize.group_by do |info|
    info[:segment_id]
  end

  results = synchronize_segments.pmap do |segment_id, synchronize|
    segment = data_product.segments.find { |s| s.segment_id == segment_id }
    res = segment.synchronize_processes(
      synchronize.flat_map do |info|
        info[:to].flat_map do |to|
          to[:pid]
        end
      end
    )

    res = GoodData::Helpers.symbolize_keys(res)

    if res[:syncedResult][:errors]
      fail "Failed to sync processes/schedules for segment #{segment_id}. Error: #{res[:syncedResult][:errors].pretty_inspect}"
    end

    if res[:syncedResult][:clients]
      res[:syncedResult][:clients].flat_map do |item|
        item = item[:client]
        {
          segment: segment_id,
          master_project: segment.master_project_id,
          client_id: item[:id],
          client_project: item[:project].split('/').last,
          status: 'ok'
        }
      end
    else
      []
    end
  end

  delete_extra_process_schedule = GoodData::Helpers.to_boolean(params.delete_extra_process_schedule)

  schedule_params = params.schedule_params || {}
  schedule_hidden_params = params.schedule_hidden_params || {}

  params_for_all_projects = schedule_params[:all_clients] || {}
  params_for_all_schedules_in_all_projects = params_for_all_projects[:all_schedules]

  hidden_params_for_all_projects = schedule_hidden_params[:all_clients] || {}
  hidden_params_for_all_schedules_in_all_projects = hidden_params_for_all_projects[:all_schedules]

  params.synchronize.peach do |info|
    from_project_etl_names = get_process_n_schedule_names(client, info.from) if delete_extra_process_schedule

    to_projects = info.to
    to_projects.peach do |entry|
      pid = entry[:pid]
      to_project = client.projects(pid) || fail("Invalid 'to' project specified - '#{pid}'")

      if delete_extra_process_schedule
        to_project_process_id_names = {}
        to_project.processes.each do |process|
          if from_project_etl_names[:processes].include?(process.name)
            to_project_process_id_names[process.process_id] = process.name
          else
            process.delete
          end
        end
      end

      client_id = entry[:client_id]

      params_for_this_client = schedule_params[client_id] || {}
      params_for_all_schedules_in_this_client = params_for_this_client[:all_schedules]

      hidden_params_for_this_client = schedule_hidden_params[client_id] || {}
      hidden_params_for_all_schedules_in_this_client = hidden_params_for_this_client[:all_schedules]

      to_project.('GOODOT_CUSTOM_PROJECT_ID', client_id) # TMA-210

      to_project.schedules.each do |schedule|
        if delete_extra_process_schedule
          unless from_project_etl_names[:schedules].include?([schedule.name, to_project_process_id_names[schedule.process_id]])
            schedule.delete
            next
          end
        end

        schedule.update_params(schedule_additional_params) if schedule_additional_params
        schedule.update_params(params_for_all_schedules_in_all_projects) if params_for_all_schedules_in_all_projects
        schedule.update_params(params_for_all_projects[schedule.name]) if params_for_all_projects[schedule.name]
        schedule.update_params(params_for_all_schedules_in_this_client) if params_for_all_schedules_in_this_client
        schedule.update_params(params_for_this_client[schedule.name]) if params_for_this_client[schedule.name]

        schedule.update_hidden_params(schedule_additional_hidden_params) if schedule_additional_hidden_params
        schedule.update_hidden_params(hidden_params_for_all_schedules_in_all_projects) if hidden_params_for_all_schedules_in_all_projects
        schedule.update_hidden_params(hidden_params_for_all_projects[schedule.name]) if hidden_params_for_all_projects[schedule.name]
        schedule.update_hidden_params(hidden_params_for_all_schedules_in_this_client) if hidden_params_for_all_schedules_in_this_client
        schedule.update_hidden_params(hidden_params_for_this_client[schedule.name]) if hidden_params_for_this_client[schedule.name]

        schedule.enable
        schedule.save
      end
    end
  end

  results.flatten
end