Mercurial > hg > orthanc
annotate Core/RestApi/RestApiCall.h @ 1452:b737acb13da5
refactoring of the main function
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 02 Jul 2015 11:35:41 +0200 |
parents | f3672356c121 |
children | 3232f1c995a5 |
rev | line source |
---|---|
974 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
1288
6e7e5ed91c2d
upgrade to year 2015
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
3 * Copyright (C) 2012-2015 Sebastien Jodogne, Medical Physics |
6e7e5ed91c2d
upgrade to year 2015
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
978
diff
changeset
|
4 * Department, University Hospital of Liege, Belgium |
974 | 5 * |
6 * This program is free software: you can redistribute it and/or | |
7 * modify it under the terms of the GNU General Public License as | |
8 * published by the Free Software Foundation, either version 3 of the | |
9 * License, or (at your option) any later version. | |
10 * | |
11 * In addition, as a special exception, the copyright holders of this | |
12 * program give permission to link the code of its release with the | |
13 * OpenSSL project's "OpenSSL" library (or with modified versions of it | |
14 * that use the same license as the "OpenSSL" library), and distribute | |
15 * the linked executables. You must obey the GNU General Public License | |
16 * in all respects for all of the code used other than "OpenSSL". If you | |
17 * modify file(s) with this exception, you may extend this exception to | |
18 * your version of the file(s), but you are not obligated to do so. If | |
19 * you do not wish to do so, delete this exception statement from your | |
20 * version. If you delete this exception statement from all source files | |
21 * in the program, then also delete it here. | |
22 * | |
23 * This program is distributed in the hope that it will be useful, but | |
24 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
26 * General Public License for more details. | |
27 * | |
28 * You should have received a copy of the GNU General Public License | |
29 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
30 **/ | |
31 | |
32 | |
33 #pragma once | |
34 | |
1441
f3672356c121
refactoring: IHttpHandler and HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1368
diff
changeset
|
35 #include "../HttpServer/IHttpHandler.h" |
f3672356c121
refactoring: IHttpHandler and HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1368
diff
changeset
|
36 #include "../HttpServer/HttpToolbox.h" |
974 | 37 #include "RestApiPath.h" |
38 #include "RestApiOutput.h" | |
39 | |
978 | 40 #include <boost/noncopyable.hpp> |
41 | |
974 | 42 namespace Orthanc |
43 { | |
44 class RestApi; | |
45 | |
978 | 46 class RestApiCall : public boost::noncopyable |
974 | 47 { |
48 private: | |
49 RestApiOutput& output_; | |
50 RestApi& context_; | |
1441
f3672356c121
refactoring: IHttpHandler and HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1368
diff
changeset
|
51 const IHttpHandler::Arguments& httpHeaders_; |
f3672356c121
refactoring: IHttpHandler and HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1368
diff
changeset
|
52 const IHttpHandler::Arguments& uriComponents_; |
974 | 53 const UriComponents& trailing_; |
54 const UriComponents& fullUri_; | |
55 | |
56 protected: | |
57 static bool ParseJsonRequestInternal(Json::Value& result, | |
58 const char* request); | |
59 | |
60 public: | |
61 RestApiCall(RestApiOutput& output, | |
62 RestApi& context, | |
1441
f3672356c121
refactoring: IHttpHandler and HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1368
diff
changeset
|
63 const IHttpHandler::Arguments& httpHeaders, |
f3672356c121
refactoring: IHttpHandler and HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1368
diff
changeset
|
64 const IHttpHandler::Arguments& uriComponents, |
974 | 65 const UriComponents& trailing, |
66 const UriComponents& fullUri) : | |
67 output_(output), | |
68 context_(context), | |
69 httpHeaders_(httpHeaders), | |
70 uriComponents_(uriComponents), | |
71 trailing_(trailing), | |
72 fullUri_(fullUri) | |
73 { | |
74 } | |
75 | |
76 RestApiOutput& GetOutput() | |
77 { | |
78 return output_; | |
79 } | |
80 | |
81 RestApi& GetContext() | |
82 { | |
83 return context_; | |
84 } | |
85 | |
86 const UriComponents& GetFullUri() const | |
87 { | |
88 return fullUri_; | |
89 } | |
90 | |
91 const UriComponents& GetTrailingUri() const | |
92 { | |
93 return trailing_; | |
94 } | |
95 | |
96 std::string GetUriComponent(const std::string& name, | |
97 const std::string& defaultValue) const | |
98 { | |
1441
f3672356c121
refactoring: IHttpHandler and HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1368
diff
changeset
|
99 return HttpToolbox::GetArgument(uriComponents_, name, defaultValue); |
974 | 100 } |
101 | |
102 std::string GetHttpHeader(const std::string& name, | |
103 const std::string& defaultValue) const | |
104 { | |
1441
f3672356c121
refactoring: IHttpHandler and HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1368
diff
changeset
|
105 return HttpToolbox::GetArgument(httpHeaders_, name, defaultValue); |
974 | 106 } |
107 | |
1441
f3672356c121
refactoring: IHttpHandler and HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1368
diff
changeset
|
108 const IHttpHandler::Arguments& GetHttpHeaders() const |
974 | 109 { |
110 return httpHeaders_; | |
111 } | |
112 | |
1441
f3672356c121
refactoring: IHttpHandler and HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1368
diff
changeset
|
113 void ParseCookies(IHttpHandler::Arguments& result) const |
974 | 114 { |
1441
f3672356c121
refactoring: IHttpHandler and HttpToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1368
diff
changeset
|
115 HttpToolbox::ParseCookies(result, httpHeaders_); |
974 | 116 } |
117 | |
1368 | 118 std::string FlattenUri() const; |
119 | |
974 | 120 virtual bool ParseJsonRequest(Json::Value& result) const = 0; |
121 }; | |
122 } |