Mercurial > hg > orthanc-authorization
view Plugin/DefaultAuthorizationParser.cpp @ 150:9be1ee2b8fe1 0.7.0
0.7.0
author | Alain Mazy <am@osimis.io> |
---|---|
date | Fri, 16 Feb 2024 08:39:33 +0100 |
parents | 423531fb1200 |
children | 9f686ee4b158 |
line wrap: on
line source
/** * Advanced authorization plugin for Orthanc * Copyright (C) 2017-2023 Osimis S.A., Belgium * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. **/ #include "DefaultAuthorizationParser.h" #include <OrthancException.h> #include <HttpServer/HttpToolbox.h> #include <Logging.h> namespace OrthancPlugins { DefaultAuthorizationParser::DefaultAuthorizationParser(ICacheFactory& factory, const std::string& dicomWebRoot) : AuthorizationParserBase(factory), resourcesPattern_("^/(patients|studies|series|instances)/([a-f0-9-]+)(|/.*)$"), seriesPattern_("^/(web-viewer/series|web-viewer/is-stable-series|wsi/pyramids|wsi/tiles)/([a-f0-9-]+)(|/.*)$"), instancesPattern_("^/web-viewer/instances/[a-z0-9]+-([a-f0-9-]+)_[0-9]+$"), osimisViewerSeries_("^/osimis-viewer/series/([a-f0-9-]+)(|/.*)$"), osimisViewerImages_("^/osimis-viewer/(images|custom-command)/([a-f0-9-]+)(|/.*)$"), osimisViewerStudies_("^/osimis-viewer/studies/([a-f0-9-]+)(|/.*)$"), listOfResourcesPattern_("^/(patients|studies|series|instances)(|/)$"), createBulkPattern_("^/tools/(create-archive|create-media|create-media-extended)(|/)$") { std::string tmp = dicomWebRoot; while (!tmp.empty() && tmp[tmp.size() - 1] == '/') { tmp = tmp.substr(0, tmp.size() - 1); } // note: if you add new DICOMWeb routes here, add them in the DefaultConfiguration.json too dicomWebStudies_ = boost::regex( "^" + tmp + "/studies/([.0-9]+)(|/series|/metadata)(|/)$"); dicomWebSeries_ = boost::regex( "^" + tmp + "/studies/([.0-9]+)/series/([.0-9]+)(|/instances|/rendered|/metadata)(|/)$"); dicomWebInstances_ = boost::regex( "^" + tmp + "/studies/([.0-9]+)/series/([.0-9]+)/instances/([.0-9]+)(|/|/frames/.*|/rendered|/metadata|/bulk/.*)(|/)$"); dicomWebQidoRsFind_ = boost::regex( "^" + tmp + "/(studies|series|instances)(|/)$"); } void DefaultAuthorizationParser::GetSingleResourcePatterns(std::vector<boost::regex>& patterns) const { patterns.push_back(resourcesPattern_); patterns.push_back(seriesPattern_); patterns.push_back(instancesPattern_); patterns.push_back(osimisViewerSeries_); patterns.push_back(osimisViewerImages_); patterns.push_back(osimisViewerStudies_); patterns.push_back(dicomWebStudies_); patterns.push_back(dicomWebSeries_); patterns.push_back(dicomWebInstances_); } bool DefaultAuthorizationParser::IsListOfResources(const std::string& uri) const { if (boost::regex_match(uri, listOfResourcesPattern_)) { return true; } return false; } bool DefaultAuthorizationParser::Parse(AccessedResources& target, const std::string& uri, const std::map<std::string, std::string>& getArguments) { // The mutex below should not be necessary, but we prefer to // ensure thread safety in boost::regex boost::mutex::scoped_lock lock(mutex_); boost::smatch what; if (boost::regex_match(uri, what, resourcesPattern_)) { AccessLevel level = StringToAccessLevel(what[1]); switch (level) { case AccessLevel_Instance: AddOrthancInstance(target, what[2]); break; case AccessLevel_Series: AddOrthancSeries(target, what[2]); break; case AccessLevel_Study: AddOrthancStudy(target, what[2]); break; case AccessLevel_Patient: AddOrthancPatient(target, what[2]); break; default: throw Orthanc::OrthancException(Orthanc::ErrorCode_InternalError); } return true; } else if (boost::regex_match(uri, what, seriesPattern_)) { AddOrthancSeries(target, what[2]); return true; } else if (boost::regex_match(uri, what, instancesPattern_)) { AddOrthancInstance(target, what[1]); return true; } else if (boost::regex_match(uri, what, dicomWebStudies_)) { AddDicomStudy(target, what[1]); return true; } else if (boost::regex_match(uri, what, dicomWebSeries_)) { AddDicomSeries(target, what[1], what[2]); return true; } else if (boost::regex_match(uri, what, dicomWebInstances_)) { AddDicomInstance(target, what[1], what[2], what[3]); return true; } else if (boost::regex_match(uri, what, osimisViewerSeries_)) { AddOrthancSeries(target, what[1]); return true; } else if (boost::regex_match(uri, what, osimisViewerStudies_)) { AddOrthancStudy(target, what[1]); return true; } else if (boost::regex_match(uri, what, osimisViewerImages_)) { AddOrthancInstance(target, what[2]); return true; } else if (boost::regex_match(uri, what, createBulkPattern_)) { std::string resourcesIdsString = Orthanc::HttpToolbox::GetArgument(getArguments, "resources", ""); std::set<std::string> resourcesIds; Orthanc::Toolbox::SplitString(resourcesIds, resourcesIdsString, ','); for (std::set<std::string>::const_iterator it = resourcesIds.begin(); it != resourcesIds.end(); ++it) { AddOrthancUnknownResource(target, *it); } return true; } else if (boost::regex_match(uri, what, dicomWebQidoRsFind_)) { std::string studyInstanceUid, seriesInstanceUid, sopInstanceUid, patientId; studyInstanceUid = Orthanc::HttpToolbox::GetArgument(getArguments, "0020000D", ""); if (studyInstanceUid.empty()) { studyInstanceUid = Orthanc::HttpToolbox::GetArgument(getArguments, "StudyInstanceUID", ""); } seriesInstanceUid = Orthanc::HttpToolbox::GetArgument(getArguments, "0020000E", ""); if (seriesInstanceUid.empty()) { seriesInstanceUid = Orthanc::HttpToolbox::GetArgument(getArguments, "SeriesInstanceUID", ""); } sopInstanceUid = Orthanc::HttpToolbox::GetArgument(getArguments, "00080018", ""); if (sopInstanceUid.empty()) { sopInstanceUid = Orthanc::HttpToolbox::GetArgument(getArguments, "SOPInstanceUID", ""); } patientId = Orthanc::HttpToolbox::GetArgument(getArguments, "00100010", ""); if (patientId.empty()) { patientId = Orthanc::HttpToolbox::GetArgument(getArguments, "PatientID", ""); } if (!sopInstanceUid.empty() && sopInstanceUid.find('*') != std::string::npos) { LOG(WARNING) << "Authorization plugin: unable to handle wildcards in SOPInstanceUID"; sopInstanceUid = ""; // remove the constrain, it will be considered as a 'system' access } if (!seriesInstanceUid.empty() && seriesInstanceUid.find('*') != std::string::npos) { LOG(WARNING) << "Authorization plugin: unable to handle wildcards in SeriesInstanceUID"; seriesInstanceUid = ""; // remove the constrain, it will be considered as a 'system' access } if (!studyInstanceUid.empty() && studyInstanceUid.find('*') != std::string::npos) { LOG(WARNING) << "Authorization plugin: unable to handle wildcards in StudyInstanceUID"; studyInstanceUid = ""; // remove the constrain, it will be considered as a 'system' access } if (!patientId.empty() && patientId.find('*') != std::string::npos) { LOG(WARNING) << "Authorization plugin: unable to handle wildcards in PatientID"; patientId = ""; // remove the constrain, it will be considered as a 'system' access } if (!sopInstanceUid.empty() && !seriesInstanceUid.empty() && !studyInstanceUid.empty()) { AddDicomInstance(target, studyInstanceUid, seriesInstanceUid, sopInstanceUid); return true; } else if (!seriesInstanceUid.empty() && !studyInstanceUid.empty()) { AddDicomSeries(target, studyInstanceUid, seriesInstanceUid); return true; } else if (!studyInstanceUid.empty()) { AddDicomStudy(target, studyInstanceUid); return true; } else if (!patientId.empty()) { AddDicomPatient(target, patientId); return true; } } // Unknown type of resource: Consider it as a system access // Remove the trailing slashes if need be std::string s = uri; while (!s.empty() && s[s.length() - 1] == '/') { s = s.substr(0, s.length() - 1); } std::set<std::string> labels; target.push_back(AccessedResource(AccessLevel_System, s, "", labels)); return true; } }