Mercurial > hg > orthanc-stone
annotate Framework/Oracle/HttpCommand.cpp @ 1100:08cc0d47aa94 broker
exception handling in IObservable::EmitMessage()
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 25 Oct 2019 18:06:30 +0200 |
parents | e6d2ff8f1ab4 |
children | 87fbeb823375 |
rev | line source |
---|---|
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 } | |
1079
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
79 |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
80 |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
81 const std::string& HttpCommand::GetUsername() const |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
82 { |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
83 if (HasCredentials()) |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
84 { |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
85 return username_; |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
86 } |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
87 else |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
88 { |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
89 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
90 } |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
91 } |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
92 |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
93 |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
94 const std::string& HttpCommand::GetPassword() const |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
95 { |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
96 if (HasCredentials()) |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
97 { |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
98 return password_; |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
99 } |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
100 else |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
101 { |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
102 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
103 } |
e6d2ff8f1ab4
credentials in HttpCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
979
diff
changeset
|
104 } |
979 | 105 } |