Class: GoodData::LCM2::SynchronizeClients
- Inherits:
-
BaseAction
- Object
- BaseAction
- GoodData::LCM2::SynchronizeClients
- Defined in:
- lib/gooddata/lcm/actions/synchronize_clients.rb
Constant Summary collapse
- DESCRIPTION =
'Synchronize LCM 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 end
- RESULT_HEADER =
[ :segment, :successful_count, :failed_count, :master_name, :master_pid, # :details ]
- 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
34 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 |
# File 'lib/gooddata/lcm/actions/synchronize_clients.rb', line 34 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 = 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]) segment.master_project = master segment.save res = segment.synchronize_clients sync_result = res.json['synchronizationResult'] { segment: segment.id, master_pid: master.pid, master_name: master.title, successful_count: sync_result['successfulClients']['count'], failed_count: sync_result['failedClients']['count'], # details: sync_result['links']['details'] } end # Return results results end |