Class: PxModule::PerimeterxS2SValidator
- Inherits:
-
PerimeterxRiskClient
- Object
- PerimeterxRiskClient
- PxModule::PerimeterxS2SValidator
- Defined in:
- lib/perimeterx/internal/validators/perimeter_x_s2s_validator.rb
Instance Attribute Summary
Attributes inherited from PerimeterxRiskClient
Instance Method Summary collapse
-
#initialize(px_config, http_client) ⇒ PerimeterxS2SValidator
constructor
A new instance of PerimeterxS2SValidator.
- #send_risk_request(px_ctx) ⇒ Object
- #verify(px_ctx) ⇒ Object
Methods inherited from PerimeterxRiskClient
Constructor Details
#initialize(px_config, http_client) ⇒ PerimeterxS2SValidator
Returns a new instance of PerimeterxS2SValidator.
6 7 8 9 |
# File 'lib/perimeterx/internal/validators/perimeter_x_s2s_validator.rb', line 6 def initialize(px_config, http_client) super(px_config, http_client) @logger.debug("PerimeterxS2SValidator[initialize]") end |
Instance Method Details
#send_risk_request(px_ctx) ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 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 |
# File 'lib/perimeterx/internal/validators/perimeter_x_s2s_validator.rb', line 11 def send_risk_request(px_ctx) @logger.debug("PerimeterxS2SValidator[send_risk_request]: send_risk_request") risk_mode = PxModule::RISK_MODE_ACTIVE if @px_config[:module_mode] == PxModule::MONITOR_MODE risk_mode = PxModule::RISK_MODE_MONITOR end request_body = { :request => { :ip => px_ctx.context[:ip], :headers => format_headers(px_ctx), :uri => px_ctx.context[:uri], :url => px_ctx.context[:full_url] }, :additional => { :s2s_call_reason => px_ctx.context[:s2s_call_reason], :module_version => @px_config[:sdk_name], :http_method => px_ctx.context[:http_method], :http_version => px_ctx.context[:http_version], :risk_mode => risk_mode } } #Check for hmac @logger.debug("px_ctx cookie_hmac key = #{px_ctx.context.key?(:cookie_hmac)}, value is: #{px_ctx.context[:cookie_hmac]}") if px_ctx.context.key?(:cookie_hmac) request_body[:additional][:px_cookie_hmac] = px_ctx.context[:cookie_hmac] end #Check for VID if px_ctx.context.key?(:vid) request_body[:vid] = px_ctx.context[:vid] end #Check for uuid if px_ctx.context.key?(:uuid) request_body[:uuid] = px_ctx.context[:uuid] end #S2S Call reason = [PxModule::EXPIRED_COOKIE, PxModule::COOKIE_VALIDATION_FAILED] if ( px_ctx.context[:s2s_call_reason] == PxModule::COOKIE_DECRYPTION_FAILED ) @logger.debug("PerimeterxS2SValidator[send_risk_request]: attaching px_orig_cookie to request") request_body[:additional][:px_orig_cookie] = px_ctx.context[:px_orig_cookie] elsif .include? (px_ctx.context[:s2s_call_reason]) if (px_ctx.context.key?(:decoded_cookie)) request_body[:additional][:px_cookie] = px_ctx.context[:decoded_cookie] end end # Prepare request headers = { "Authorization" => "Bearer #{@px_config[:auth_token]}" , "Content-Type" => "application/json" }; # Custom risk handler if (risk_mode == PxModule::ACTIVE_MODE && @px_config.key?(:custom_risk_handler)) response = @px_config[:custom_risk_handler].call(PxModule::API_V2_RISK, request_body, headers, @px_config[:api_timeout]) else response = @http_client.post(PxModule::API_V2_RISK , request_body, headers) end return response end |
#verify(px_ctx) ⇒ Object
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 104 105 106 107 108 109 110 111 |
# File 'lib/perimeterx/internal/validators/perimeter_x_s2s_validator.rb', line 77 def verify(px_ctx) @logger.debug("PerimeterxS2SValidator[verify]") response = send_risk_request(px_ctx) if (!response) return px_ctx end px_ctx.context[:made_s2s_risk_api_call] = true # From here response should be valid, if success or error response_body = eval(response.content); # When success if (response.status == 200 && response_body.key?(:score) && response_body.key?(:action)) @logger.debug("PerimeterxS2SValidator[verify]: response ok") score = response_body[:score] px_ctx.context[:score] = score px_ctx.context[:uuid] = response_body[:uuid] px_ctx.context[:block_action] = px_ctx.set_block_action_type(response_body[:action]) if (response_body[:action] == 'j' && response_body.key?(:action_data) && response_body[:action_data].key?(:body)) px_ctx.context[:block_action_data] = response_body[:action_data][:body] px_ctx.context[:blocking_reason] = 'challenge' elsif (score >= @px_config[:blocking_score]) px_ctx.context[:blocking_reason] = 's2s_high_score' end #end challange or blocking score end #end success response # When error if(response.status != 200) @logger.warn("PerimeterxS2SValidator[verify]: bad response, return code #{response.code}") px_ctx.context[:uuid] = "" px_ctx.context[:s2s_error_msg] = response_body[:message] end @logger.debug("PerimeterxS2SValidator[verify]: done") return px_ctx end |