/* Nutzerverwaltung - A Generic User Manager Copyright (c) 2016 Ulrich Hilger 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 . */ package de.uhilger.um.api; import de.uhilger.baselink.GenericRecord; import de.uhilger.baselink.PersistenceManager; import de.uhilger.baselink.Record; import de.uhilger.transit.web.WebKontext; import de.uhilger.um.App; import de.uhilger.um.Digester; import de.uhilger.um.daten.User; import de.uhilger.um.daten.UserRole; import java.sql.Connection; import java.util.List; import java.util.Properties; import javax.servlet.ServletContext; /** *

Die Methoden der Klasse UserMgr sind * die 'Fassade', die über Transit als Programmschnittstelle * (Application Programming Interface, API) * nach außen bereitgestellt wird. UserMgr dient weitgehend * als 'Durchreiche' für die Funktionalität anderer Klassen.

* *

* Der UserMgr erhält die benötigten Methoden aus dem ServletContext. * Auf diese Weise sind keine statischen Abhängigkeiten in den Code * gewandert. Die folgenden Elemente werden vom UserMgr im ServletContext * erwartet: * * [noch auspraegen] * * PersistenceManager * SQL-Properties * Digester *

* * @author Copyright (c) Ulrich Hilger, http://uhilger.de * @author Published under the terms and conditions of the * GNU Affero * General Public License * * @version 2, December 27, 2016 */ public class UserMgr implements WebKontext { private ServletContext ctx; private static final Record UserMapper = new GenericRecord(User.class); private static final Record UserRoleMapper = new GenericRecord(UserRole.class); /** Name, unter dem das Properties-Objekt mit den SQL-Befehlen im ServletContext hinterlegt ist */ public static final String UM_SQL_PROPERTIES = "umSqlProperties"; /** Name, unter dem das Zugriffsobjekt zur Datenbank im ServletContext hinterlegt ist */ public static final String UM_DB = "umDb"; public static final String SQL_GET_USER_LIST = "getUserList"; public static final String SQL_GET_USER_NAME_LIST = "getUserNameList"; public static final String SQL_GET_ROLE_LIST = "getRoleList"; public static final String SQL_GET_USER_ROLES = "getUserRoles"; public static final String SQL_DELETE_USER = "deleteUser"; public static final String SQL_DELETE_USER_ROLES = "deleteUserRoles"; /* ----------- Benutzer -------------- */ public User createUser(User user) { String kw = user.getPw(); String digestedPw = App.getDigester().digest(kw, Digester.MD5, null); user.setPw(digestedPw); App.getDatabase().insert(user, UserMapper); return user; } public List getUserNameList() { String sql = getSqlStatement(SQL_GET_USER_NAME_LIST); return App.getDatabase().select(sql, App.WITHOUT_BLOBS); } public User deleteUser(User user) { PersistenceManager pm = App.getDatabase(); Connection c = pm.getConnection(); pm.startTransaction(c); String sql = getSqlStatement(SQL_DELETE_USER_ROLES); pm.execute(c, sql, user.getId()); User deletedUser = (User) pm.delete(c, user, UserMapper); pm.commit(c); return deletedUser; } /* ------------ Rollen ------------------ */ public UserRole grantRole(String userId, String roleName) { UserRole ur = new UserRole(); ur.setRole(roleName); ur.setUser(userId); App.getDatabase().insert(ur, UserRoleMapper); return ur; } public UserRole revokeRole(String userId, String roleName) { UserRole ur = new UserRole(); ur.setRole(roleName); ur.setUser(userId); App.getDatabase().delete(ur, UserRoleMapper); return ur; } public List getRoleNamesGranted() { String sql = getSqlStatement(SQL_GET_ROLE_LIST); return App.getDatabase().select(sql, App.WITHOUT_BLOBS); } public List getUserRoleNames(String userId) { String sql = getSqlStatement(SQL_GET_USER_ROLES); return App.getDatabase().select(sql, App.WITHOUT_BLOBS, userId); } /* ----------- Helfer ---- */ /** * Ein benanntes SQL-Kommando ermitteln * @param id Name des gewuenschten SQL-Kommandos * @return das SQL-Kommando mit der in id angegebenen Bezeichnung */ private String getSqlStatement(String id) { Properties sql = (Properties) ctx.getAttribute(UserMgr.UM_SQL_PROPERTIES); return sql.getProperty(id); } /* ------------- Implementierung WebKontext ------------- */ @Override public ServletContext getServletContext() { return ctx; } @Override public void setServletContext(ServletContext servletContext) { this.ctx = servletContext; } }