Sha256: 41e86e80de7f7660c2257eb511c0b543676d77e8a9a3edb4e1bad0e655cf8b02
Contents?: true
Size: 721 Bytes
Versions: 39
Compression:
Stored size: 721 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/matcher_rule' require 'sqreen/frameworks' module Sqreen module Rules # FIXME: Factor with UserAgentMatchesCB # Look for crawlers class CrawlerUserAgentMatchesCB < MatcherRuleCB def pre(_inst, _args, _budget = nil, &_block) ua = framework.client_user_agent return unless ua found = match(ua) return unless found Sqreen.log.debug { "Found UA #{ua} - found: #{found}" } infos = { :found => found } record_event(infos) advise_action(nil) end end end end
Version data entries
39 entries across 39 versions & 1 rubygems