use of io.apiman.manager.api.beans.policies.NewPolicyBean in project apiman by apiman.
the class OrganizationResourceImpl method createApiVersion.
/**
* @see IOrganizationResource#createApiVersion(java.lang.String, java.lang.String, io.apiman.manager.api.beans.apis.NewApiVersionBean)
*/
@Override
public ApiVersionBean createApiVersion(String organizationId, String apiId, NewApiVersionBean bean) throws ApiNotFoundException, NotAuthorizedException, InvalidVersionException, ApiVersionAlreadyExistsException {
securityContext.checkPermissions(PermissionType.apiEdit, organizationId);
FieldValidator.validateVersion(bean.getVersion());
ApiVersionBean newVersion;
try {
GatewaySummaryBean gateway = getSingularGateway();
storage.beginTx();
ApiBean api = getApiFromStorage(organizationId, apiId);
if (storage.getApiVersion(organizationId, apiId, bean.getVersion()) != null) {
throw ExceptionFactory.apiVersionAlreadyExistsException(apiId, bean.getVersion());
}
newVersion = createApiVersionInternal(bean, api, gateway);
storage.commitTx();
} catch (AbstractRestException e) {
storage.rollbackTx();
throw e;
} catch (Exception e) {
storage.rollbackTx();
throw new SystemErrorException(e);
}
if (bean.isClone() && bean.getCloneVersion() != null) {
try {
ApiVersionBean cloneSource = getApiVersion(organizationId, apiId, bean.getCloneVersion());
// Clone primary attributes of the API version unless those attributes
// were included in the NewApiVersionBean. In other words, information
// sent as part of the "create version" payload take precedence over the
// cloned attributes.
UpdateApiVersionBean updatedApi = new UpdateApiVersionBean();
if (bean.getEndpoint() == null) {
updatedApi.setEndpoint(cloneSource.getEndpoint());
}
if (bean.getEndpointType() == null) {
updatedApi.setEndpointType(cloneSource.getEndpointType());
}
if (bean.getEndpointContentType() == null) {
updatedApi.setEndpointContentType(cloneSource.getEndpointContentType());
}
updatedApi.setEndpointProperties(cloneSource.getEndpointProperties());
updatedApi.setGateways(cloneSource.getGateways());
if (bean.getPlans() == null) {
updatedApi.setPlans(cloneSource.getPlans());
}
if (bean.getPublicAPI() == null) {
updatedApi.setPublicAPI(cloneSource.isPublicAPI());
}
if (bean.getParsePayload() == null) {
updatedApi.setParsePayload(bean.getParsePayload());
}
newVersion = updateApiVersion(organizationId, apiId, bean.getVersion(), updatedApi);
if (bean.getDefinitionUrl() == null) {
// Clone the API definition document
InputStream definition = null;
try {
Response response = getApiDefinition(organizationId, apiId, bean.getCloneVersion());
definition = (InputStream) response.getEntity();
storeApiDefinition(organizationId, apiId, newVersion.getVersion(), cloneSource.getDefinitionType(), definition, cloneSource.getDefinitionUrl());
} catch (ApiDefinitionNotFoundException svnfe) {
// This is ok - it just means the API doesn't have one, so do nothing.
} catch (Exception sdnfe) {
// $NON-NLS-1$
log.error("Unable to create response", sdnfe);
} finally {
IOUtils.closeQuietly(definition);
}
}
// Clone all API policies
List<PolicySummaryBean> policies = listApiPolicies(organizationId, apiId, bean.getCloneVersion());
for (PolicySummaryBean policySummary : policies) {
PolicyBean policy = getApiPolicy(organizationId, apiId, bean.getCloneVersion(), policySummary.getId());
NewPolicyBean npb = new NewPolicyBean();
npb.setDefinitionId(policy.getDefinition().getId());
npb.setConfiguration(policy.getConfiguration());
createApiPolicy(organizationId, apiId, newVersion.getVersion(), npb);
}
} catch (Exception e) {
// TODO it's ok if the clone fails - we did our best
if (e != null) {
Throwable t = e;
e = (Exception) t;
}
}
}
return newVersion;
}
use of io.apiman.manager.api.beans.policies.NewPolicyBean in project apiman by apiman.
the class OrganizationResourceImpl method createClientVersion.
/**
* @see IOrganizationResource#createClientVersion(java.lang.String, java.lang.String, io.apiman.manager.api.beans.clients.NewClientVersionBean)
*/
@Override
public ClientVersionBean createClientVersion(String organizationId, String clientId, NewClientVersionBean bean) throws ClientNotFoundException, NotAuthorizedException, InvalidVersionException, ClientVersionAlreadyExistsException {
securityContext.checkPermissions(PermissionType.clientEdit, organizationId);
FieldValidator.validateVersion(bean.getVersion());
ClientVersionBean newVersion;
try {
storage.beginTx();
ClientBean client = getClientFromStorage(organizationId, clientId);
if (storage.getClientVersion(organizationId, clientId, bean.getVersion()) != null) {
throw ExceptionFactory.clientVersionAlreadyExistsException(clientId, bean.getVersion());
}
newVersion = createClientVersionInternal(bean, client);
storage.commitTx();
} catch (AbstractRestException e) {
storage.rollbackTx();
throw e;
} catch (Exception e) {
storage.rollbackTx();
throw new SystemErrorException(e);
}
if (bean.isClone() && bean.getCloneVersion() != null) {
try {
List<ContractSummaryBean> contracts = getClientVersionContracts(organizationId, clientId, bean.getCloneVersion());
for (ContractSummaryBean contract : contracts) {
NewContractBean ncb = new NewContractBean();
ncb.setPlanId(contract.getPlanId());
ncb.setApiId(contract.getApiId());
ncb.setApiOrgId(contract.getApiOrganizationId());
ncb.setApiVersion(contract.getApiVersion());
createContract(organizationId, clientId, newVersion.getVersion(), ncb);
}
List<PolicySummaryBean> policies = listClientPolicies(organizationId, clientId, bean.getCloneVersion());
for (PolicySummaryBean policySummary : policies) {
PolicyBean policy = getClientPolicy(organizationId, clientId, bean.getCloneVersion(), policySummary.getId());
NewPolicyBean npb = new NewPolicyBean();
npb.setDefinitionId(policy.getDefinition().getId());
npb.setConfiguration(policy.getConfiguration());
createClientPolicy(organizationId, clientId, newVersion.getVersion(), npb);
}
} catch (Exception e) {
// TODO it's ok if the clone fails - we did our best
}
}
return newVersion;
}
use of io.apiman.manager.api.beans.policies.NewPolicyBean in project apiman by apiman.
the class ClientAppService method createClientPolicy.
@Transactional
public PolicyBean createClientPolicy(String organizationId, String clientId, String version, NewPolicyBean bean) throws OrganizationNotFoundException, ClientVersionNotFoundException, NotAuthorizedException {
return tryAction(() -> {
// Make sure the Client exists
ClientVersionBean cvb = getClientVersionInternal(organizationId, clientId, version);
PolicyBean policy = policyService.createPolicy(organizationId, clientId, version, bean, PolicyType.Client);
cvb.setModifiedBy(securityContext.getCurrentUser());
cvb.setModifiedOn(new Date());
return policy;
});
}
use of io.apiman.manager.api.beans.policies.NewPolicyBean in project apiman by apiman.
the class PolicyService method createPolicy.
/**
* Creates a policy for the given entity (supports creating policies for clients,
* APIs, and plans).
*
* @param organizationId
* @param entityId
* @param entityVersion
* @param bean
* @return the stored policy bean (with updated information)
*/
public PolicyBean createPolicy(String organizationId, String entityId, String entityVersion, NewPolicyBean bean, PolicyType type) throws PolicyDefinitionNotFoundException {
return tryAction(() -> {
if (bean.getDefinitionId() == null) {
// $NON-NLS-1$
throw ExceptionFactory.policyDefNotFoundException("null");
}
PolicyDefinitionBean def = storage.getPolicyDefinition(bean.getDefinitionId());
if (def == null) {
throw ExceptionFactory.policyDefNotFoundException(bean.getDefinitionId());
}
int newIdx = query.getMaxPolicyOrderIndex(organizationId, entityId, entityVersion, type) + 1;
PolicyBean policy = new PolicyBean();
policy.setId(null);
policy.setDefinition(def);
policy.setName(def.getName());
policy.setConfiguration(bean.getConfiguration());
policy.setCreatedBy(securityContext.getCurrentUser());
policy.setCreatedOn(new Date());
policy.setModifiedBy(securityContext.getCurrentUser());
policy.setModifiedOn(new Date());
policy.setOrganizationId(organizationId);
policy.setEntityId(entityId);
policy.setEntityVersion(entityVersion);
policy.setType(type);
policy.setOrderIndex(newIdx);
if (type == PolicyType.Client) {
ClientVersionBean cvb = storage.getClientVersion(organizationId, entityId, entityVersion);
cvb.setModifiedBy(securityContext.getCurrentUser());
cvb.setModifiedOn(new Date());
storage.updateClientVersion(cvb);
} else if (type == PolicyType.Api) {
ApiVersionBean avb = storage.getApiVersion(organizationId, entityId, entityVersion);
avb.setModifiedBy(securityContext.getCurrentUser());
avb.setModifiedOn(new Date());
storage.updateApiVersion(avb);
} else if (type == PolicyType.Plan) {
PlanVersionBean pvb = storage.getPlanVersion(organizationId, entityId, entityVersion);
pvb.setModifiedBy(securityContext.getCurrentUser());
pvb.setModifiedOn(new Date());
storage.updatePlanVersion(pvb);
}
storage.createPolicy(policy);
storage.createAuditEntry(AuditUtils.policyAdded(policy, type, securityContext));
PolicyTemplateUtil.generatePolicyDescription(policy);
// $NON-NLS-1$
LOGGER.debug(String.format("Created client policy: %s", policy));
return policy;
});
}
use of io.apiman.manager.api.beans.policies.NewPolicyBean in project apiman by apiman.
the class ApiService method createApiVersion.
public ApiVersionBeanDto createApiVersion(String organizationId, String apiId, NewApiVersionBean newApiVersion) throws ApiNotFoundException, NotAuthorizedException, InvalidVersionException, ApiVersionAlreadyExistsException {
FieldValidator.validateVersion(newApiVersion.getVersion());
ApiVersionBean newVersion = tryAction(() -> {
GatewaySummaryBean gateway = getSingularGateway();
ApiBean api = getApiFromStorage(organizationId, apiId);
if (storage.getApiVersion(organizationId, apiId, newApiVersion.getVersion()) != null) {
throw ExceptionFactory.apiVersionAlreadyExistsException(apiId, newApiVersion.getVersion());
}
return createApiVersionInternal(newApiVersion, api, gateway);
});
if (newApiVersion.isClone() && newApiVersion.getCloneVersion() != null) {
try {
ApiVersionBean cloneSource = storage.getApiVersion(organizationId, apiId, newApiVersion.getCloneVersion());
// storage.flush();
// Clone primary attributes of the API version unless those attributes
// were included in the NewApiVersionBean. In other words, information
// sent as part of the "create version" payload take precedence over the
// cloned attributes.
UpdateApiVersionBean updatedApi = new UpdateApiVersionBean();
if (newApiVersion.getEndpoint() == null) {
updatedApi.setEndpoint(cloneSource.getEndpoint());
}
if (newApiVersion.getEndpointType() == null) {
updatedApi.setEndpointType(cloneSource.getEndpointType());
}
if (newApiVersion.getEndpointContentType() == null) {
updatedApi.setEndpointContentType(cloneSource.getEndpointContentType());
}
updatedApi.setEndpointProperties(cloneSource.getEndpointProperties());
updatedApi.setGateways(cloneSource.getGateways());
if (newApiVersion.getPlans() == null) {
Set<UpdateApiPlanDto> plans = ApiVersionMapper.INSTANCE.toDto2(cloneSource.getPlans());
updatedApi.setPlans(plans);
}
if (newApiVersion.getPublicAPI() == null) {
updatedApi.setPublicAPI(cloneSource.isPublicAPI());
}
if (newApiVersion.getParsePayload() == null) {
updatedApi.setParsePayload(cloneSource.isParsePayload());
}
if (newApiVersion.getExtendedDescription() == null) {
updatedApi.setExtendedDescription(cloneSource.getExtendedDescription());
}
ApiVersionBean updated = updateApiVersion(newVersion, updatedApi);
if (newApiVersion.getDefinitionUrl() == null) {
// Clone the API definition document
InputStream definition = null;
try {
definition = getApiDefinition(organizationId, apiId, newApiVersion.getCloneVersion()).getDefinition();
setApiDefinition(organizationId, apiId, updated.getVersion(), cloneSource.getDefinitionType(), definition, cloneSource.getDefinitionUrl());
} catch (ApiDefinitionNotFoundException svnfe) {
// This is ok - it just means the API doesn't have one, so do nothing.
} catch (Exception sdnfe) {
// $NON-NLS-1$
LOGGER.error("Unable to create response", sdnfe);
} finally {
IOUtils.closeQuietly(definition);
}
}
// Clone all API policies
List<PolicySummaryBean> policies = listApiPolicies(organizationId, apiId, newApiVersion.getCloneVersion());
for (PolicySummaryBean policySummary : policies) {
PolicyBean policy = getApiPolicy(organizationId, apiId, newApiVersion.getCloneVersion(), policySummary.getId());
NewPolicyBean npb = new NewPolicyBean();
npb.setDefinitionId(policy.getDefinition().getId());
npb.setConfiguration(policy.getConfiguration());
createApiPolicy(organizationId, apiId, updated.getVersion(), npb);
}
} catch (Exception e) {
e.printStackTrace();
// TODO it's ok if the clone fails - we did our best
if (e != null) {
Throwable t = e;
e = (Exception) t;
}
}
}
return apiVersionMapper.toDto(newVersion);
}
Aggregations