# encoding: UTF-8 # # Copyright (c) 2010-2015 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 '../metadata' require_relative 'metadata' module GoodData class Variable < MdObject class << self # Method intended to get all objects of that type in a specified project # # @param options [Hash] the options hash # @option options [Boolean] :full if passed true the subclass can decide to pull in full objects. This is desirable from the usability POV but unfortunately has negative impact on performance so it is not the default # @return [Array | Array] Return the appropriate metadata objects or their representation def all(options = { :client => GoodData.connection, :project => GoodData.project }) query('prompt', Variable, options) end def create(data, options = { :client => GoodData.connection, :project => GoodData.project }) title = data[:title] project = options[:project] c = client(options) attribute = project.attributes(data[:attribute]) payload = { 'prompt' => { 'content' => { 'attribute' => attribute.uri, 'type' => 'filter' }, 'meta' => { 'tags' => '', 'deprecated' => '0', 'summary' => '', 'title' => title, 'category' => 'prompt' } } } c.create(self, payload, project: project) end end # Retrieves variable values # # @return [Array] Values of variable def values payload = { variablesSearch: { variables: [ uri ], context: [] } } client.post("/gdc/md/#{project.pid}/variables/search", payload)['variables'].map { |f| client.create(GoodData::VariableUserFilter, f, project: project) } end # Retrieves variable values and returns only those related to user # # @return [Array] Values of variable related to user def user_values values.select { |x| x.level == :user } end # Method used for replacing values in their state according to mapping. Can be used to replace any values but it is typically used to replace the URIs. Returns a new object of the same type. # # @param [Array]Mapping specifying what should be exchanged for what. As mapping should be used output of GoodData::Helpers.prepare_mapping. # @return [GoodData::Variable] def replace(mapping) GoodData::MdObject.replace_quoted(self, mapping) end # Retrieves variable values and returns only those related to project # # @return [Array] Values of variable related to project def project_values values.select { |x| x.level == :project } end # Deletes all the values and eventually the variable itself def delete values.pmap(&:delete) super end end end