blob: 64d418bf0b19de357960925f967851cb16b05f73 [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.stream.Collectors;
import org.apache.commons.lang3.ArrayUtils;
import org.apache.syncope.common.lib.SyncopeClientException;
import org.apache.syncope.common.lib.to.ItemTO;
import org.apache.syncope.common.lib.to.OIDCC4UIProviderTO;
import org.apache.syncope.common.lib.types.ClientExceptionType;
import org.apache.syncope.common.lib.types.OIDC4UIEntitlement;
import org.apache.syncope.core.logic.oidc.OIDCClientCache;
import org.apache.syncope.core.persistence.api.dao.NotFoundException;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.transaction.annotation.Transactional;
import org.apache.syncope.core.persistence.api.entity.OIDCC4UIProvider;
import org.apache.syncope.core.persistence.api.dao.OIDCC4UIProviderDAO;
import org.apache.syncope.core.provisioning.api.data.OIDCC4UIProviderDataBinder;
public class OIDCC4UIProviderLogic extends AbstractTransactionalLogic<OIDCC4UIProviderTO> {
protected final OIDCClientCache oidcClientClientCache;
protected final OIDCC4UIProviderDAO opDAO;
protected final OIDCC4UIProviderDataBinder binder;
public OIDCC4UIProviderLogic(
final OIDCClientCache oidcClientClientCache,
final OIDCC4UIProviderDAO opDAO,
final OIDCC4UIProviderDataBinder binder) {
this.oidcClientClientCache = oidcClientClientCache;
this.opDAO = opDAO;
this.binder = binder;
}
@PreAuthorize("hasRole('" + OIDC4UIEntitlement.OP_CREATE + "')")
public String createFromDiscovery(final OIDCC4UIProviderTO opTO) {
OIDCClientCache.importMetadata(opTO);
return create(opTO);
}
@PreAuthorize("hasRole('" + OIDC4UIEntitlement.OP_CREATE + "')")
public String create(final OIDCC4UIProviderTO opTO) {
if (opTO.getConnObjectKeyItem() == null) {
ItemTO connObjectKeyItem = new ItemTO();
connObjectKeyItem.setIntAttrName("username");
connObjectKeyItem.setExtAttrName("email");
opTO.setConnObjectKeyItem(connObjectKeyItem);
}
OIDCC4UIProvider provider = opDAO.save(binder.create(opTO));
return provider.getKey();
}
@PreAuthorize("isAuthenticated()")
@Transactional(readOnly = true)
public List<OIDCC4UIProviderTO> list() {
return opDAO.findAll().stream().map(binder::getOIDCProviderTO).collect(Collectors.toList());
}
@PreAuthorize("hasRole('" + OIDC4UIEntitlement.OP_READ + "')")
@Transactional(readOnly = true)
public OIDCC4UIProviderTO read(final String key) {
OIDCC4UIProvider op = opDAO.find(key);
if (op == null) {
throw new NotFoundException("OIDC Provider '" + key + '\'');
}
return binder.getOIDCProviderTO(op);
}
@PreAuthorize("hasRole('" + OIDC4UIEntitlement.OP_UPDATE + "')")
public void update(final OIDCC4UIProviderTO opTO) {
OIDCC4UIProvider op = opDAO.find(opTO.getKey());
if (op == null) {
throw new NotFoundException("OIDC Provider '" + opTO.getKey() + '\'');
}
if (!op.getIssuer().equals(opTO.getIssuer())) {
LOG.error("Issuers do not match: expected {}, found {}",
op.getIssuer(), opTO.getIssuer());
SyncopeClientException sce = SyncopeClientException.build(ClientExceptionType.InvalidEntity);
sce.getElements().add("Issuers do not match");
throw sce;
}
String opName = op.getName();
opDAO.save(binder.update(op, opTO));
oidcClientClientCache.removeAll(opName);
}
@PreAuthorize("hasRole('" + OIDC4UIEntitlement.OP_DELETE + "')")
public void delete(final String key) {
OIDCC4UIProvider op = opDAO.find(key);
if (op == null) {
throw new NotFoundException("OIDC Provider '" + key + '\'');
}
String opName = op.getName();
opDAO.delete(key);
oidcClientClientCache.removeAll(opName);
}
@Override
protected OIDCC4UIProviderTO resolveReference(
final Method method, final Object... args) throws UnresolvedReferenceException {
String key = null;
if (ArrayUtils.isNotEmpty(args)) {
for (int i = 0; key == null && i < args.length; i++) {
if (args[i] instanceof String) {
key = (String) args[i];
} else if (args[i] instanceof OIDCC4UIProviderTO) {
key = ((OIDCC4UIProviderTO) args[i]).getKey();
}
}
}
if (key != null) {
try {
return binder.getOIDCProviderTO(opDAO.find(key));
} catch (Throwable ignore) {
LOG.debug("Unresolved reference", ignore);
throw new UnresolvedReferenceException(ignore);
}
}
throw new UnresolvedReferenceException();
}
}