Mercurial > hg > orthanc-stone
annotate Framework/Oracle/OrthancRestApiCommand.cpp @ 1145:4f99c7905f8d broker
mingw qt
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 12 Nov 2019 18:28:46 +0100 |
parents | 87fbeb823375 |
children | 0ca50d275b9a |
rev | line source |
---|---|
746 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
5 * Copyright (C) 2017-2019 Osimis S.A., Belgium | |
6 * | |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU Affero General Public License | |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
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 | |
15 * Affero General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Affero General Public License | |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
22 #include "OrthancRestApiCommand.h" | |
23 | |
24 #include <Core/OrthancException.h> | |
25 | |
26 #include <json/reader.h> | |
27 #include <json/writer.h> | |
28 | |
29 namespace OrthancStone | |
30 { | |
31 void OrthancRestApiCommand::SuccessMessage::ParseJsonBody(Json::Value& target) const | |
32 { | |
33 Json::Reader reader; | |
34 if (!reader.parse(answer_, target)) | |
35 { | |
36 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadFileFormat); | |
37 } | |
38 } | |
39 | |
40 | |
41 OrthancRestApiCommand::OrthancRestApiCommand() : | |
42 method_(Orthanc::HttpMethod_Get), | |
43 uri_("/"), | |
1097
4383382db01d
deprecating LockingEmitter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
959
diff
changeset
|
44 timeout_(600), |
4383382db01d
deprecating LockingEmitter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
959
diff
changeset
|
45 applyPlugins_(false) |
746 | 46 { |
47 } | |
48 | |
49 | |
50 void OrthancRestApiCommand::SetBody(const Json::Value& json) | |
51 { | |
52 Json::FastWriter writer; | |
53 body_ = writer.write(json); | |
54 } | |
55 | |
56 | |
57 const std::string& OrthancRestApiCommand::GetBody() const | |
58 { | |
59 if (method_ == Orthanc::HttpMethod_Post || | |
60 method_ == Orthanc::HttpMethod_Put) | |
61 { | |
62 return body_; | |
63 } | |
64 else | |
65 { | |
956
a7351ad54960
Made IsContextLost automatically set the flag by checking with the emscripten
Benjamin Golinvaux <bgo@osimis.io>
parents:
846
diff
changeset
|
66 LOG(ERROR) << "OrthancRestApiCommand::GetBody(): method_ not _Post or _Put"; |
746 | 67 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); |
68 } | |
69 } | |
70 } |