/* * AuthManager.h * * Copyright (C) 2009 Matthias Schiffer * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along * with this program. If not, see . */ #ifndef MAD_COMMON_AUTHMANAGER_H_ #define MAD_COMMON_AUTHMANAGER_H_ #include "export.h" #include "AuthBackend.h" #include "AuthContext.h" #include #include #include #include #include #include namespace Mad { namespace Common { class Application; class MAD_COMMON_EXPORT AuthManager : private boost::noncopyable { private: friend class Application; class DenyBackend : public AuthBackend { private: const static std::vector methods; protected: virtual const std::vector& getMethods() const { return methods; } virtual const std::vector& getSubMethods(const std::string& /*method*/) const throw(Core::Exception) { throw Core::Exception(Core::Exception::NOT_IMPLEMENTED); } virtual boost::shared_ptr authenticate(const std::string& /*method*/, const std::string& /*subMethod*/, const std::string& /*user*/, const std::vector& /*data*/, std::vector& /*response*/, boost::shared_ptr /*context*/) throw(Core::Exception) { throw Core::Exception(Core::Exception::NOT_IMPLEMENTED); } }; boost::shared_ptr denyBackend; boost::shared_ptr backend; boost::shared_mutex mutex; AuthManager() : denyBackend(new DenyBackend), backend(denyBackend) {} public: void registerBackend(boost::shared_ptr newBackend); void unregisterBackend(boost::shared_ptr oldBackend); std::vector getMethods(); std::vector getSubMethods(const std::string &method) throw(Core::Exception); boost::shared_ptr authenticate(const std::string &method, const std::string &subMethod, const std::string &user, const std::vector &data, std::vector &response, boost::shared_ptr context = boost::shared_ptr()) throw(Core::Exception); }; } } #endif /* MAD_COMMON_AUTHMANAGER_H_ */