2010-10-05 21:42:07 +02:00
|
|
|
package de.hsadmin.mods.dom;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.LinkedList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import javax.persistence.EntityManager;
|
|
|
|
import javax.persistence.Query;
|
|
|
|
|
2011-08-12 16:19:21 +02:00
|
|
|
import de.hsadmin.core.model.AbstractEntity;
|
2010-10-05 21:42:07 +02:00
|
|
|
import de.hsadmin.core.model.AbstractModuleImpl;
|
|
|
|
import de.hsadmin.core.model.AuthorisationException;
|
|
|
|
import de.hsadmin.core.model.HSAdminException;
|
|
|
|
import de.hsadmin.mods.dom.Domain.Status;
|
|
|
|
import de.hsadmin.mods.email.EMailAddress;
|
|
|
|
import de.hsadmin.mods.pac.Pac;
|
|
|
|
import de.hsadmin.mods.user.UnixUser;
|
|
|
|
|
|
|
|
public class DomainModuleImpl extends AbstractModuleImpl {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public AbstractEntity initialize(AbstractEntity newEntity) throws AuthorisationException {
|
|
|
|
AbstractEntity newDom = super.initialize(newEntity);
|
|
|
|
if (newDom instanceof Domain) {
|
2011-08-12 16:19:21 +02:00
|
|
|
((Domain) newDom).setUser(getTransaction().getLoginUser());
|
2010-10-05 21:42:07 +02:00
|
|
|
return newDom;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public AbstractEntity find(Class<? extends AbstractEntity> entityClass, Object key) throws HSAdminException {
|
|
|
|
// do query
|
|
|
|
AbstractEntity res = super.find(entityClass, key);
|
|
|
|
|
|
|
|
// check access rights
|
|
|
|
needsReadAccessOn(res, "find");
|
|
|
|
|
|
|
|
// return clean result
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public AbstractEntity findByString(Class<? extends AbstractEntity> entityClass, String key)
|
|
|
|
throws HSAdminException {
|
|
|
|
// do query
|
|
|
|
AbstractEntity res = super.findByString(entityClass, key);
|
|
|
|
|
|
|
|
// check access rights
|
|
|
|
if (res != null)
|
|
|
|
needsReadAccessOn(res, "findByString");
|
|
|
|
|
|
|
|
// return clean result
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public List<AbstractEntity> search(Class<? extends AbstractEntity> entityClass, String condition, String orderBy) throws HSAdminException {
|
|
|
|
// do query
|
|
|
|
if (orderBy == null || orderBy.length() == 0) {
|
|
|
|
orderBy = "ORDER BY obj.name ASC";
|
|
|
|
}
|
|
|
|
List<AbstractEntity> res = super.search(entityClass, condition, orderBy);
|
|
|
|
List<AbstractEntity> ret = new LinkedList<AbstractEntity>();
|
|
|
|
|
|
|
|
// remove entities where login user has no access rights
|
|
|
|
for (AbstractEntity entity : res) {
|
|
|
|
try {
|
|
|
|
needsReadAccessOn(entity, "search");
|
|
|
|
ret.add(entity);
|
|
|
|
} catch (AuthorisationException exc) {
|
|
|
|
} // ignore
|
|
|
|
}
|
|
|
|
|
|
|
|
// return clean result
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public AbstractEntity add(AbstractEntity newEntity) throws HSAdminException {
|
|
|
|
Domain dom = (Domain) newEntity;
|
|
|
|
Date now = new Date();
|
|
|
|
dom.setFiled(now);
|
|
|
|
dom.setStatus(Status.SELF);
|
|
|
|
dom.setStatusChanged(now);
|
2011-08-29 16:09:20 +02:00
|
|
|
dom.setDnsMaster("dns.hostsharing.net");
|
2010-10-05 21:42:07 +02:00
|
|
|
if (dom.getName() == null || dom.getName().length() == 0) {
|
|
|
|
throw new HSAdminException("domain name required");
|
|
|
|
}
|
|
|
|
UnixUser admin = dom.getUser();
|
|
|
|
if (admin == null || admin.getName() == null || admin.getName().length() == 0) {
|
|
|
|
throw new HSAdminException("domain admin required");
|
|
|
|
}
|
|
|
|
EntityManager em = getTransaction().getEntityManager();
|
|
|
|
|
2011-08-12 16:19:21 +02:00
|
|
|
UnixUser loginUser = getTransaction().getLoginUser();
|
2011-07-14 19:42:33 +02:00
|
|
|
if (!loginUser.hasHostmasterRole()) {
|
|
|
|
// search for domains superior to dom
|
|
|
|
Query domainQuery = em.createQuery("SELECT d FROM Domains d WHERE d.name = :domainName");
|
|
|
|
String superior = dom.getName();
|
|
|
|
while (superior.contains(".")) {
|
2011-10-21 16:10:41 +02:00
|
|
|
if (dom.isPacDomain()) {
|
2010-10-05 21:42:07 +02:00
|
|
|
break;
|
2011-07-14 19:42:33 +02:00
|
|
|
}
|
2012-01-04 16:12:47 +01:00
|
|
|
superior = superior.substring(superior.indexOf('.') + 1);
|
2011-07-14 19:42:33 +02:00
|
|
|
domainQuery.setParameter("domainName", superior);
|
|
|
|
List<?> resultList = domainQuery.getResultList();
|
|
|
|
if (resultList.size() > 0) {
|
|
|
|
Domain superDom = (Domain) resultList.get(0);
|
2012-01-04 15:46:45 +01:00
|
|
|
if (superDom.isPacDomain()) {
|
2012-01-04 16:56:15 +01:00
|
|
|
throw new HSAdminException("subdomains to pacdomain " + superDom.getName() + " are not allowed");
|
2012-01-04 15:46:45 +01:00
|
|
|
}
|
2011-07-14 19:42:33 +02:00
|
|
|
if (loginUser.hasPacAdminRoleFor(superDom.getUser().getPac())) {
|
|
|
|
break; // same pac
|
|
|
|
}
|
|
|
|
if (loginUser.hasCustomerRoleFor(superDom.getUser().getPac().getCustomer())) {
|
|
|
|
break; // same customer
|
|
|
|
}
|
2010-10-05 21:42:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Query adminQuery = em.createQuery("SELECT u FROM UnixUsers u WHERE u.name = :adminName");
|
|
|
|
adminQuery.setParameter("adminName", admin.getName());
|
|
|
|
dom.setUser((UnixUser) adminQuery.getSingleResult());
|
|
|
|
needsWriteAccessOn(newEntity, "add");
|
|
|
|
em.persist(dom);
|
2012-01-04 16:12:47 +01:00
|
|
|
if (dom.isPacDomain()) {
|
2012-01-04 17:14:37 +01:00
|
|
|
em.persist(new EMailAddress("owner", "", dom, dom.getUser().getPac().getCustomer().getName().substring(6) + "@hostsharing.net"));
|
|
|
|
em.persist(new EMailAddress("admin", "", dom, dom.getUser().getPac().getName() + "@hostsharing.net"));
|
|
|
|
em.persist(new EMailAddress(dom.getUser().getPac().getName(), "", dom, dom.getUser().getPac().getName() + "@hostsharing.net"));
|
2012-01-04 16:12:47 +01:00
|
|
|
} else {
|
|
|
|
em.persist(new EMailAddress("abuse", "", dom, admin.getName()));
|
|
|
|
em.persist(new EMailAddress("postmaster", "", dom, admin.getName()));
|
|
|
|
em.persist(new EMailAddress("webmaster", "", dom, admin.getName()));
|
2010-10-05 21:42:07 +02:00
|
|
|
}
|
|
|
|
return super.add(dom);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public AbstractEntity update(AbstractEntity existingEntity) throws HSAdminException {
|
2012-07-18 14:26:08 +02:00
|
|
|
Domain updatedDom = (Domain) existingEntity;
|
|
|
|
if (updatedDom.getName() == null || updatedDom.getName().length() == 0) {
|
2010-10-05 21:42:07 +02:00
|
|
|
throw new HSAdminException("domain name required");
|
|
|
|
}
|
2012-07-18 14:26:08 +02:00
|
|
|
UnixUser loginUser = getTransaction().getLoginUser();
|
|
|
|
EntityManager em = getTransaction().getEntityManager();
|
|
|
|
Domain oldDom = em.find(Domain.class, updatedDom.getId());
|
|
|
|
UnixUser admin = updatedDom.getUser();
|
2010-10-05 21:42:07 +02:00
|
|
|
if (admin == null || admin.getName() == null || admin.getName().length() == 0) {
|
|
|
|
throw new HSAdminException("domain admin required");
|
|
|
|
}
|
2012-07-18 15:39:17 +02:00
|
|
|
// if (!admin.getName().equals(oldDom.getUser().getName())) {
|
|
|
|
// throw new AuthorisationException(loginUser, "update", existingEntity, "user");
|
|
|
|
// }
|
2012-07-18 14:26:08 +02:00
|
|
|
Query q = em.createQuery("SELECT opt FROM " +
|
|
|
|
DomainOption.class.getAnnotation(javax.persistence.Entity.class).name() +
|
|
|
|
" opt WHERE opt.name=:optName");
|
|
|
|
for (DomainOption opt : updatedDom.getDomainOptions()) {
|
|
|
|
q.setParameter("optName", opt.getName());
|
|
|
|
List<?> list = q.getResultList();
|
|
|
|
if (list.size() != 1) {
|
|
|
|
throw new HSAdminException("invalid domain option: " + opt.getName());
|
|
|
|
}
|
2010-10-05 21:42:07 +02:00
|
|
|
}
|
|
|
|
needsWriteAccessOn(existingEntity, "update");
|
2012-07-18 14:26:08 +02:00
|
|
|
return super.update(existingEntity);
|
2010-10-05 21:42:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void delete(AbstractEntity existingEntity) throws HSAdminException {
|
|
|
|
needsWriteAccessOn(existingEntity, "delete");
|
|
|
|
Domain dom = (Domain) existingEntity;
|
|
|
|
EntityManager em = getTransaction().getEntityManager();
|
|
|
|
Query query = em.createQuery("SELECT adr FROM " + EMailAddress.class.getAnnotation(javax.persistence.Entity.class).name()
|
|
|
|
+ " adr WHERE adr.domain.name='" + dom.getName() + "'");
|
|
|
|
List<?> resultList = query.getResultList();
|
|
|
|
for (Object obj : resultList) {
|
|
|
|
EMailAddress eMailAddress = (EMailAddress) obj;
|
|
|
|
em.remove(eMailAddress);
|
|
|
|
}
|
|
|
|
super.delete(existingEntity);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void needsReadAccessOn(AbstractEntity ent, String method) throws AuthorisationException {
|
2011-08-12 16:19:21 +02:00
|
|
|
UnixUser loginUser = getTransaction().getLoginUser();
|
2010-10-05 21:42:07 +02:00
|
|
|
if (ent instanceof Domain) {
|
|
|
|
Domain dom = (Domain) ent;
|
2011-08-12 16:19:21 +02:00
|
|
|
String aLoginUserName = loginUser.getName();
|
2010-10-05 21:42:07 +02:00
|
|
|
UnixUser domUser = dom.getUser();
|
|
|
|
Pac domPac = domUser.getPac();
|
|
|
|
boolean isDomAdmin = aLoginUserName.equals(domUser.getName());
|
|
|
|
boolean isPacAdmin = aLoginUserName.equals(domPac.getName());
|
|
|
|
boolean isCustomer = aLoginUserName.equals(domPac.getCustomer().getName());
|
2011-08-12 16:19:21 +02:00
|
|
|
boolean isHostmaster = loginUser.hasHostmasterRole();
|
2010-10-05 21:42:07 +02:00
|
|
|
if (!isDomAdmin && !isPacAdmin && !isCustomer && !isHostmaster) {
|
2011-08-12 16:19:21 +02:00
|
|
|
throw new AuthorisationException(loginUser, method, dom);
|
2010-10-05 21:42:07 +02:00
|
|
|
}
|
|
|
|
} else {
|
2011-08-12 16:19:21 +02:00
|
|
|
throw new AuthorisationException(loginUser, method, ent);
|
2010-10-05 21:42:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-28 15:28:19 +02:00
|
|
|
private void needsWriteAccessOn(AbstractEntity entity, String method) throws AuthorisationException {
|
2011-08-12 16:19:21 +02:00
|
|
|
UnixUser loginUser = getTransaction().getLoginUser();
|
2011-10-28 15:28:19 +02:00
|
|
|
if (entity instanceof Domain) {
|
|
|
|
Domain dom = (Domain) entity;
|
2011-07-14 19:42:33 +02:00
|
|
|
String aLoginUserName = loginUser.getName();
|
2010-10-05 21:42:07 +02:00
|
|
|
UnixUser domUser = dom.getUser();
|
|
|
|
Pac domPac = domUser.getPac();
|
2012-07-18 15:25:32 +02:00
|
|
|
boolean isDomAdmin = aLoginUserName.equals(domUser.getName());
|
2011-07-14 19:42:33 +02:00
|
|
|
boolean isPacAdmin = loginUser.hasPacAdminRoleFor(domPac);
|
2010-10-05 21:42:07 +02:00
|
|
|
boolean isCustomer = aLoginUserName.equals(domPac.getCustomer().getName());
|
2011-07-14 19:42:33 +02:00
|
|
|
boolean isHostmaster = loginUser.hasHostmasterRole();
|
2011-10-28 15:28:19 +02:00
|
|
|
if (!isPacAdmin && !isCustomer && !isHostmaster) {
|
2012-07-18 15:25:32 +02:00
|
|
|
if (!isDomAdmin && !"update".equals(method)) {
|
|
|
|
throw new AuthorisationException(loginUser, method, dom);
|
|
|
|
}
|
2011-10-28 15:28:19 +02:00
|
|
|
}
|
2012-06-12 17:41:00 +02:00
|
|
|
if (dom.isPacDomain() && !dom.getUser().getName().equals(domPac.getName())) {
|
|
|
|
throw new AuthorisationException(loginUser, method, dom);
|
|
|
|
}
|
2011-10-28 15:28:19 +02:00
|
|
|
if (dom.isPacDomain() && !isHostmaster && !"add".equals(method)) {
|
2011-07-14 19:42:33 +02:00
|
|
|
throw new AuthorisationException(loginUser, method, dom);
|
2011-10-28 15:28:19 +02:00
|
|
|
}
|
2010-10-05 21:42:07 +02:00
|
|
|
} else {
|
2011-10-28 15:28:19 +02:00
|
|
|
throw new AuthorisationException(loginUser, method, entity);
|
2010-10-05 21:42:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|