Sha256: b9f3093ecd29053f0b09749e0cdb1dd1c0e83062d94d8a8003b67e27b636117f
Contents?: true
Size: 1.8 KB
Versions: 7
Compression:
Stored size: 1.8 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' require 'thread_safe' module GoodData module LCM2 class SynchronizeUserGroups < BaseAction DESCRIPTION = 'Synchronize User Groups' PARAMS = define_params(self) do description 'Client Used for Connecting to GD' param :gdc_gd_client, instance_of(Type::GdClientType), required: true description 'Development Client Used for Connecting to GD' 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 class << self def call(params) results = ThreadSafe::Array.new client = params.gdc_gd_client development_client = params.development_client params.synchronize.peach do |info| from_project = info.from to_projects = info.to from = development_client.projects(from_project) || fail("Invalid 'from' project specified - '#{from_project}'") to_projects.peach do |entry| pid = entry[:pid] to_project = client.projects(pid) || fail("Invalid 'to' project specified - '#{pid}'") params.gdc_logger.info "Transferring User Groups, from project: '#{from.title}', PID: '#{from.pid}', to project: '#{to_project.title}', PID: '#{to_project.pid}'" results += GoodData::Project.transfer_user_groups(from, to_project) end end results.uniq end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems