Mercurial > hg > orthanc-stone
annotate OrthancStone/Sources/Oracle/OrthancRestApiCommand.cpp @ 2110:352cb0fa57b2
fixed handling of DefineSourceBasenameForTarget
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 20 Dec 2023 22:20:58 +0100 |
parents | 07964689cb0b |
children | c23eef785569 |
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 | |
2077
07964689cb0b
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1871
diff
changeset
|
5 * Copyright (C) 2017-2023 Osimis S.A., Belgium |
07964689cb0b
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1871
diff
changeset
|
6 * Copyright (C) 2021-2023 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
746 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
9 * modify it under the terms of the GNU Lesser General Public License |
746 | 10 * as published by the Free Software Foundation, either version 3 of |
11 * the License, or (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, but | |
14 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
16 * Lesser General Public License for more details. |
1596
4fb8fdf03314
removed annoying whitespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
17 * |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
18 * You should have received a copy of the GNU Lesser General Public |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
19 * License along with this program. If not, see |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
20 * <http://www.gnu.org/licenses/>. |
746 | 21 **/ |
22 | |
23 | |
24 #include "OrthancRestApiCommand.h" | |
25 | |
1624 | 26 #include <Logging.h> |
1455
30deba7bc8e2
simplifying include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1315
diff
changeset
|
27 #include <OrthancException.h> |
1737
ef2f56c0311c
remove calls to deprecated classes of JsonCpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1624
diff
changeset
|
28 #include <Toolbox.h> |
746 | 29 |
30 | |
31 namespace OrthancStone | |
32 { | |
33 void OrthancRestApiCommand::SuccessMessage::ParseJsonBody(Json::Value& target) const | |
34 { | |
1737
ef2f56c0311c
remove calls to deprecated classes of JsonCpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1624
diff
changeset
|
35 if (!Orthanc::Toolbox::ReadJson(target, answer_)) |
746 | 36 { |
37 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadFileFormat); | |
38 } | |
39 } | |
40 | |
41 | |
42 OrthancRestApiCommand::OrthancRestApiCommand() : | |
43 method_(Orthanc::HttpMethod_Get), | |
44 uri_("/"), | |
1097
4383382db01d
deprecating LockingEmitter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
959
diff
changeset
|
45 timeout_(600), |
4383382db01d
deprecating LockingEmitter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
959
diff
changeset
|
46 applyPlugins_(false) |
746 | 47 { |
48 } | |
49 | |
50 | |
51 void OrthancRestApiCommand::SetBody(const Json::Value& json) | |
52 { | |
1737
ef2f56c0311c
remove calls to deprecated classes of JsonCpp
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1624
diff
changeset
|
53 Orthanc::Toolbox::WriteFastJson(body_, json); |
746 | 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 } |