From d7edb4799b63b9bbde25a0d04603476aaf8acd50 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 9 Aug 2009 18:52:17 +0200 Subject: Renamed UserBackendMysql to UserDBBackendMysql and UserBackendHome to UserConfigBackendHome --- src/modules/UserBackendHome/UserBackendHome.h | 70 --------------------------- 1 file changed, 70 deletions(-) delete mode 100644 src/modules/UserBackendHome/UserBackendHome.h (limited to 'src/modules/UserBackendHome/UserBackendHome.h') diff --git a/src/modules/UserBackendHome/UserBackendHome.h b/src/modules/UserBackendHome/UserBackendHome.h deleted file mode 100644 index 74fa2cb..0000000 --- a/src/modules/UserBackendHome/UserBackendHome.h +++ /dev/null @@ -1,70 +0,0 @@ -/* - * UserBackendMysql.h - * - * Copyright (C) 2008 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_MODULES_USERBACKENDHOME_USERBACKENDHOME_H_ -#define MAD_MODULES_USERBACKENDHOME_USERBACKENDHOME_H_ - -#include -#include - -#include -#include - -#include - -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; - unsigned long dirMode; - - 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"), dirMode(0755) { - application->getConfigManager()->registerConfigurable(this); - } - - virtual ~UserBackendHome() { - application->getConfigManager()->unregisterConfigurable(this); - } -}; - -} -} -} - -#endif /* MAD_MODULES_USERBACKENDHOME_USERBACKENDHOME_H_ */ -- cgit v1.2.3