| /*****************************************************************************\ |
| * openapi.h - OpenAPI plugin handler |
| ***************************************************************************** |
| * Copyright (C) SchedMD LLC. |
| * |
| * This file is part of Slurm, a resource management program. |
| * For details, see <https://slurm.schedmd.com/>. |
| * Please also read the included file: DISCLAIMER. |
| * |
| * Slurm is free software; you can redistribute it and/or modify it under |
| * the terms of the GNU General Public License as published by the Free |
| * Software Foundation; either version 2 of the License, or (at your option) |
| * any later version. |
| * |
| * In addition, as a special exception, the copyright holders give permission |
| * to link the code of portions of this program with the OpenSSL library under |
| * certain conditions as described in each individual source file, and |
| * distribute linked combinations including the two. You must obey the GNU |
| * General Public License in all respects for all of the code used other than |
| * OpenSSL. If you modify file(s) with this exception, you may extend this |
| * exception to your version of the file(s), but you are not obligated to do |
| * so. If you do not wish to do so, delete this exception statement from your |
| * version. If you delete this exception statement from all source files in |
| * the program, then also delete it here. |
| * |
| * Slurm is distributed in the hope that it will be useful, but WITHOUT ANY |
| * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
| * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
| * details. |
| * |
| * You should have received a copy of the GNU General Public License along |
| * with Slurm; if not, write to the Free Software Foundation, Inc., |
| * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| \*****************************************************************************/ |
| |
| /* |
| * Based on OpenAPI 3.0.2 Standard: |
| * https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md |
| */ |
| |
| #ifndef SLURMRESTD_OPENAPI_H |
| #define SLURMRESTD_OPENAPI_H |
| |
| #include "src/common/data.h" |
| #include "src/common/http.h" |
| #include "src/common/list.h" |
| #include "src/common/openapi.h" |
| #include "src/common/plugrack.h" |
| |
| #include "src/interfaces/data_parser.h" |
| |
| /* |
| * Init the OpenAPI data structs. |
| * IN plugins_list - comma delimited list of plugins or "list" |
| * pass NULL to load all found or "" to load none of them |
| * IN listf - function to call if plugins="list" (may be NULL) |
| * IN parsers_ptr - array of loaded data_parsers |
| * IN response_status_codes - HTTP_STATUS_CODE_INVALID terminated array of HTTP |
| * status codes to generate or NULL for default |
| * RET SLURM_SUCCESS or error |
| */ |
| extern int init_openapi(const char *plugin_list, plugrack_foreach_t listf, |
| data_parser_t **parsers_ptr, |
| const http_status_code_t *resp_status_codes); |
| |
| /* |
| * Free openapi |
| */ |
| extern void destroy_openapi(void); |
| |
| /* |
| * Extracts the db_conn using given auth context |
| * Note: This must be implemented in process calling openapi functions. |
| */ |
| extern void *openapi_get_db_conn(void *ctxt); |
| |
| /* Wraps ctxt callback to apply standardised response schema */ |
| extern int wrap_openapi_ctxt_callback(const char *context_id, |
| http_request_method_t method, |
| data_t *parameters, data_t *query, |
| int tag, data_t *resp, void *db_conn, |
| data_parser_t *parser, |
| const openapi_path_binding_t *op_path, |
| const openapi_resp_meta_t *plugin_meta); |
| |
| /* |
| * Macro to make a single response dumping easy |
| */ |
| #define DUMP_OPENAPI_RESP_SINGLE(mtype, src, context_ptr) \ |
| do { \ |
| openapi_resp_single_t openapi_response = { \ |
| .response = src, \ |
| .OPENAPI_RESP_STRUCT_ERRORS_FIELD_NAME = context_ptr->errors,\ |
| .OPENAPI_RESP_STRUCT_WARNINGS_FIELD_NAME = \ |
| context_ptr->warnings, \ |
| }; \ |
| DATA_DUMP(context_ptr->parser, mtype, openapi_response, ctxt->resp); \ |
| list_flush(context_ptr->errors); \ |
| list_flush(context_ptr->warnings); \ |
| } while (false) |
| |
| /* |
| * Add a response error |
| * IN ctxt - connection context |
| * IN why - description of error or NULL |
| * IN error_code - Error number |
| * IN source - Where the error was generated |
| * RET value of error_code |
| */ |
| extern int openapi_resp_error(openapi_ctxt_t *ctxt, int error_code, |
| const char *source, const char *why, ...) |
| __attribute__((format(printf, 4, 5))); |
| extern void openapi_resp_warn(openapi_ctxt_t *ctxt, const char *source, |
| const char *why, ...) |
| __attribute__((format(printf, 3, 4))); |
| |
| /* |
| * Generate OpenAPI specification |
| * IN/OUT dst - data_t to populate with specification |
| * IN mime_types - NULL terminated array of mime types to dump |
| * RET SLURM_SUCCESS or error |
| */ |
| extern int generate_spec(data_t *dst, const char **mime_types); |
| |
| /* |
| * True if only generating an OAS |
| * IN set - Set to true |
| * RET true if only generating a spec file |
| * Warning: Do not call with set=true after multithreading started |
| */ |
| extern bool is_spec_generation_only(bool set); |
| |
| typedef struct openapi_entry_s openapi_entry_t; |
| |
| /* Resolve out the path as parameters */ |
| extern int resolve_params(const openapi_entry_t *entry, const char *url_path, |
| data_t *params); |
| |
| #endif /* SLURMRESTD_OPENAPI_H */ |