summaryrefslogtreecommitdiffstats
path: root/web/api/web_api.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 12:08:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 12:08:18 +0000
commit5da14042f70711ea5cf66e034699730335462f66 (patch)
tree0f6354ccac934ed87a2d555f45be4c831cf92f4a /web/api/web_api.h
parentReleasing debian version 1.44.3-2. (diff)
downloadnetdata-5da14042f70711ea5cf66e034699730335462f66.tar.xz
netdata-5da14042f70711ea5cf66e034699730335462f66.zip
Merging upstream version 1.45.3+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'web/api/web_api.h')
-rw-r--r--web/api/web_api.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/web/api/web_api.h b/web/api/web_api.h
deleted file mode 100644
index a6b3716b7..000000000
--- a/web/api/web_api.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// SPDX-License-Identifier: GPL-3.0-or-later
-
-#ifndef NETDATA_WEB_API_H
-#define NETDATA_WEB_API_H 1
-
-#include "daemon/common.h"
-#include "web/api/badges/web_buffer_svg.h"
-#include "web/api/ilove/ilove.h"
-#include "web/api/formatters/rrd2json.h"
-#include "web/api/health/health_cmdapi.h"
-#include "web/api/queries/weights.h"
-
-extern bool netdata_is_protected_by_bearer;
-extern DICTIONARY *netdata_authorized_bearers;
-typedef enum __attribute__((packed)) {
- BEARER_STATUS_NO_BEARER_IN_HEADERS,
- BEARER_STATUS_BEARER_DOES_NOT_FIT,
- BEARER_STATUS_NOT_PARSABLE,
- BEARER_STATUS_EXTRACTED_FROM_HEADER,
- BEARER_STATUS_NO_BEARERS_DICTIONARY,
- BEARER_STATUS_NOT_FOUND_IN_DICTIONARY,
- BEARER_STATUS_EXPIRED,
- BEARER_STATUS_AVAILABLE_AND_VALIDATED,
-} BEARER_STATUS;
-
-BEARER_STATUS api_check_bearer_token(struct web_client *w);
-BEARER_STATUS extract_bearer_token_from_request(struct web_client *w, char *dst, size_t dst_len);
-
-struct web_api_command {
- const char *command;
- uint32_t hash;
- WEB_CLIENT_ACL acl;
- int (*callback)(RRDHOST *host, struct web_client *w, char *url);
- unsigned int allow_subpaths;
-};
-
-struct web_client;
-
-int web_client_api_request_vX(RRDHOST *host, struct web_client *w, char *url_path_endpoint, struct web_api_command *api_commands);
-
-static inline void fix_google_param(char *s) {
- if(unlikely(!s || !*s)) return;
-
- for( ; *s ;s++) {
- if(!isalnum(*s) && *s != '.' && *s != '_' && *s != '-')
- *s = '_';
- }
-}
-
-int web_client_api_request_weights(RRDHOST *host, struct web_client *w, char *url, WEIGHTS_METHOD method, WEIGHTS_FORMAT format, size_t api_version);
-
-bool web_client_interrupt_callback(void *data);
-
-#include "web_api_v1.h"
-#include "web_api_v2.h"
-
-#endif //NETDATA_WEB_API_H