# frozen_string_literal: true require_relative "base" module Neetob class CLI module Cloudflare class BotFightMode < Base attr_accessor :domain def initialize(domain) super() @domain = domain end 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 end end end end