]> git.proxmox.com Git - ceph.git/blob - ceph/src/rgw/rgw_rest_usage.h
import quincy beta 17.1.0
[ceph.git] / ceph / src / rgw / rgw_rest_usage.h
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab ft=cpp
3
4 #pragma once
5
6 #include "rgw_rest.h"
7 #include "rgw_rest_s3.h"
8
9
10 class RGWHandler_Usage : public RGWHandler_Auth_S3 {
11 protected:
12 RGWOp *op_get() override;
13 RGWOp *op_delete() override;
14 public:
15 using RGWHandler_Auth_S3::RGWHandler_Auth_S3;
16 ~RGWHandler_Usage() override = default;
17
18 int read_permissions(RGWOp*, optional_yield) override {
19 return 0;
20 }
21 };
22
23 class RGWRESTMgr_Usage : public RGWRESTMgr {
24 public:
25 RGWRESTMgr_Usage() = default;
26 ~RGWRESTMgr_Usage() override = default;
27
28 RGWHandler_REST* get_handler(rgw::sal::Store* store,
29 struct req_state*,
30 const rgw::auth::StrategyRegistry& auth_registry,
31 const std::string&) override {
32 return new RGWHandler_Usage(auth_registry);
33 }
34 };