Sha256: cb6e2a02bc08119e36253dbc682356cf311c70d6ad23d8d8b77cc01d6db4ab6c

Contents?: true

Size: 1.49 KB

Versions: 2

Compression:

Stored size: 1.49 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 EnsureReleaseTable < BaseAction
      DESCRIPTION = 'Ensures presence of LCM_RELEASE table'

      PARAMS = define_params(self) do
        description 'ADS Client'
        param :ads_client, instance_of(Type::AdsClientType), required: true

        description 'Table Name'
        param :release_table_name, instance_of(Type::StringType), required: false
      end

      RESULT_HEADER = [
        :table_name,
        :status
      ]

      DEFAULT_TABLE_NAME = 'LCM_RELEASE'

      class << self
        def call(params)
          # Check if all required parameters were passed
          BaseAction.check_params(PARAMS, params)

          replacements = {
            table_name: params.release_table_name || DEFAULT_TABLE_NAME
          }

          path = File.expand_path('../../data/create_lcm_release.sql.erb', __FILE__)
          query = GoodData::Helpers::ErbHelper.template_file(path, replacements)

          sql_result = params.ads_client.execute(query)

          # TODO: Format
          GoodData.logger.info(JSON.pretty_generate(sql_result))

          [
            {
              table_name: replacements[:table_name],
              status: 'ok'
            }
          ]
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gooddata-0.6.51 lib/gooddata/lcm/actions/ensure_release_table.rb
gooddata-0.6.50 lib/gooddata/lcm/actions/ensure_release_table.rb