Class: GoodData::LCM2::CollectSegmentClients
- Inherits:
-
BaseAction
- Object
- BaseAction
- GoodData::LCM2::CollectSegmentClients
- Defined in:
- lib/gooddata/lcm/actions/collect_segment_clients.rb
Constant Summary collapse
- DESCRIPTION =
'Collect Clients'- PARAMS =
define_params(self) do description 'Client Used for Connecting to GD' param :gdc_gd_client, instance_of(Type::GdClientType), required: true description 'Organization Name' param :organization, instance_of(Type::StringType), required: true description 'ADS Client' param :ads_client, instance_of(Type::AdsClientType), required: true end
- RESULT_HEADER =
[ :from_name, :from_pid, :to_name, :to_pid ]
- DEFAULT_TABLE_NAME =
'LCM_RELEASE'
Constants included from Dsl::Dsl
Dsl::Dsl::DEFAULT_OPTS, Dsl::Dsl::TYPES
Class Method Summary collapse
Methods inherited from BaseAction
Methods included from Dsl::Dsl
#define_params, #define_type, #process
Class Method Details
.call(params) ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 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 |
# File 'lib/gooddata/lcm/actions/collect_segment_clients.rb', line 35 def call(params) # Check if all required parameters were passed BaseAction.check_params(PARAMS, params) client = params.gdc_gd_client domain_name = params.organization || params.domain domain = client.domain(domain_name) || fail("Invalid domain name specified - #{domain_name}") domain_segments = domain.segments segments = params.segments.map do |seg| domain_segments.find do |s| s.segment_id == seg.segment_id end end results = [] synchronize_clients = segments.map do |segment| replacements = { table_name: params.release_table_name || DEFAULT_TABLE_NAME, segment_id: segment.segment_id } path = File.('../../data/select_from_lcm_release.sql.erb', __FILE__) query = GoodData::Helpers::ErbHelper.template_file(path, replacements) res = params.ads_client.execute_select(query) # TODO: Check res.first.nil? || res.first[:master_project_id].nil? master = client.projects(res.first[:master_project_id]) master_pid = master.pid master_name = master.title sync_info = { segment_id: segment.segment_id, from: master_pid, to: segment.clients.map do |segment_client| client_project = segment_client.project to_pid = client_project.pid results << { from_name: master_name, from_pid: master_pid, to_name: client_project.title, to_pid: to_pid } { pid: to_pid, client_id: segment_client.client_id } end } sync_info end results.flatten! # Return results { results: results, params: { synchronize: synchronize_clients } } end |