Class: GoodData::LCM2::CollectLdmObjects

Inherits:
BaseAction show all
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 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



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