summaryrefslogtreecommitdiffstats
path: root/src/rgw/rgw_cors_swift.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
commit483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch)
treee5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/rgw/rgw_cors_swift.h
parentInitial commit. (diff)
downloadceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz
ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/rgw/rgw_cors_swift.h')
-rw-r--r--src/rgw/rgw_cors_swift.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/src/rgw/rgw_cors_swift.h b/src/rgw/rgw_cors_swift.h
new file mode 100644
index 00000000..da5a2afc
--- /dev/null
+++ b/src/rgw/rgw_cors_swift.h
@@ -0,0 +1,76 @@
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab
+
+/*
+ * Ceph - scalable distributed file system
+ *
+ * Copyright (C) 2013 eNovance SAS <licensing@enovance.com>
+ *
+ * This is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software
+ * Foundation. See file COPYING.
+ *
+ */
+
+#ifndef CEPH_RGW_CORS_SWIFT3_H
+#define CEPH_RGW_CORS_SWIFT3_H
+
+#include <map>
+#include <string>
+#include <vector>
+#include <include/types.h>
+#include <include/str_list.h>
+
+#include "rgw_cors.h"
+
+class RGWCORSConfiguration_SWIFT : public RGWCORSConfiguration
+{
+ public:
+ RGWCORSConfiguration_SWIFT() {}
+ ~RGWCORSConfiguration_SWIFT() {}
+ int create_update(const char *allow_origins, const char *allow_headers,
+ const char *expose_headers, const char *max_age) {
+ set<string> o, h, oc;
+ list<string> e;
+ unsigned long a = CORS_MAX_AGE_INVALID;
+ uint8_t flags = RGW_CORS_ALL;
+
+ string ao = allow_origins;
+ get_str_set(ao, oc);
+ if (oc.empty())
+ return -EINVAL;
+ for(set<string>::iterator it = oc.begin(); it != oc.end(); ++it) {
+ string host = *it;
+ if (validate_name_string(host) != 0)
+ return -EINVAL;
+ o.insert(o.end(), host);
+ }
+ if (allow_headers) {
+ string ah = allow_headers;
+ get_str_set(ah, h);
+ for(set<string>::iterator it = h.begin();
+ it != h.end(); ++it) {
+ string s = (*it);
+ if (validate_name_string(s) != 0)
+ return -EINVAL;
+ }
+ }
+
+ if (expose_headers) {
+ string eh = expose_headers;
+ get_str_list(eh, e);
+ }
+ if (max_age) {
+ char *end = NULL;
+ a = strtoul(max_age, &end, 10);
+ if (a == ULONG_MAX)
+ a = CORS_MAX_AGE_INVALID;
+ }
+
+ RGWCORSRule rule(o, h, e, flags, a);
+ stack_rule(rule);
+ return 0;
+ }
+};
+#endif /*CEPH_RGW_CORS_SWIFT3_H*/