Class: Statsig::Network

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/network.rb

Instance Method Summary collapse

Constructor Details

#initialize(server_secret, options, backoff_mult = 10) ⇒ Network

Returns a new instance of Network.



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
# File 'lib/network.rb', line 27

def initialize(server_secret, options, backoff_mult = 10)
  super()
  URIHelper.initialize(options)
  @server_secret = server_secret
  @local_mode = options.local_mode
  @timeout = options.network_timeout
  @backoff_multiplier = backoff_mult
  @post_logs_retry_backoff = options.post_logs_retry_backoff
  @post_logs_retry_limit = options.post_logs_retry_limit
  @session_id = SecureRandom.uuid
  @connection_pool = ConnectionPool.new(size: 3) do
    meta = Statsig.
    client = HTTP.headers(
      {
        'STATSIG-API-KEY' => @server_secret,
        'STATSIG-CLIENT-TIME' => (Time.now.to_f * 1000).to_i.to_s,
        'STATSIG-SERVER-SESSION-ID' => @session_id,
        'Content-Type' => 'application/json; charset=UTF-8',
        'STATSIG-SDK-TYPE' => meta['sdkType'],
        'STATSIG-SDK-VERSION' => meta['sdkVersion']
      }
    ).accept(:json)
    if @timeout
      client = client.timeout(@timeout)
    end

    client
  end
end

Instance Method Details

#check_gate(user, gate_name) ⇒ Object



99
100
101
102
103
104
105
106
107
# File 'lib/network.rb', line 99

def check_gate(user, gate_name)
  request_body = JSON.generate({ 'user' => user&.serialize(false), 'gateName' => gate_name })
  response, = post_helper('check_gate', request_body)
  return JSON.parse(response.body) unless response.nil?

  false
rescue StandardError
  false
end

#get_config(user, dynamic_config_name) ⇒ Object



109
110
111
112
113
114
115
116
117
# File 'lib/network.rb', line 109

def get_config(user, dynamic_config_name)
  request_body = JSON.generate({ 'user' => user&.serialize(false), 'configName' => dynamic_config_name })
  response, = post_helper('get_config', request_body)
  return JSON.parse(response.body) unless response.nil?

  nil
rescue StandardError
  nil
end

#post_helper(endpoint, body, retries = 0, backoff = 1) ⇒ Object



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
# File 'lib/network.rb', line 62

def post_helper(endpoint, body, retries = 0, backoff = 1)
  if @local_mode
    return nil, nil
  end

  backoff_adjusted = backoff > 10 ? backoff += Random.rand(10) : backoff # to deter overlap
  if @post_logs_retry_backoff
    if @post_logs_retry_backoff.is_a? Integer
      backoff_adjusted = @post_logs_retry_backoff
    else
      backoff_adjusted = @post_logs_retry_backoff.call(retries)
    end
  end
  url = URIHelper.build_url(endpoint)
  begin
    res = @connection_pool.with do |conn|
      conn.headers('STATSIG-CLIENT-TIME' => (Time.now.to_f * 1000).to_i.to_s).post(url, body: body)
    end
  rescue StandardError => e
    ## network error retry
    return nil, e unless retries.positive?

    sleep backoff_adjusted
    return post_helper(endpoint, body, retries - 1, backoff * @backoff_multiplier)
  end
  return res, nil if res.status.success?

  unless retries.positive? && RETRY_CODES.include?(res.code)
    return res, NetworkError.new("Got an exception when making request to #{url}: #{res.to_s}",
                                 res.status.to_i)
  end

  ## status code retry
  sleep backoff_adjusted
  post_helper(endpoint, body, retries - 1, backoff * @backoff_multiplier)
end

#post_logs(events) ⇒ Object



119
120
121
122
123
124
# File 'lib/network.rb', line 119

def post_logs(events)
  json_body = JSON.generate({ 'events' => events, 'statsigMetadata' => Statsig. })
  post_helper('log_event', json_body, @post_logs_retry_limit)
rescue StandardError

end