This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/lib/googlebot_detection.rb

6 lines
131 B
Ruby

module GooglebotDetection
def self.googlebot?(user_agent)
!/Googlebot|Mediapartners|AdsBot/.match(user_agent).nil?
end
end