Mercurial > hg > orthanc-stone
annotate Framework/Oracle/OrthancRestApiCommand.cpp @ 988:4c9b4c4de814 toa2019090901
Fixed bug in DicomStructureSet that prevented points from being added to polygons
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Mon, 09 Sep 2019 16:15:28 +0200 |
parents | 13e078adfb94 |
children | 4383382db01d 2d8ab34c8c91 |
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 OrthancRestApiCommand::SuccessMessage::SuccessMessage(const OrthancRestApiCommand& command, | |
32 const HttpHeaders& answerHeaders, | |
33 std::string& answer) : | |
34 OriginMessage(command), | |
35 headers_(answerHeaders), | |
36 answer_(answer) | |
37 { | |
38 } | |
39 | |
40 | |
41 void OrthancRestApiCommand::SuccessMessage::ParseJsonBody(Json::Value& target) const | |
42 { | |
43 Json::Reader reader; | |
44 if (!reader.parse(answer_, target)) | |
45 { | |
46 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadFileFormat); | |
47 } | |
48 } | |
49 | |
50 | |
51 OrthancRestApiCommand::OrthancRestApiCommand() : | |
52 method_(Orthanc::HttpMethod_Get), | |
53 uri_("/"), | |
959
13e078adfb94
Better error log in fetch failure callback +
Benjamin Golinvaux <bgo@osimis.io>
parents:
956
diff
changeset
|
54 timeout_(600) |
746 | 55 { |
56 } | |
57 | |
58 | |
59 void OrthancRestApiCommand::SetBody(const Json::Value& json) | |
60 { | |
61 Json::FastWriter writer; | |
62 body_ = writer.write(json); | |
63 } | |
64 | |
65 | |
66 const std::string& OrthancRestApiCommand::GetBody() const | |
67 { | |
68 if (method_ == Orthanc::HttpMethod_Post || | |
69 method_ == Orthanc::HttpMethod_Put) | |
70 { | |
71 return body_; | |
72 } | |
73 else | |
74 { | |
956
a7351ad54960
Made IsContextLost automatically set the flag by checking with the emscripten
Benjamin Golinvaux <bgo@osimis.io>
parents:
846
diff
changeset
|
75 LOG(ERROR) << "OrthancRestApiCommand::GetBody(): method_ not _Post or _Put"; |
746 | 76 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); |
77 } | |
78 } | |
79 } |