Sha256: 2b03597469e6954ba1aa19925b090260e8967de57b2f0c60b01e7a1754b9f678

Contents?: true

Size: 1.75 KB

Versions: 7

Compression:

Stored size: 1.75 KB

Contents

# encoding: UTF-8
#
# Copyright (c) 2010-2017 GoodData Corporation. All rights reserved.
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.

require_relative 'base_action'

module GoodData
  module LCM2
    class SynchronizeNewSegments < BaseAction
      DESCRIPTION = 'Synchronize New Segments'

      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 'Segments to manage'
        param :segments, array_of(instance_of(Type::SegmentType)), required: true
      end

      class << self
        def call(params)
          client = params.gdc_gd_client

          domain_name = params.organization || params.domain
          domain = client.domain(domain_name) || fail("Invalid domain name specified - #{domain_name}")
          data_product = params.data_product
          domain_segments = domain.segments(:all, data_product)

          params.segments.pmap do |segment_in|
            segment_id = segment_in.segment_id

            segment = domain_segments.find do |ds|
              ds.segment_id == segment_id
            end

            if segment_in.is_new
              segment.synchronize_clients

              {
                segment: segment_id,
                new: true,
                synchronized: true
              }
            else
              {
                segment: segment_id,
                new: false,
                synchronized: false
              }
            end
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
gooddata-1.0.2-java lib/gooddata/lcm/actions/synchronize_new_segments.rb
gooddata-1.0.2 lib/gooddata/lcm/actions/synchronize_new_segments.rb
gooddata-1.0.1 lib/gooddata/lcm/actions/synchronize_new_segments.rb
gooddata-1.0.1-java lib/gooddata/lcm/actions/synchronize_new_segments.rb
gooddata-1.0.0-java lib/gooddata/lcm/actions/synchronize_new_segments.rb
gooddata-1.0.0 lib/gooddata/lcm/actions/synchronize_new_segments.rb
gooddata-0.6.54 lib/gooddata/lcm/actions/synchronize_new_segments.rb