Class: GoodData::LCM2::CollectLdmObjects
- Inherits:
-
BaseAction
- Object
- BaseAction
- GoodData::LCM2::CollectLdmObjects
- Defined in:
- lib/gooddata/lcm/actions/collect_ldm_objects.rb
Constant Summary collapse
- DESCRIPTION =
"Collect all objects in LDM: attributes (include CAs), facts, datasets"
- PARAMS =
define_params(self) do description 'Client used to connecting to development domain' param :development_client, instance_of(Type::GdClientType), required: true description 'Synchronization Info' param :synchronize, array_of(instance_of(Type::SynchronizationInfoType)), required: true, generated: true end
Constants inherited from BaseAction
BaseAction::FAILED_CLIENTS, BaseAction::FAILED_PROJECTS, BaseAction::FAILED_SEGMENTS, BaseAction::SYNC_FAILED_LIST
Constants included from Dsl::Dsl
Dsl::Dsl::DEFAULT_OPTS, Dsl::Dsl::TYPES
Class Method Summary collapse
Methods inherited from BaseAction
add_failed_client, add_failed_project, add_failed_segment, add_new_clients_to_project_client_mapping, check_params, collect_synced_status, continue_on_error, print_result, process_failed_project, process_failed_projects, sync_failed_client, sync_failed_project, sync_failed_segment, without_check
Methods included from Dsl::Dsl
#define_params, #define_type, #process
Class Method Details
.call(params) ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/gooddata/lcm/actions/collect_ldm_objects.rb', line 23 def call(params) results = [] development_client = params.development_client synchronize = params.synchronize.pmap do |info| from = info.from from_project = development_client.projects(from) || fail("Invalid 'from' project specified - '#{from}'") datasets = from_project.datasets.to_a # TMA-836 - reading objects from datasets includes deprecated ones attributes = datasets.map(&:attribute_uris).flatten facts = datasets.map(&:fact_uris).flatten objects = (from_project.labels.to_a + datasets).map(&:uri) + attributes + facts info[:transfer_uris] ||= [] info[:transfer_uris] += objects results += objects.map do |uri| { project: from, transfer_uri: uri } end info end { results: results, params: { synchronize: synchronize } } end |