Class: GoodData::Model::ProjectBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/gooddata/models/blueprint/project_builder.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(title, options = {}) ⇒ ProjectBuilder

Returns a new instance of ProjectBuilder.



29
30
31
32
33
34
35
# File 'lib/gooddata/models/blueprint/project_builder.rb', line 29

def initialize(title, options = {})
  @data = {}
  @data[:title] = title
  @data[:datasets] = []
  @data[:date_dimensions] = []
  @data.merge(options)
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



13
14
15
# File 'lib/gooddata/models/blueprint/project_builder.rb', line 13

def data
  @data
end

Class Method Details

.create(title, _options = {}, &block) ⇒ Object



22
23
24
25
26
# File 'lib/gooddata/models/blueprint/project_builder.rb', line 22

def create(title, _options = {}, &block)
  pb = ProjectBuilder.new(title)
  block.call(pb)
  pb
end

.create_from_data(blueprint, title = 'Title') ⇒ Object



16
17
18
19
20
# File 'lib/gooddata/models/blueprint/project_builder.rb', line 16

def create_from_data(blueprint, title = 'Title')
  pb = ProjectBuilder.new(title)
  pb.data = blueprint.to_hash
  pb
end

Instance Method Details

#add_computed_attribute(id, options = {}) ⇒ Object



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/gooddata/models/blueprint/project_builder.rb', line 64

def add_computed_attribute(id, options = {})
  metric = options[:metric].is_a?(GoodData::Metric) ? options[:metric].identifier : options[:metric]
  attribute = options[:attribute].is_a?(GoodData::Attribute) ? options[:attribute].identifier : options[:attribute]
  buckets = options[:buckets].sort_by do |bucket|
    bucket.key?(:highest_value) ? bucket[:highest_value] : Float::INFINITY
  end

  last_bucket = buckets.pop
  relations = buckets.map do |bucket|
    "when {#{metric}} <= #{bucket[:highest_value]} then {#{id}?\"#{bucket[:label]}\"}"
  end
  relations += ["when {#{metric}} > #{buckets.last[:highest_value]} then {#{id}?\"#{last_bucket[:label]}\"} else {#{id}?\"\"} end"]
  relations = ["to {#{attribute}} as case #{relations.join(', ')}"]

  add_dataset(id.sub('attr.', 'dataset.'), options) do |d|
    d.add_anchor(id, options.merge(relations: relations))
    d.add_label(id.sub('attr.', 'label.'), reference: id, default_label: true)
  end
end

#add_dataset(id, options = {}, &block) ⇒ Object



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/gooddata/models/blueprint/project_builder.rb', line 48

def add_dataset(id, options = {}, &block)
  builder = GoodData::Model::SchemaBuilder.new(id, options)
  block.call(builder) if block
  fail 'Dataset has to have id defined' if id.blank?
  datasets = data[:datasets]
  if datasets.any? { |item| item[:id] == id }
    ds = datasets.find { |item| item[:id] == id }
    index = datasets.index(ds)
    stuff = GoodData::Model.merge_dataset_columns(ds, builder.to_hash)
    datasets.delete_at(index)
    datasets.insert(index, stuff)
  else
    datasets << builder.to_hash
  end
end

#add_date_dimension(id, options = {}) ⇒ Object



37
38
39
40
41
42
43
44
45
46
# File 'lib/gooddata/models/blueprint/project_builder.rb', line 37

def add_date_dimension(id, options = {})
  dimension = {
    type: :date_dimension,
    urn: options[:urn],
    id: id,
    title: options[:title]
  }

  data[:date_dimensions] << dimension
end

#to_blueprintObject



94
95
96
# File 'lib/gooddata/models/blueprint/project_builder.rb', line 94

def to_blueprint
  GoodData::Model::ProjectBlueprint.new(to_hash)
end

#to_hashObject



98
99
100
# File 'lib/gooddata/models/blueprint/project_builder.rb', line 98

def to_hash
  data
end

#to_json(options = {}) ⇒ Object



84
85
86
87
88
89
90
91
92
# File 'lib/gooddata/models/blueprint/project_builder.rb', line 84

def to_json(options = {})
  eliminate_empty = options[:eliminate_empty] || false

  if eliminate_empty
    JSON.pretty_generate(to_hash.reject { |_k, v| v.is_a?(Enumerable) && v.empty? })
  else
    JSON.pretty_generate(to_hash)
  end
end