Mercurial > hg > orthanc-authorization
view Plugin/PermissionParser.h @ 194:85859ec3aa7e
added support for roles/permissions edition
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Fri, 14 Jun 2024 16:26:53 +0200 |
parents | c4b908970ae4 |
children | 2f1e872e8eaa |
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 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, 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/>. **/ #pragma once #include "AuthorizationParserBase.h" #include <boost/regex.hpp> #include <boost/thread/mutex.hpp> namespace OrthancPlugins { struct PermissionPattern { OrthancPluginHttpMethod method; boost::regex pattern; std::set<std::string> permissions; PermissionPattern(const OrthancPluginHttpMethod& method, const std::string& patternRegex, const std::string& permissions); }; class PermissionParser { private: mutable boost::mutex mutex_; std::list<PermissionPattern> permissionsPattern_; std::set<std::string> permissionsList_; std::string dicomWebRoot_; std::string oe2Root_; public: PermissionParser(const std::string& dicomWebRoot, const std::string& oe2Root); void Add(const std::string& method, const std::string& patternRegex, const std::string& permission); void Add(const Json::Value& configuration, const IAuthorizationParser* authorizationParser); bool Parse(std::set<std::string>& permissions, std::string& matchedPattern, const OrthancPluginHttpMethod& method, const std::string& uri) const; const std::set<std::string>& GetPermissionsList() const { return permissionsList_; } }; }