diff options
author | Matthias Schiffer <matthias@gamezock.de> | 2009-07-17 19:00:40 +0200 |
---|---|---|
committer | Matthias Schiffer <matthias@gamezock.de> | 2009-07-17 19:00:40 +0200 |
commit | fdd7fbae926821be7d5229d5cba04396e6f00f99 (patch) | |
tree | 73edc33360d5f83f0a62b1f1a5b89c4b9b5e9e07 /src/modules/UserBackendHome/UserBackendHome.h | |
parent | df114cc52f48645c9c6736faceef8920c9441cbe (diff) | |
download | mad-fdd7fbae926821be7d5229d5cba04396e6f00f99.tar mad-fdd7fbae926821be7d5229d5cba04396e6f00f99.zip |
UserBackendHome hinzugefügt
Modul zur Erstellung von Home-Verzeichnissen implementert
Diffstat (limited to 'src/modules/UserBackendHome/UserBackendHome.h')
-rw-r--r-- | src/modules/UserBackendHome/UserBackendHome.h | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/src/modules/UserBackendHome/UserBackendHome.h b/src/modules/UserBackendHome/UserBackendHome.h new file mode 100644 index 0000000..1e2b0a3 --- /dev/null +++ b/src/modules/UserBackendHome/UserBackendHome.h @@ -0,0 +1,69 @@ +/* + * UserBackendMysql.h + * + * Copyright (C) 2008 Matthias Schiffer <matthias@gamezock.de> + * + * 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 <http://www.gnu.org/licenses/>. + */ + +#ifndef MAD_MODULES_USERBACKENDHOME_USERBACKENDHOME_H_ +#define MAD_MODULES_USERBACKENDHOME_USERBACKENDHOME_H_ + +#include <Common/UserConfigBackend.h> +#include <Common/Application.h> + +#include <Core/Configurable.h> +#include <Core/ConfigManager.h> + +#include <boost/thread/mutex.hpp> + +namespace Mad { +namespace Modules { +namespace UserBackendHome { + +class UserBackendHome : public Common::UserConfigBackend, private Core::Configurable, private boost::noncopyable { + private: + Common::Application *application; + + std::string skeleton; + std::string homeDir; + + boost::mutex mutex; + + void setOwnerAndCopyMode(const std::string &source, const std::string &dest, const Common::UserInfo &userInfo, bool isSymlink); + + void migrateOwner(const std::string &path, const Common::UserInfo &oldUserInfo, const Common::UserInfo &userInfo, bool isSymlink); + + protected: + virtual bool handleConfigEntry(const Core::ConfigEntry &entry, bool handled); + + virtual void addUser(const Common::UserInfo &userInfo) throw(Core::Exception); + virtual void updateUser(const Common::UserInfo &oldUserInfo, const Common::UserInfo &userInfo) throw(Core::Exception); + virtual void deleteUser(const Common::UserInfo &userInfo) throw(Core::Exception); + + public: + UserBackendHome(Common::Application *application0) : application(application0), homeDir("/home") { + application->getConfigManager()->registerConfigurable(this); + } + + virtual ~UserBackendHome() { + application->getConfigManager()->unregisterConfigurable(this); + } +}; + +} +} +} + +#endif /* MAD_MODULES_USERBACKENDHOME_USERBACKENDHOME_H_ */ |