Class: Neetob::CLI::Cloudflare::BotFightMode
- Defined in:
- lib/neetob/cli/cloudflare/bot_fight_mode.rb
Constant Summary
Constants inherited from Base
Neetob::CLI::Cloudflare::Base::NEETO_DEPLOY_DOCS, Neetob::CLI::Cloudflare::Base::ZONE_IDS
Constants inherited from Base
Instance Attribute Summary collapse
-
#domain ⇒ Object
Returns the value of attribute domain.
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(domain) ⇒ BotFightMode
constructor
A new instance of BotFightMode.
- #run ⇒ Object
Methods inherited from Base
Methods included from Utils
#camel_case_to_slug, #is_upper?, #symbolize_keys
Constructor Details
#initialize(domain) ⇒ BotFightMode
Returns a new instance of BotFightMode.
11 12 13 14 |
# File 'lib/neetob/cli/cloudflare/bot_fight_mode.rb', line 11 def initialize(domain) super() @domain = domain end |
Instance Attribute Details
#domain ⇒ Object
Returns the value of attribute domain.
9 10 11 |
# File 'lib/neetob/cli/cloudflare/bot_fight_mode.rb', line 9 def domain @domain end |
Instance Method Details
#run ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/neetob/cli/cloudflare/bot_fight_mode.rb', line 16 def run zone_id = ZONE_IDS[domain.to_sym] raise(StandardError, "Domain '#{domain}' not found.") if zone_id.nil? url = create_url(zone_id, "bot_management") response = get(url) ui.info( "Bot fight mode is turned #{response[:result][:fight_mode] ? print_success("on") : print_failure("off")}") end |