Mercurial > hg > orthanc
annotate OrthancFramework/Sources/RestApi/RestApiHierarchy.cpp @ 4331:072adf3c3409
enabling one test in sandboxed environments
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 25 Nov 2020 18:15:28 +0100 |
parents | a01b1c9cbef4 |
children | 80fd140b12ba |
rev | line source |
---|---|
969 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
1900 | 3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
1288
6e7e5ed91c2d
upgrade to year 2015
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1063
diff
changeset
|
4 * Department, University Hospital of Liege, Belgium |
3640
94f4a18a79cc
upgrade to year 2020
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3060
diff
changeset
|
5 * Copyright (C) 2017-2020 Osimis S.A., Belgium |
969 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public License |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
9 * as published by the Free Software Foundation, either version 3 of |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
10 * the License, or (at your option) any later version. |
969 | 11 * |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
15 * Lesser General Public License for more details. |
969 | 16 * |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
18 * License along with this program. If not, see |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
19 * <http://www.gnu.org/licenses/>. |
969 | 20 **/ |
21 | |
22 | |
1624
0a2ad4a6858f
fix missing precompiled headers
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1444
diff
changeset
|
23 #include "../PrecompiledHeaders.h" |
969 | 24 #include "RestApiHierarchy.h" |
25 | |
975 | 26 #include "../OrthancException.h" |
27 | |
969 | 28 #include <cassert> |
1063
0332e6e8c679
Fix automated generation of the list of resource children in the REST API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
980
diff
changeset
|
29 #include <stdio.h> |
969 | 30 |
31 namespace Orthanc | |
32 { | |
978 | 33 RestApiHierarchy::Resource::Resource() : |
972 | 34 getHandler_(NULL), |
35 postHandler_(NULL), | |
36 putHandler_(NULL), | |
37 deleteHandler_(NULL) | |
38 { | |
39 } | |
40 | |
41 | |
978 | 42 bool RestApiHierarchy::Resource::HasHandler(HttpMethod method) const |
972 | 43 { |
44 switch (method) | |
45 { | |
46 case HttpMethod_Get: | |
47 return getHandler_ != NULL; | |
48 | |
49 case HttpMethod_Post: | |
50 return postHandler_ != NULL; | |
51 | |
52 case HttpMethod_Put: | |
53 return putHandler_ != NULL; | |
54 | |
55 case HttpMethod_Delete: | |
56 return deleteHandler_ != NULL; | |
57 | |
58 default: | |
59 throw OrthancException(ErrorCode_ParameterOutOfRange); | |
60 } | |
61 } | |
62 | |
63 | |
4300 | 64 void RestApiHierarchy::Resource::Register(RestApiGetCall::Handler handler) |
65 { | |
66 getHandler_ = handler; | |
67 } | |
68 | |
69 void RestApiHierarchy::Resource::Register(RestApiPutCall::Handler handler) | |
70 { | |
71 putHandler_ = handler; | |
72 } | |
73 | |
74 void RestApiHierarchy::Resource::Register(RestApiPostCall::Handler handler) | |
75 { | |
76 postHandler_ = handler; | |
77 } | |
78 | |
79 void RestApiHierarchy::Resource::Register(RestApiDeleteCall::Handler handler) | |
80 { | |
81 deleteHandler_ = handler; | |
82 } | |
83 | |
84 | |
978 | 85 bool RestApiHierarchy::Resource::IsEmpty() const |
969 | 86 { |
972 | 87 return (getHandler_ == NULL && |
88 postHandler_ == NULL && | |
89 putHandler_ == NULL && | |
90 deleteHandler_ == NULL); | |
91 } | |
92 | |
93 | |
969 | 94 RestApiHierarchy& RestApiHierarchy::AddChild(Children& children, |
95 const std::string& name) | |
96 { | |
97 Children::iterator it = children.find(name); | |
98 | |
99 if (it == children.end()) | |
100 { | |
101 // Create new child | |
102 RestApiHierarchy *child = new RestApiHierarchy; | |
103 children[name] = child; | |
104 return *child; | |
105 } | |
106 else | |
107 { | |
108 return *it->second; | |
109 } | |
110 } | |
111 | |
112 | |
978 | 113 |
114 bool RestApiHierarchy::Resource::Handle(RestApiGetCall& call) const | |
115 { | |
116 if (getHandler_ != NULL) | |
117 { | |
118 getHandler_(call); | |
119 return true; | |
120 } | |
121 else | |
122 { | |
123 return false; | |
124 } | |
125 } | |
126 | |
127 | |
128 bool RestApiHierarchy::Resource::Handle(RestApiPutCall& call) const | |
129 { | |
130 if (putHandler_ != NULL) | |
131 { | |
132 putHandler_(call); | |
133 return true; | |
134 } | |
135 else | |
136 { | |
137 return false; | |
138 } | |
139 } | |
140 | |
141 | |
142 bool RestApiHierarchy::Resource::Handle(RestApiPostCall& call) const | |
143 { | |
144 if (postHandler_ != NULL) | |
145 { | |
146 postHandler_(call); | |
147 return true; | |
148 } | |
149 else | |
150 { | |
151 return false; | |
152 } | |
153 } | |
154 | |
155 | |
156 bool RestApiHierarchy::Resource::Handle(RestApiDeleteCall& call) const | |
157 { | |
158 if (deleteHandler_ != NULL) | |
159 { | |
160 deleteHandler_(call); | |
161 return true; | |
162 } | |
163 else | |
164 { | |
165 return false; | |
166 } | |
167 } | |
168 | |
169 | |
969 | 170 void RestApiHierarchy::DeleteChildren(Children& children) |
171 { | |
172 for (Children::iterator it = children.begin(); | |
1303 | 173 it != children.end(); ++it) |
969 | 174 { |
175 delete it->second; | |
176 } | |
177 } | |
178 | |
179 | |
180 template <typename Handler> | |
181 void RestApiHierarchy::RegisterInternal(const RestApiPath& path, | |
182 Handler handler, | |
183 size_t level) | |
184 { | |
185 if (path.GetLevelCount() == level) | |
186 { | |
187 if (path.IsUniversalTrailing()) | |
188 { | |
189 universalHandlers_.Register(handler); | |
190 } | |
191 else | |
192 { | |
193 handlers_.Register(handler); | |
194 } | |
195 } | |
196 else | |
197 { | |
198 RestApiHierarchy* child; | |
199 if (path.IsWildcardLevel(level)) | |
200 { | |
201 child = &AddChild(wildcardChildren_, path.GetWildcardName(level)); | |
202 } | |
203 else | |
204 { | |
205 child = &AddChild(children_, path.GetLevelName(level)); | |
206 } | |
207 | |
208 child->RegisterInternal(path, handler, level + 1); | |
209 } | |
210 } | |
211 | |
212 | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4303
diff
changeset
|
213 bool RestApiHierarchy::LookupResource(HttpToolbox::Arguments& components, |
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4303
diff
changeset
|
214 const UriComponents& uri, |
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4303
diff
changeset
|
215 IVisitor& visitor, |
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4303
diff
changeset
|
216 size_t level) |
969 | 217 { |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
218 if (uri.size() != 0 && |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
219 level > uri.size()) |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
220 { |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
221 return false; |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
222 } |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
223 |
969 | 224 UriComponents trailing; |
225 | |
226 // Look for an exact match on the resource of interest | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4303
diff
changeset
|
227 if (uri.size() == 0 || |
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4303
diff
changeset
|
228 level == uri.size()) |
969 | 229 { |
230 if (!handlers_.IsEmpty() && | |
978 | 231 visitor.Visit(handlers_, uri, components, trailing)) |
969 | 232 { |
233 return true; | |
234 } | |
235 } | |
236 | |
237 | |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
238 if (level < uri.size()) // A recursive call is possible |
969 | 239 { |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
240 // Try and go down in the hierarchy, using an exact match for the child |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
241 Children::const_iterator child = children_.find(uri[level]); |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
242 if (child != children_.end()) |
969 | 243 { |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
244 if (child->second->LookupResource(components, uri, visitor, level + 1)) |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
245 { |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
246 return true; |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
247 } |
969 | 248 } |
249 | |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
250 // Try and go down in the hierarchy, using wildcard rules for children |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
251 for (child = wildcardChildren_.begin(); |
1303 | 252 child != wildcardChildren_.end(); ++child) |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
253 { |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4303
diff
changeset
|
254 HttpToolbox::Arguments subComponents = components; |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
255 subComponents[child->first] = uri[level]; |
969 | 256 |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
257 if (child->second->LookupResource(subComponents, uri, visitor, level + 1)) |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
258 { |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
259 return true; |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
260 } |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
261 } |
969 | 262 } |
263 | |
264 | |
265 // As a last resort, call the universal handlers, if any | |
266 if (!universalHandlers_.IsEmpty()) | |
267 { | |
268 trailing.resize(uri.size() - level); | |
269 size_t pos = 0; | |
270 for (size_t i = level; i < uri.size(); i++, pos++) | |
271 { | |
272 trailing[pos] = uri[i]; | |
273 } | |
274 | |
275 assert(pos == trailing.size()); | |
276 | |
978 | 277 if (visitor.Visit(universalHandlers_, uri, components, trailing)) |
969 | 278 { |
279 return true; | |
280 } | |
281 } | |
282 | |
283 return false; | |
284 } | |
285 | |
286 | |
978 | 287 bool RestApiHierarchy::CanGenerateDirectory() const |
288 { | |
1063
0332e6e8c679
Fix automated generation of the list of resource children in the REST API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
980
diff
changeset
|
289 return (universalHandlers_.IsEmpty() && |
1303 | 290 wildcardChildren_.empty()); |
978 | 291 } |
292 | |
293 | |
969 | 294 bool RestApiHierarchy::GetDirectory(Json::Value& result, |
295 const UriComponents& uri, | |
296 size_t level) | |
297 { | |
298 if (uri.size() == level) | |
299 { | |
978 | 300 if (CanGenerateDirectory()) |
969 | 301 { |
302 result = Json::arrayValue; | |
303 | |
304 for (Children::const_iterator it = children_.begin(); | |
1303 | 305 it != children_.end(); ++it) |
969 | 306 { |
307 result.append(it->first); | |
308 } | |
309 | |
310 return true; | |
311 } | |
312 else | |
313 { | |
314 return false; | |
315 } | |
316 } | |
317 | |
318 Children::const_iterator child = children_.find(uri[level]); | |
319 if (child != children_.end()) | |
320 { | |
321 if (child->second->GetDirectory(result, uri, level + 1)) | |
322 { | |
323 return true; | |
324 } | |
325 } | |
326 | |
327 for (child = wildcardChildren_.begin(); | |
1303 | 328 child != wildcardChildren_.end(); ++child) |
969 | 329 { |
330 if (child->second->GetDirectory(result, uri, level + 1)) | |
331 { | |
332 return true; | |
333 } | |
334 } | |
335 | |
336 return false; | |
337 } | |
338 | |
339 | |
340 RestApiHierarchy::~RestApiHierarchy() | |
341 { | |
342 DeleteChildren(children_); | |
343 DeleteChildren(wildcardChildren_); | |
344 } | |
345 | |
970 | 346 void RestApiHierarchy::Register(const std::string& uri, |
974 | 347 RestApiGetCall::Handler handler) |
969 | 348 { |
970 | 349 RestApiPath path(uri); |
969 | 350 RegisterInternal(path, handler, 0); |
351 } | |
352 | |
970 | 353 void RestApiHierarchy::Register(const std::string& uri, |
974 | 354 RestApiPutCall::Handler handler) |
969 | 355 { |
970 | 356 RestApiPath path(uri); |
969 | 357 RegisterInternal(path, handler, 0); |
358 } | |
359 | |
970 | 360 void RestApiHierarchy::Register(const std::string& uri, |
974 | 361 RestApiPostCall::Handler handler) |
969 | 362 { |
970 | 363 RestApiPath path(uri); |
969 | 364 RegisterInternal(path, handler, 0); |
365 } | |
366 | |
970 | 367 void RestApiHierarchy::Register(const std::string& uri, |
974 | 368 RestApiDeleteCall::Handler handler) |
969 | 369 { |
970 | 370 RestApiPath path(uri); |
969 | 371 RegisterInternal(path, handler, 0); |
372 } | |
373 | |
374 void RestApiHierarchy::CreateSiteMap(Json::Value& target) const | |
375 { | |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
376 target = Json::objectValue; |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
377 |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
378 /*std::string s = " "; |
972 | 379 if (handlers_.HasHandler(HttpMethod_Get)) |
969 | 380 { |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
381 s += "GET "; |
969 | 382 } |
383 | |
972 | 384 if (handlers_.HasHandler(HttpMethod_Post)) |
969 | 385 { |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
386 s += "POST "; |
969 | 387 } |
388 | |
972 | 389 if (handlers_.HasHandler(HttpMethod_Put)) |
969 | 390 { |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
391 s += "PUT "; |
969 | 392 } |
393 | |
972 | 394 if (handlers_.HasHandler(HttpMethod_Delete)) |
969 | 395 { |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
396 s += "DELETE "; |
969 | 397 } |
398 | |
978 | 399 target = s;*/ |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
400 |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
401 for (Children::const_iterator it = children_.begin(); |
1303 | 402 it != children_.end(); ++it) |
969 | 403 { |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
404 it->second->CreateSiteMap(target[it->first]); |
969 | 405 } |
406 | |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
407 for (Children::const_iterator it = wildcardChildren_.begin(); |
1303 | 408 it != wildcardChildren_.end(); ++it) |
980
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
409 { |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
410 it->second->CreateSiteMap(target["<" + it->first + ">"]); |
f1ff2a2f06cd
use RestApiHierarchy inside RestApi
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
411 } |
969 | 412 } |
413 | |
4300 | 414 bool RestApiHierarchy::GetDirectory(Json::Value &result, const UriComponents &uri) |
415 { | |
416 return GetDirectory(result, uri, 0); | |
417 } | |
418 | |
978 | 419 |
420 bool RestApiHierarchy::LookupResource(const UriComponents& uri, | |
421 IVisitor& visitor) | |
969 | 422 { |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4303
diff
changeset
|
423 HttpToolbox::Arguments components; |
978 | 424 return LookupResource(components, uri, visitor, 0); |
969 | 425 } |
426 | |
978 | 427 |
428 | |
429 namespace | |
430 { | |
431 // Anonymous namespace to avoid clashes between compilation modules | |
432 | |
433 class AcceptedMethodsVisitor : public RestApiHierarchy::IVisitor | |
434 { | |
435 private: | |
436 std::set<HttpMethod>& methods_; | |
437 | |
438 public: | |
4203
4d42408da117
improving const-correctness in ParsedDicomFile
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4119
diff
changeset
|
439 explicit AcceptedMethodsVisitor(std::set<HttpMethod>& methods) : |
4d42408da117
improving const-correctness in ParsedDicomFile
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4119
diff
changeset
|
440 methods_(methods) |
978 | 441 { |
442 } | |
443 | |
444 virtual bool Visit(const RestApiHierarchy::Resource& resource, | |
445 const UriComponents& uri, | |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4303
diff
changeset
|
446 const HttpToolbox::Arguments& components, |
978 | 447 const UriComponents& trailing) |
448 { | |
449 if (trailing.size() == 0) // Ignore universal handlers | |
450 { | |
451 if (resource.HasHandler(HttpMethod_Get)) | |
452 { | |
453 methods_.insert(HttpMethod_Get); | |
454 } | |
455 | |
456 if (resource.HasHandler(HttpMethod_Post)) | |
457 { | |
458 methods_.insert(HttpMethod_Post); | |
459 } | |
460 | |
461 if (resource.HasHandler(HttpMethod_Put)) | |
462 { | |
463 methods_.insert(HttpMethod_Put); | |
464 } | |
465 | |
466 if (resource.HasHandler(HttpMethod_Delete)) | |
467 { | |
468 methods_.insert(HttpMethod_Delete); | |
469 } | |
470 } | |
471 | |
472 return false; // Continue to check all the possible ways to access this URI | |
473 } | |
474 }; | |
475 } | |
476 | |
477 void RestApiHierarchy::GetAcceptedMethods(std::set<HttpMethod>& methods, | |
478 const UriComponents& uri) | |
969 | 479 { |
4330
a01b1c9cbef4
moving generic type definitions from IHttpHandler to HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4303
diff
changeset
|
480 HttpToolbox::Arguments components; |
978 | 481 AcceptedMethodsVisitor visitor(methods); |
1444
b2b09a3dbd8e
refactoring: OrthancHttpHandler inside OrthancServer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1441
diff
changeset
|
482 if (LookupResource(components, uri, visitor, 0)) |
978 | 483 { |
1444
b2b09a3dbd8e
refactoring: OrthancHttpHandler inside OrthancServer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1441
diff
changeset
|
484 Json::Value d; |
b2b09a3dbd8e
refactoring: OrthancHttpHandler inside OrthancServer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1441
diff
changeset
|
485 if (GetDirectory(d, uri)) |
b2b09a3dbd8e
refactoring: OrthancHttpHandler inside OrthancServer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1441
diff
changeset
|
486 { |
b2b09a3dbd8e
refactoring: OrthancHttpHandler inside OrthancServer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1441
diff
changeset
|
487 methods.insert(HttpMethod_Get); |
b2b09a3dbd8e
refactoring: OrthancHttpHandler inside OrthancServer
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1441
diff
changeset
|
488 } |
978 | 489 } |
490 } | |
4300 | 491 |
969 | 492 } |