comparison Framework/Oracle/OrthancRestApiCommand.cpp @ 746:d716bfb3e07c

reorganization
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 22 May 2019 12:48:57 +0200
parents
children 17423d072a95
comparison
equal deleted inserted replaced
745:c44c1d2d3598 746:d716bfb3e07c
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_("/"),
54 timeout_(10)
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 {
75 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls);
76 }
77 }
78 }