From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- src/rgw/rgw_rest_ratelimit.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/rgw/rgw_rest_ratelimit.h (limited to 'src/rgw/rgw_rest_ratelimit.h') diff --git a/src/rgw/rgw_rest_ratelimit.h b/src/rgw/rgw_rest_ratelimit.h new file mode 100644 index 000000000..c3a942b19 --- /dev/null +++ b/src/rgw/rgw_rest_ratelimit.h @@ -0,0 +1,34 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab ft=cpp + +#pragma once + +#include "rgw_rest.h" +#include "rgw_rest_s3.h" +#include "rgw_sal_rados.h" + +class RGWHandler_Ratelimit : public RGWHandler_Auth_S3 { +protected: + RGWOp *op_get() override; + RGWOp *op_post() override; +public: + using RGWHandler_Auth_S3::RGWHandler_Auth_S3; + ~RGWHandler_Ratelimit() override = default; + + int read_permissions(RGWOp*, optional_yield) override { + return 0; + } +}; + +class RGWRESTMgr_Ratelimit : public RGWRESTMgr { +public: + RGWRESTMgr_Ratelimit() = default; + ~RGWRESTMgr_Ratelimit() override = default; + + RGWHandler_REST *get_handler(rgw::sal::Driver* driver, + req_state*, + const rgw::auth::StrategyRegistry& auth_registry, + const std::string&) override { + return new RGWHandler_Ratelimit(auth_registry); + } +}; -- cgit v1.2.3