979
|
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 "HttpCommand.h"
|
|
23
|
|
24 #include <Core/OrthancException.h>
|
|
25
|
|
26 #include <json/reader.h>
|
|
27 #include <json/writer.h>
|
|
28
|
|
29 namespace OrthancStone
|
|
30 {
|
|
31 HttpCommand::SuccessMessage::SuccessMessage(const HttpCommand& command,
|
|
32 const HttpHeaders& answerHeaders,
|
|
33 std::string& answer) :
|
|
34 OriginMessage(command),
|
|
35 headers_(answerHeaders),
|
|
36 answer_(answer)
|
|
37 {
|
|
38 }
|
|
39
|
|
40
|
|
41 void HttpCommand::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 HttpCommand::HttpCommand() :
|
|
52 method_(Orthanc::HttpMethod_Get),
|
|
53 url_("/"),
|
|
54 timeout_(600)
|
|
55 {
|
|
56 }
|
|
57
|
|
58
|
|
59 void HttpCommand::SetBody(const Json::Value& json)
|
|
60 {
|
|
61 Json::FastWriter writer;
|
|
62 body_ = writer.write(json);
|
|
63 }
|
|
64
|
|
65
|
|
66 const std::string& HttpCommand::GetBody() const
|
|
67 {
|
|
68 if (method_ == Orthanc::HttpMethod_Post ||
|
|
69 method_ == Orthanc::HttpMethod_Put)
|
|
70 {
|
|
71 return body_;
|
|
72 }
|
|
73 else
|
|
74 {
|
|
75 LOG(ERROR) << "HttpCommand::GetBody(): method_ not _Post or _Put";
|
|
76 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls);
|
|
77 }
|
|
78 }
|
|
79 }
|