Line data Source code
1 : /*
2 : ___________________________________________
3 : | _ ___ _ |
4 : | | | |__ \ | | |
5 : | | |__ ) |__ _ __ _ ___ _ __ | |_ |
6 : | | '_ \ / // _` |/ _` |/ _ \ '_ \| __| | HTTP/2 AGENT FOR MOCK TESTING
7 : | | | | |/ /| (_| | (_| | __/ | | | |_ | Version 0.0.z
8 : | |_| |_|____\__,_|\__, |\___|_| |_|\__| | https://github.com/testillano/h2agent
9 : | __/ | |
10 : | |___/ |
11 : |___________________________________________|
12 :
13 : Licensed under the MIT License <http://opensource.org/licenses/MIT>.
14 : SPDX-License-Identifier: MIT
15 : Copyright (c) 2021 Eduardo Ramos
16 :
17 : Permission is hereby granted, free of charge, to any person obtaining a copy
18 : of this software and associated documentation files (the "Software"), to deal
19 : in the Software without restriction, including without limitation the rights
20 : to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
21 : copies of the Software, and to permit persons to whom the Software is
22 : furnished to do so, subject to the following conditions:
23 :
24 : The above copyright notice and this permission notice shall be included in all
25 : copies or substantial portions of the Software.
26 :
27 : THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28 : IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29 : FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
30 : AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
31 : LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
32 : OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 : SOFTWARE.
34 : */
35 :
36 : #pragma once
37 :
38 : #include <string>
39 :
40 : #include <nlohmann/json.hpp>
41 :
42 : #include <JsonSchema.hpp>
43 :
44 :
45 : namespace h2agent
46 : {
47 : namespace model
48 : {
49 :
50 : // Schema key:
51 : typedef std::string schema_key_t;
52 :
53 :
54 : class AdminSchema
55 : {
56 : nlohmann::json json_{}; // schema reference
57 :
58 : schema_key_t key_{};
59 : h2agent::jsonschema::JsonSchema schema_{}; // schema content
60 :
61 : public:
62 :
63 352 : AdminSchema() {;}
64 :
65 : // setters:
66 :
67 : /**
68 : * Load schema information
69 : *
70 : * @param j Json schema object
71 : *
72 : * @return Operation success
73 : */
74 : bool load(const nlohmann::json &j);
75 :
76 : // getters:
77 :
78 : /**
79 : * Gets the schema key (identifier)
80 : *
81 : * @return Schema key
82 : */
83 334 : const schema_key_t &getKey() const {
84 334 : return key_;
85 : }
86 :
87 : /** Json for class information
88 : *
89 : * @return Json object
90 : */
91 3 : const nlohmann::json &getJson() const {
92 3 : return json_;
93 : }
94 :
95 : /**
96 : * Validates json document against schem content.
97 : *
98 : * @param j document to validate
99 : * @param error Error passed by reference
100 : *
101 : * @return boolean about if json document is valid against json schema
102 : */
103 : bool validate(const nlohmann::json& j, std::string &error) const;
104 : };
105 :
106 : }
107 : }
108 :
|