Class: Tggl::Reporting

Inherits:
Object
  • Object
show all
Defined in:
lib/tggl/reporting.rb

Instance Method Summary collapse

Constructor Details

#initialize(api_key = nil, options = {}) ⇒ Reporting

Returns a new instance of Reporting.



15
16
17
18
19
20
21
22
23
24
# File 'lib/tggl/reporting.rb', line 15

def initialize(api_key = nil, options = {})
  @api_key = api_key
  @url = options[:url] || 'https://api.tggl.io/report'
  @app = options[:app]
  @app_prefix = options[:app_prefix]
  @last_report_time = Time.now.to_i
  @flags_to_report = Hash.new
  @received_properties_to_report = Hash.new
  @received_values_to_report = Hash.new
end

Instance Method Details

#report_context(context) ⇒ Object



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/tggl/reporting.rb', line 122

def report_context(context)
  now = Time.now.to_i

  context.each do |key, value|
    if @received_properties_to_report.key?(key)
      @received_properties_to_report[key][1] = now
    else
      @received_properties_to_report[key] = [now, now]
    end

    if value.is_a?(String) && !value.empty?
      constant_case_key = constant_case(key.to_s).gsub(/_I_D$/, '_ID')
      label_key_target = constant_case_key.end_with?('_ID') ? constant_case_key.gsub(/_ID$/, '_NAME') : nil
      label_key = label_key_target.nil? ? nil : context.keys.find { |k| constant_case(k.to_s) == label_key_target }

      @received_values_to_report[key] ||= Hash.new
      @received_values_to_report[key][value] = label_key && context[label_key].is_a?(String) ? context[label_key] : nil
    end
  end
end

#report_flag(slug, active, value = nil, default = nil) ⇒ Object



105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/tggl/reporting.rb', line 105

def report_flag(slug, active, value = nil, default = nil)
  key = "#{active ? '1' : '0'}#{value.to_json}#{default.to_json}"

  @flags_to_report[slug] ||= Hash.new

  if @flags_to_report[slug].key?(key)
    @flags_to_report[slug][key][:count] += 1
  else
    @flags_to_report[slug][key] = {
      active: active,
      value: value,
      default: default,
      count: 1
    }
  end
end

#send_reportObject



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/tggl/reporting.rb', line 26

def send_report
  payload = {}

  unless @flags_to_report.empty?
    flags_to_report = @flags_to_report
    @flags_to_report = Hash.new

    client_id = (@app_prefix || '') + (!@app.nil? && !@app_prefix.nil? ? '/' : '') + (@app || '')
    payload[:clients] = [
      {
        flags: flags_to_report.keys.reduce({}) do |acc, key|
          acc[key] = flags_to_report[key].values
          acc
        end
      }
    ]

    unless client_id.empty?
      payload[:clients][0][:id] = client_id
    end
  end

  unless @received_properties_to_report.empty?
    received_properties = @received_properties_to_report
    @received_properties_to_report = Hash.new

    payload[:receivedProperties] = received_properties
  end

  unless @received_values_to_report.empty?
    received_values = @received_values_to_report
    @received_values_to_report = Hash.new

    data = received_values.keys.reduce([]) do |acc, key|
      received_values[key].keys.each do |value|
        label = received_values[key][value]
        if label.nil?
          acc << [key, value]
        else
          acc << [key, value, label]
        end
      end
      acc
    end

    page_size = 2000

    payload[:receivedValues] = data.first(page_size).reduce({}) do |acc, cur|
      acc[cur[0]] ||= []
      acc[cur[0]] << cur.drop(1).map { |v| v[0...240] }
      acc
    end

    (page_size...data.size).step(page_size) do |i|
      # @api_client.call(@url, true, @api_key, {
      #   receivedValues: data.slice(i, page_size).reduce({}) do |acc, cur|
      #     acc[cur[0]] ||= []
      #     acc[cur[0]] << cur.drop(1).map { |v| v[0...240] }
      #     acc
      #   end
      # })
    end
  end

  unless payload.empty?
    uri = URI(@url)
    http = Net::HTTP.new(uri.host, uri.port)
    http.use_ssl = true

    request = Net::HTTP::Post.new(uri.path, {
      'X-Tggl-Api-Key' => @api_key,
      'Content-Type' => 'application/json'
    })
    request.body = payload.to_json

    http.request(request)
  end
end