Search in sources :

Example 1 with NewApiVersionBean

use of io.apiman.manager.api.beans.apis.NewApiVersionBean 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;
}
Also used : SystemErrorException(io.apiman.manager.api.rest.exceptions.SystemErrorException) PolicySummaryBean(io.apiman.manager.api.beans.summary.PolicySummaryBean) ByteArrayInputStream(java.io.ByteArrayInputStream) InputStream(java.io.InputStream) PolicyBean(io.apiman.manager.api.beans.policies.PolicyBean) NewPolicyBean(io.apiman.manager.api.beans.policies.NewPolicyBean) UpdatePolicyBean(io.apiman.manager.api.beans.policies.UpdatePolicyBean) UpdateApiVersionBean(io.apiman.manager.api.beans.apis.UpdateApiVersionBean) GatewaySummaryBean(io.apiman.manager.api.beans.summary.GatewaySummaryBean) ClientAlreadyExistsException(io.apiman.manager.api.rest.exceptions.ClientAlreadyExistsException) ApiVersionAlreadyExistsException(io.apiman.manager.api.rest.exceptions.ApiVersionAlreadyExistsException) GatewayNotFoundException(io.apiman.manager.api.rest.exceptions.GatewayNotFoundException) InvalidVersionException(io.apiman.manager.api.rest.exceptions.InvalidVersionException) OrganizationAlreadyExistsException(io.apiman.manager.api.rest.exceptions.OrganizationAlreadyExistsException) EntityStillActiveException(io.apiman.manager.api.rest.exceptions.EntityStillActiveException) PolicyNotFoundException(io.apiman.manager.api.rest.exceptions.PolicyNotFoundException) PlanAlreadyExistsException(io.apiman.manager.api.rest.exceptions.PlanAlreadyExistsException) ApiAlreadyExistsException(io.apiman.manager.api.rest.exceptions.ApiAlreadyExistsException) NotAuthorizedException(io.apiman.manager.api.rest.exceptions.NotAuthorizedException) UserNotFoundException(io.apiman.manager.api.rest.exceptions.UserNotFoundException) GatewayAuthenticationException(io.apiman.manager.api.gateway.GatewayAuthenticationException) AbstractRestException(io.apiman.manager.api.rest.exceptions.AbstractRestException) PlanVersionNotFoundException(io.apiman.manager.api.rest.exceptions.PlanVersionNotFoundException) RoleNotFoundException(io.apiman.manager.api.rest.exceptions.RoleNotFoundException) InvalidNameException(io.apiman.manager.api.rest.exceptions.InvalidNameException) ClientVersionNotFoundException(io.apiman.manager.api.rest.exceptions.ClientVersionNotFoundException) IOException(java.io.IOException) InvalidApiStatusException(io.apiman.manager.api.rest.exceptions.InvalidApiStatusException) ApiNotFoundException(io.apiman.manager.api.rest.exceptions.ApiNotFoundException) ContractAlreadyExistsException(io.apiman.manager.api.rest.exceptions.ContractAlreadyExistsException) InvalidClientStatusException(io.apiman.manager.api.rest.exceptions.InvalidClientStatusException) ApiVersionNotFoundException(io.apiman.manager.api.rest.exceptions.ApiVersionNotFoundException) StorageException(io.apiman.manager.api.core.exceptions.StorageException) ClientVersionAlreadyExistsException(io.apiman.manager.api.rest.exceptions.ClientVersionAlreadyExistsException) InvalidPlanStatusException(io.apiman.manager.api.rest.exceptions.InvalidPlanStatusException) SystemErrorException(io.apiman.manager.api.rest.exceptions.SystemErrorException) ContractNotFoundException(io.apiman.manager.api.rest.exceptions.ContractNotFoundException) InvalidParameterException(io.apiman.manager.api.rest.exceptions.InvalidParameterException) ClientNotFoundException(io.apiman.manager.api.rest.exceptions.ClientNotFoundException) PlanNotFoundException(io.apiman.manager.api.rest.exceptions.PlanNotFoundException) InvalidMetricCriteriaException(io.apiman.manager.api.rest.exceptions.InvalidMetricCriteriaException) MalformedURLException(java.net.MalformedURLException) PlanVersionAlreadyExistsException(io.apiman.manager.api.rest.exceptions.PlanVersionAlreadyExistsException) PolicyDefinitionNotFoundException(io.apiman.manager.api.rest.exceptions.PolicyDefinitionNotFoundException) OrganizationNotFoundException(io.apiman.manager.api.rest.exceptions.OrganizationNotFoundException) ApiDefinitionNotFoundException(io.apiman.manager.api.rest.exceptions.ApiDefinitionNotFoundException) UpdateApiBean(io.apiman.manager.api.beans.apis.UpdateApiBean) ApiBean(io.apiman.manager.api.beans.apis.ApiBean) NewApiBean(io.apiman.manager.api.beans.apis.NewApiBean) ClientUsagePerApiBean(io.apiman.manager.api.beans.metrics.ClientUsagePerApiBean) Response(javax.ws.rs.core.Response) ApiDefinitionNotFoundException(io.apiman.manager.api.rest.exceptions.ApiDefinitionNotFoundException) NewPolicyBean(io.apiman.manager.api.beans.policies.NewPolicyBean) AbstractRestException(io.apiman.manager.api.rest.exceptions.AbstractRestException) ApiVersionBean(io.apiman.manager.api.beans.apis.ApiVersionBean) UpdateApiVersionBean(io.apiman.manager.api.beans.apis.UpdateApiVersionBean) NewApiVersionBean(io.apiman.manager.api.beans.apis.NewApiVersionBean)

Example 2 with NewApiVersionBean

use of io.apiman.manager.api.beans.apis.NewApiVersionBean in project apiman by apiman.

the class ApiService method createApi.

public ApiBeanDto createApi(String organizationId, NewApiBean bean) throws OrganizationNotFoundException, ApiAlreadyExistsException, NotAuthorizedException, InvalidNameException {
    FieldValidator.validateName(bean.getName());
    ApiBean newApi = new ApiBean();
    newApi.setName(bean.getName());
    newApi.setDescription(bean.getDescription());
    newApi.setId(BeanUtils.idFromName(bean.getName()));
    newApi.setCreatedOn(new Date());
    newApi.setCreatedBy(securityContext.getCurrentUser());
    newApi.setImage(bean.getImage());
    newApi.setTags(tagMapper.toEntity(bean.getTags()));
    return tryAction(() -> {
        GatewaySummaryBean gateway = getSingularGateway();
        OrganizationBean orgBean = organizationService.getOrg(organizationId);
        if (storage.getApi(orgBean.getId(), newApi.getId()) != null) {
            throw ExceptionFactory.apiAlreadyExistsException(bean.getName());
        }
        newApi.setOrganization(orgBean);
        // Store/persist the new API
        storage.createApi(newApi);
        storage.createAuditEntry(AuditUtils.apiCreated(newApi, securityContext));
        if (bean.getInitialVersion() != null) {
            NewApiVersionBean newApiVersion = new NewApiVersionBean();
            newApiVersion.setEndpoint(bean.getEndpoint());
            newApiVersion.setEndpointType(bean.getEndpointType());
            newApiVersion.setEndpointContentType(bean.getEndpointContentType());
            newApiVersion.setPlans(bean.getPlans());
            newApiVersion.setPublicAPI(bean.getPublicAPI());
            newApiVersion.setParsePayload(bean.getParsePayload());
            newApiVersion.setDisableKeysStrip(bean.getDisableKeysStrip());
            newApiVersion.setVersion(bean.getInitialVersion());
            newApiVersion.setDefinitionUrl(bean.getDefinitionUrl());
            newApiVersion.setDefinitionType(bean.getDefinitionType());
            newApiVersion.setExtendedDescription(bean.getExtendedDescription());
            createApiVersionInternal(newApiVersion, newApi, gateway);
        }
        return apiMapper.toDto(newApi);
    });
}
Also used : UpdateApiBean(io.apiman.manager.api.beans.apis.UpdateApiBean) ApiBean(io.apiman.manager.api.beans.apis.ApiBean) NewApiBean(io.apiman.manager.api.beans.apis.NewApiBean) GatewaySummaryBean(io.apiman.manager.api.beans.summary.GatewaySummaryBean) OrganizationBean(io.apiman.manager.api.beans.orgs.OrganizationBean) Date(java.util.Date) NewApiVersionBean(io.apiman.manager.api.beans.apis.NewApiVersionBean)

Example 3 with NewApiVersionBean

use of io.apiman.manager.api.beans.apis.NewApiVersionBean 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);
}
Also used : PolicySummaryBean(io.apiman.manager.api.beans.summary.PolicySummaryBean) InputStream(java.io.InputStream) PolicyBean(io.apiman.manager.api.beans.policies.PolicyBean) NewPolicyBean(io.apiman.manager.api.beans.policies.NewPolicyBean) UpdatePolicyBean(io.apiman.manager.api.beans.policies.UpdatePolicyBean) UpdateApiVersionBean(io.apiman.manager.api.beans.apis.UpdateApiVersionBean) GatewaySummaryBean(io.apiman.manager.api.beans.summary.GatewaySummaryBean) UpdateApiPlanDto(io.apiman.manager.api.beans.apis.dto.UpdateApiPlanDto) ApiVersionAlreadyExistsException(io.apiman.manager.api.rest.exceptions.ApiVersionAlreadyExistsException) GatewayNotFoundException(io.apiman.manager.api.rest.exceptions.GatewayNotFoundException) InvalidVersionException(io.apiman.manager.api.rest.exceptions.InvalidVersionException) EntityStillActiveException(io.apiman.manager.api.rest.exceptions.EntityStillActiveException) PolicyNotFoundException(io.apiman.manager.api.rest.exceptions.PolicyNotFoundException) ApiAlreadyExistsException(io.apiman.manager.api.rest.exceptions.ApiAlreadyExistsException) NotAuthorizedException(io.apiman.manager.api.rest.exceptions.NotAuthorizedException) GatewayAuthenticationException(io.apiman.manager.api.gateway.GatewayAuthenticationException) InvalidNameException(io.apiman.manager.api.rest.exceptions.InvalidNameException) InvalidApiStatusException(io.apiman.manager.api.rest.exceptions.InvalidApiStatusException) ApiNotFoundException(io.apiman.manager.api.rest.exceptions.ApiNotFoundException) ApiVersionNotFoundException(io.apiman.manager.api.rest.exceptions.ApiVersionNotFoundException) StorageException(io.apiman.manager.api.core.exceptions.StorageException) SystemErrorException(io.apiman.manager.api.rest.exceptions.SystemErrorException) InvalidParameterException(io.apiman.manager.api.rest.exceptions.InvalidParameterException) PlanNotFoundException(io.apiman.manager.api.rest.exceptions.PlanNotFoundException) MalformedURLException(java.net.MalformedURLException) OrganizationNotFoundException(io.apiman.manager.api.rest.exceptions.OrganizationNotFoundException) ApiDefinitionNotFoundException(io.apiman.manager.api.rest.exceptions.ApiDefinitionNotFoundException) UpdateApiBean(io.apiman.manager.api.beans.apis.UpdateApiBean) ApiBean(io.apiman.manager.api.beans.apis.ApiBean) NewApiBean(io.apiman.manager.api.beans.apis.NewApiBean) ApiDefinitionNotFoundException(io.apiman.manager.api.rest.exceptions.ApiDefinitionNotFoundException) NewPolicyBean(io.apiman.manager.api.beans.policies.NewPolicyBean) ApiVersionBean(io.apiman.manager.api.beans.apis.ApiVersionBean) UpdateApiVersionBean(io.apiman.manager.api.beans.apis.UpdateApiVersionBean) NewApiVersionBean(io.apiman.manager.api.beans.apis.NewApiVersionBean)

Example 4 with NewApiVersionBean

use of io.apiman.manager.api.beans.apis.NewApiVersionBean in project apiman by apiman.

the class ApiService method createApiVersionInternal.

/**
 * Creates an API version.
 */
protected ApiVersionBean createApiVersionInternal(NewApiVersionBean bean, ApiBean api, GatewaySummaryBean gateway) throws Exception {
    if (!BeanUtils.isValidVersion(bean.getVersion())) {
        // $NON-NLS-1$
        throw new StorageException("Invalid/illegal API version: " + bean.getVersion());
    }
    ApiVersionBean newVersion = new ApiVersionBean();
    newVersion.setVersion(bean.getVersion());
    newVersion.setCreatedBy(securityContext.getCurrentUser());
    newVersion.setCreatedOn(new Date());
    newVersion.setModifiedBy(securityContext.getCurrentUser());
    newVersion.setModifiedOn(new Date());
    newVersion.setStatus(ApiStatus.Created);
    newVersion.setApi(api);
    newVersion.setEndpoint(bean.getEndpoint());
    newVersion.setEndpointType(bean.getEndpointType());
    newVersion.setEndpointContentType(bean.getEndpointContentType());
    newVersion.setDefinitionUrl(bean.getDefinitionUrl());
    newVersion.setExtendedDescription(bean.getExtendedDescription());
    if (bean.getPublicAPI() != null) {
        newVersion.setPublicAPI(bean.getPublicAPI());
    }
    if (bean.getParsePayload() != null) {
        newVersion.setParsePayload(bean.getParsePayload());
    }
    if (bean.getDisableKeysStrip() != null) {
        newVersion.setDisableKeysStrip(bean.getDisableKeysStrip());
    }
    if (bean.getPlans() != null) {
        newVersion.setPlans(bean.getPlans());
    }
    if (bean.getDefinitionType() != null) {
        newVersion.setDefinitionType(bean.getDefinitionType());
    } else {
        newVersion.setDefinitionType(ApiDefinitionType.None);
    }
    if (gateway != null && newVersion.getGateways() == null) {
        newVersion.setGateways(new HashSet<>());
        ApiGatewayBean sgb = new ApiGatewayBean();
        sgb.setGatewayId(gateway.getId());
        newVersion.getGateways().add(sgb);
    }
    if (apiValidator.isReady(newVersion)) {
        newVersion.setStatus(ApiStatus.Ready);
    } else {
        newVersion.setStatus(ApiStatus.Created);
    }
    // Ensure all the plans are in the right status (locked)
    Set<ApiPlanBean> plans = newVersion.getPlans();
    if (plans != null) {
        for (ApiPlanBean splanBean : plans) {
            String orgId = newVersion.getApi().getOrganization().getId();
            PlanVersionBean pvb = storage.getPlanVersion(orgId, splanBean.getPlanId(), splanBean.getVersion());
            if (pvb == null) {
                throw new StorageException(// $NON-NLS-1$
                Messages.i18n.format("PlanVersionDoesNotExist", splanBean.getPlanId(), splanBean.getVersion()));
            }
            if (pvb.getStatus() != PlanStatus.Locked) {
                // $NON-NLS-1$
                throw new StorageException(Messages.i18n.format("PlanNotLocked", splanBean.getPlanId(), splanBean.getVersion()));
            }
        }
    }
    storage.createApiVersion(newVersion);
    if (bean.getDefinitionUrl() != null) {
        InputStream definition = null;
        try {
            definition = new URL(bean.getDefinitionUrl()).openStream();
            storage.updateApiDefinition(newVersion, definition);
        } catch (Exception e) {
            // $NON-NLS-1$
            LOGGER.error("Unable to store API definition from: " + bean.getDefinitionUrl(), e);
            // Set definition type silently to None
            newVersion.setDefinitionType(ApiDefinitionType.None);
            storage.updateApiVersion(newVersion);
        } finally {
            IOUtils.closeQuietly(definition);
        }
    }
    storage.createAuditEntry(AuditUtils.apiVersionCreated(newVersion, securityContext));
    return newVersion;
}
Also used : ApiGatewayBean(io.apiman.manager.api.beans.apis.ApiGatewayBean) ApiPlanBean(io.apiman.manager.api.beans.apis.ApiPlanBean) InputStream(java.io.InputStream) StorageException(io.apiman.manager.api.core.exceptions.StorageException) ApiVersionBean(io.apiman.manager.api.beans.apis.ApiVersionBean) UpdateApiVersionBean(io.apiman.manager.api.beans.apis.UpdateApiVersionBean) NewApiVersionBean(io.apiman.manager.api.beans.apis.NewApiVersionBean) Date(java.util.Date) URL(java.net.URL) ApiVersionAlreadyExistsException(io.apiman.manager.api.rest.exceptions.ApiVersionAlreadyExistsException) GatewayNotFoundException(io.apiman.manager.api.rest.exceptions.GatewayNotFoundException) InvalidVersionException(io.apiman.manager.api.rest.exceptions.InvalidVersionException) EntityStillActiveException(io.apiman.manager.api.rest.exceptions.EntityStillActiveException) PolicyNotFoundException(io.apiman.manager.api.rest.exceptions.PolicyNotFoundException) ApiAlreadyExistsException(io.apiman.manager.api.rest.exceptions.ApiAlreadyExistsException) NotAuthorizedException(io.apiman.manager.api.rest.exceptions.NotAuthorizedException) GatewayAuthenticationException(io.apiman.manager.api.gateway.GatewayAuthenticationException) InvalidNameException(io.apiman.manager.api.rest.exceptions.InvalidNameException) InvalidApiStatusException(io.apiman.manager.api.rest.exceptions.InvalidApiStatusException) ApiNotFoundException(io.apiman.manager.api.rest.exceptions.ApiNotFoundException) ApiVersionNotFoundException(io.apiman.manager.api.rest.exceptions.ApiVersionNotFoundException) StorageException(io.apiman.manager.api.core.exceptions.StorageException) SystemErrorException(io.apiman.manager.api.rest.exceptions.SystemErrorException) InvalidParameterException(io.apiman.manager.api.rest.exceptions.InvalidParameterException) PlanNotFoundException(io.apiman.manager.api.rest.exceptions.PlanNotFoundException) MalformedURLException(java.net.MalformedURLException) OrganizationNotFoundException(io.apiman.manager.api.rest.exceptions.OrganizationNotFoundException) ApiDefinitionNotFoundException(io.apiman.manager.api.rest.exceptions.ApiDefinitionNotFoundException) PlanVersionBean(io.apiman.manager.api.beans.plans.PlanVersionBean)

Example 5 with NewApiVersionBean

use of io.apiman.manager.api.beans.apis.NewApiVersionBean in project apiman by apiman.

the class OrganizationResourceImpl method createApiVersionInternal.

/**
 * Creates an API version.
 * @param bean
 * @param api
 * @param gateway
 * @throws Exception
 * @throws StorageException
 */
protected ApiVersionBean createApiVersionInternal(NewApiVersionBean bean, ApiBean api, GatewaySummaryBean gateway) throws Exception, StorageException {
    if (!BeanUtils.isValidVersion(bean.getVersion())) {
        // $NON-NLS-1$
        throw new StorageException("Invalid/illegal API version: " + bean.getVersion());
    }
    ApiVersionBean newVersion = new ApiVersionBean();
    newVersion.setVersion(bean.getVersion());
    newVersion.setCreatedBy(securityContext.getCurrentUser());
    newVersion.setCreatedOn(new Date());
    newVersion.setModifiedBy(securityContext.getCurrentUser());
    newVersion.setModifiedOn(new Date());
    newVersion.setStatus(ApiStatus.Created);
    newVersion.setApi(api);
    newVersion.setEndpoint(bean.getEndpoint());
    newVersion.setEndpointType(bean.getEndpointType());
    newVersion.setEndpointContentType(bean.getEndpointContentType());
    newVersion.setDefinitionUrl(bean.getDefinitionUrl());
    if (bean.getPublicAPI() != null) {
        newVersion.setPublicAPI(bean.getPublicAPI());
    }
    if (bean.getParsePayload() != null) {
        newVersion.setParsePayload(bean.getParsePayload());
    }
    if (bean.getDisableKeysStrip() != null) {
        newVersion.setDisableKeysStrip(bean.getDisableKeysStrip());
    }
    if (bean.getPlans() != null) {
        newVersion.setPlans(bean.getPlans());
    }
    if (bean.getDefinitionType() != null) {
        newVersion.setDefinitionType(bean.getDefinitionType());
    } else {
        newVersion.setDefinitionType(ApiDefinitionType.None);
    }
    if (gateway != null && newVersion.getGateways() == null) {
        newVersion.setGateways(new HashSet<>());
        ApiGatewayBean sgb = new ApiGatewayBean();
        sgb.setGatewayId(gateway.getId());
        newVersion.getGateways().add(sgb);
    }
    if (apiValidator.isReady(newVersion)) {
        newVersion.setStatus(ApiStatus.Ready);
    } else {
        newVersion.setStatus(ApiStatus.Created);
    }
    // Ensure all of the plans are in the right status (locked)
    Set<ApiPlanBean> plans = newVersion.getPlans();
    if (plans != null) {
        for (ApiPlanBean splanBean : plans) {
            String orgId = newVersion.getApi().getOrganization().getId();
            PlanVersionBean pvb = storage.getPlanVersion(orgId, splanBean.getPlanId(), splanBean.getVersion());
            if (pvb == null) {
                // $NON-NLS-1$
                throw new StorageException(Messages.i18n.format("PlanVersionDoesNotExist", splanBean.getPlanId(), splanBean.getVersion()));
            }
            if (pvb.getStatus() != PlanStatus.Locked) {
                // $NON-NLS-1$
                throw new StorageException(Messages.i18n.format("PlanNotLocked", splanBean.getPlanId(), splanBean.getVersion()));
            }
        }
    }
    storage.createApiVersion(newVersion);
    if (bean.getDefinitionUrl() != null) {
        InputStream definition = null;
        try {
            definition = new URL(bean.getDefinitionUrl()).openStream();
            storage.updateApiDefinition(newVersion, definition);
        } catch (Exception e) {
            // $NON-NLS-1$
            log.error("Unable to store API definition from: " + bean.getDefinitionUrl(), e);
            // Set definition type silently to None
            newVersion.setDefinitionType(ApiDefinitionType.None);
            storage.updateApiVersion(newVersion);
        } finally {
            IOUtils.closeQuietly(definition);
        }
    }
    storage.createAuditEntry(AuditUtils.apiVersionCreated(newVersion, securityContext));
    return newVersion;
}
Also used : ApiGatewayBean(io.apiman.manager.api.beans.apis.ApiGatewayBean) ApiPlanBean(io.apiman.manager.api.beans.apis.ApiPlanBean) ByteArrayInputStream(java.io.ByteArrayInputStream) InputStream(java.io.InputStream) StorageException(io.apiman.manager.api.core.exceptions.StorageException) ApiVersionBean(io.apiman.manager.api.beans.apis.ApiVersionBean) UpdateApiVersionBean(io.apiman.manager.api.beans.apis.UpdateApiVersionBean) NewApiVersionBean(io.apiman.manager.api.beans.apis.NewApiVersionBean) Date(java.util.Date) URL(java.net.URL) ClientAlreadyExistsException(io.apiman.manager.api.rest.exceptions.ClientAlreadyExistsException) ApiVersionAlreadyExistsException(io.apiman.manager.api.rest.exceptions.ApiVersionAlreadyExistsException) GatewayNotFoundException(io.apiman.manager.api.rest.exceptions.GatewayNotFoundException) InvalidVersionException(io.apiman.manager.api.rest.exceptions.InvalidVersionException) OrganizationAlreadyExistsException(io.apiman.manager.api.rest.exceptions.OrganizationAlreadyExistsException) EntityStillActiveException(io.apiman.manager.api.rest.exceptions.EntityStillActiveException) PolicyNotFoundException(io.apiman.manager.api.rest.exceptions.PolicyNotFoundException) PlanAlreadyExistsException(io.apiman.manager.api.rest.exceptions.PlanAlreadyExistsException) ApiAlreadyExistsException(io.apiman.manager.api.rest.exceptions.ApiAlreadyExistsException) NotAuthorizedException(io.apiman.manager.api.rest.exceptions.NotAuthorizedException) UserNotFoundException(io.apiman.manager.api.rest.exceptions.UserNotFoundException) GatewayAuthenticationException(io.apiman.manager.api.gateway.GatewayAuthenticationException) AbstractRestException(io.apiman.manager.api.rest.exceptions.AbstractRestException) PlanVersionNotFoundException(io.apiman.manager.api.rest.exceptions.PlanVersionNotFoundException) RoleNotFoundException(io.apiman.manager.api.rest.exceptions.RoleNotFoundException) InvalidNameException(io.apiman.manager.api.rest.exceptions.InvalidNameException) ClientVersionNotFoundException(io.apiman.manager.api.rest.exceptions.ClientVersionNotFoundException) IOException(java.io.IOException) InvalidApiStatusException(io.apiman.manager.api.rest.exceptions.InvalidApiStatusException) ApiNotFoundException(io.apiman.manager.api.rest.exceptions.ApiNotFoundException) ContractAlreadyExistsException(io.apiman.manager.api.rest.exceptions.ContractAlreadyExistsException) InvalidClientStatusException(io.apiman.manager.api.rest.exceptions.InvalidClientStatusException) ApiVersionNotFoundException(io.apiman.manager.api.rest.exceptions.ApiVersionNotFoundException) StorageException(io.apiman.manager.api.core.exceptions.StorageException) ClientVersionAlreadyExistsException(io.apiman.manager.api.rest.exceptions.ClientVersionAlreadyExistsException) InvalidPlanStatusException(io.apiman.manager.api.rest.exceptions.InvalidPlanStatusException) SystemErrorException(io.apiman.manager.api.rest.exceptions.SystemErrorException) ContractNotFoundException(io.apiman.manager.api.rest.exceptions.ContractNotFoundException) InvalidParameterException(io.apiman.manager.api.rest.exceptions.InvalidParameterException) ClientNotFoundException(io.apiman.manager.api.rest.exceptions.ClientNotFoundException) PlanNotFoundException(io.apiman.manager.api.rest.exceptions.PlanNotFoundException) InvalidMetricCriteriaException(io.apiman.manager.api.rest.exceptions.InvalidMetricCriteriaException) MalformedURLException(java.net.MalformedURLException) PlanVersionAlreadyExistsException(io.apiman.manager.api.rest.exceptions.PlanVersionAlreadyExistsException) PolicyDefinitionNotFoundException(io.apiman.manager.api.rest.exceptions.PolicyDefinitionNotFoundException) OrganizationNotFoundException(io.apiman.manager.api.rest.exceptions.OrganizationNotFoundException) ApiDefinitionNotFoundException(io.apiman.manager.api.rest.exceptions.ApiDefinitionNotFoundException) NewPlanVersionBean(io.apiman.manager.api.beans.plans.NewPlanVersionBean) PlanVersionBean(io.apiman.manager.api.beans.plans.PlanVersionBean)

Aggregations

NewApiVersionBean (io.apiman.manager.api.beans.apis.NewApiVersionBean)6 StorageException (io.apiman.manager.api.core.exceptions.StorageException)5 GatewayAuthenticationException (io.apiman.manager.api.gateway.GatewayAuthenticationException)5 ApiAlreadyExistsException (io.apiman.manager.api.rest.exceptions.ApiAlreadyExistsException)5 ApiDefinitionNotFoundException (io.apiman.manager.api.rest.exceptions.ApiDefinitionNotFoundException)5 ApiNotFoundException (io.apiman.manager.api.rest.exceptions.ApiNotFoundException)5 ApiVersionAlreadyExistsException (io.apiman.manager.api.rest.exceptions.ApiVersionAlreadyExistsException)5 ApiVersionNotFoundException (io.apiman.manager.api.rest.exceptions.ApiVersionNotFoundException)5 EntityStillActiveException (io.apiman.manager.api.rest.exceptions.EntityStillActiveException)5 GatewayNotFoundException (io.apiman.manager.api.rest.exceptions.GatewayNotFoundException)5 InvalidApiStatusException (io.apiman.manager.api.rest.exceptions.InvalidApiStatusException)5 InvalidNameException (io.apiman.manager.api.rest.exceptions.InvalidNameException)5 InvalidParameterException (io.apiman.manager.api.rest.exceptions.InvalidParameterException)5 InvalidVersionException (io.apiman.manager.api.rest.exceptions.InvalidVersionException)5 NotAuthorizedException (io.apiman.manager.api.rest.exceptions.NotAuthorizedException)5 OrganizationNotFoundException (io.apiman.manager.api.rest.exceptions.OrganizationNotFoundException)5 ApiBean (io.apiman.manager.api.beans.apis.ApiBean)4 ApiVersionBean (io.apiman.manager.api.beans.apis.ApiVersionBean)4 NewApiBean (io.apiman.manager.api.beans.apis.NewApiBean)4 UpdateApiBean (io.apiman.manager.api.beans.apis.UpdateApiBean)4