summaryrefslogtreecommitdiffstats
path: root/src/modules/UserBackendHome/UserBackendHome.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/UserBackendHome/UserBackendHome.h')
-rw-r--r--src/modules/UserBackendHome/UserBackendHome.h69
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_ */