blob: 61d4ad871092753d4065b6e173dd6c3bae72f45a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.syncope.core.logic;
import java.lang.reflect.Method;
import java.util.List;
import java.util.Objects;
import java.util.stream.Collectors;
import org.apache.syncope.common.keymaster.client.api.DomainWatcher;
import org.apache.syncope.common.keymaster.client.api.KeymasterException;
import org.apache.syncope.common.keymaster.client.api.model.Domain;
import org.apache.syncope.common.lib.SyncopeConstants;
import org.apache.syncope.common.lib.to.EntityTO;
import org.apache.syncope.common.lib.types.CipherAlgorithm;
import org.apache.syncope.core.persistence.api.dao.DomainDAO;
import org.apache.syncope.core.persistence.api.dao.DuplicateException;
import org.apache.syncope.core.persistence.api.dao.NotFoundException;
import org.apache.syncope.core.persistence.api.entity.DomainEntity;
import org.apache.syncope.core.persistence.api.entity.SelfKeymasterEntityFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.stereotype.Component;
@Component
public class DomainLogic extends AbstractTransactionalLogic<EntityTO> {
@Autowired
private DomainDAO domainDAO;
@Autowired
private SelfKeymasterEntityFactory entityFactory;
@Autowired
private DomainWatcher domainWatcher;
@PreAuthorize("@environment.getProperty('keymaster.username') == authentication.name and not(isAnonymous())")
public List<Domain> list() {
return domainDAO.findAll().stream().map(DomainEntity::get).collect(Collectors.toList());
}
@PreAuthorize("@environment.getProperty('keymaster.username') == authentication.name and not(isAnonymous())")
public Domain read(final String key) {
DomainEntity domain = domainDAO.find(key);
if (domain == null) {
throw new NotFoundException("Domain " + key);
}
return domain.get();
}
@PreAuthorize("@environment.getProperty('keymaster.username') == authentication.name and not(isAnonymous())")
public Domain create(final Domain domain) {
if (Objects.equals(domain.getKey(), SyncopeConstants.MASTER_DOMAIN)) {
throw new KeymasterException("Cannot create domain " + SyncopeConstants.MASTER_DOMAIN);
}
if (domainDAO.find(domain.getKey()) != null) {
throw new DuplicateException("Domain " + domain.getKey() + " already existing");
}
DomainEntity domainEntity = entityFactory.newDomainEntity();
domainEntity.setKey(domain.getKey());
domainEntity.set(domain);
domainEntity = domainDAO.save(domainEntity);
domainWatcher.added(domain);
return domainEntity.get();
}
@PreAuthorize("@environment.getProperty('keymaster.username') == authentication.name and not(isAnonymous())")
public void changeAdminPassword(final String key, final String password, final CipherAlgorithm cipherAlgorithm) {
DomainEntity domain = domainDAO.find(key);
if (domain == null) {
throw new NotFoundException("Domain " + key);
}
Domain domainObj = domain.get();
domainObj.setAdminPassword(password);
domainObj.setAdminCipherAlgorithm(cipherAlgorithm);
domain.set(domainObj);
domainDAO.save(domain);
}
@PreAuthorize("@environment.getProperty('keymaster.username') == authentication.name and not(isAnonymous())")
public void adjustPoolSize(final String key, final int poolMaxActive, final int poolMinIdle) {
DomainEntity domain = domainDAO.find(key);
if (domain == null) {
throw new NotFoundException("Domain " + key);
}
Domain domainObj = domain.get();
domainObj.setPoolMaxActive(poolMaxActive);
domainObj.setPoolMinIdle(poolMinIdle);
domain.set(domainObj);
domainDAO.save(domain);
}
@PreAuthorize("@environment.getProperty('keymaster.username') == authentication.name and not(isAnonymous())")
public void delete(final String key) {
domainDAO.delete(key);
domainWatcher.removed(key);
}
@Override
protected EntityTO resolveReference(final Method method, final Object... args) throws UnresolvedReferenceException {
throw new UnsupportedOperationException();
}
}