Sha256: 5fe686d71d4ccc4d483d74b459e25703094cc37016b9e103fe64f434f5eb7a66
Contents?: true
Size: 855 Bytes
Versions: 39
Compression:
Stored size: 855 Bytes
Contents
# typed: ignore # Copyright (c) 2015 Sqreen. All Rights Reserved. # Please refer to our terms for more information: https://www.sqreen.com/terms.html require 'sqreen/rules/attrs' require 'sqreen/rules/rule_cb' require 'sqreen/safe_json' module Sqreen module Rules class SignupTrackCB < RuleCB def initialize(*args) super(*args) @overtimeable = false end def pre(_instance, args, _budget) authentication_keys = args.first ip = framework.client_ip category = 'sdk-signup' if authentication_keys.empty? Sqreen.log.debug { "#{category} from #{ip} but keys empty" } return end payload = { keys: authentication_keys.to_a, ip: ip } record_observation(category, JSON.dump(payload), 1) advise_action(nil) end end end end
Version data entries
39 entries across 39 versions & 1 rubygems