Search in sources :

Example 1 with PlanJson

use of org.killbill.billing.jaxrs.json.CatalogJson.PlanJson in project killbill by killbill.

the class CatalogResource method getPlanForSubscriptionAndDate.

@TimedResource
@GET
@Path("/plan")
@Produces(APPLICATION_JSON)
@ApiOperation(value = "Retrieve plan for a given subscription and date", response = PlanJson.class)
@ApiResponses(value = {})
public Response getPlanForSubscriptionAndDate(@QueryParam("subscriptionId") final UUID subscriptionId, @QueryParam("requestedDate") final String requestedDateString, @javax.ws.rs.core.Context final HttpServletRequest request) throws SubscriptionApiException, CurrencyValueNull {
    verifyNonNullOrEmpty(subscriptionId, "Subscription id needs to be specified");
    final SubscriptionEvent lastEventBeforeRequestedDate = getLastEventBeforeDate(subscriptionId, requestedDateString, request);
    if (lastEventBeforeRequestedDate == null) {
        return Response.status(Status.BAD_REQUEST).entity(String.format("%s is before the subscription start date", requestedDateString)).type("text/plain").build();
    }
    final Plan plan = lastEventBeforeRequestedDate.getNextPlan();
    if (plan == null) {
        // Subscription was cancelled at that point
        return Response.status(Status.BAD_REQUEST).entity(String.format("%s is after the subscription cancel date", requestedDateString)).type("text/plain").build();
    }
    final PlanJson planJson = new PlanJson(plan);
    return Response.status(Status.OK).entity(planJson).build();
}
Also used : SubscriptionEvent(org.killbill.billing.entitlement.api.SubscriptionEvent) PlanJson(org.killbill.billing.jaxrs.json.CatalogJson.PlanJson) SimplePlanJson(org.killbill.billing.jaxrs.json.SimplePlanJson) Plan(org.killbill.billing.catalog.api.Plan) Path(javax.ws.rs.Path) TimedResource(org.killbill.commons.metrics.TimedResource) Produces(javax.ws.rs.Produces) GET(javax.ws.rs.GET) ApiOperation(io.swagger.annotations.ApiOperation) ApiResponses(io.swagger.annotations.ApiResponses)

Aggregations

ApiOperation (io.swagger.annotations.ApiOperation)1 ApiResponses (io.swagger.annotations.ApiResponses)1 GET (javax.ws.rs.GET)1 Path (javax.ws.rs.Path)1 Produces (javax.ws.rs.Produces)1 Plan (org.killbill.billing.catalog.api.Plan)1 SubscriptionEvent (org.killbill.billing.entitlement.api.SubscriptionEvent)1 PlanJson (org.killbill.billing.jaxrs.json.CatalogJson.PlanJson)1 SimplePlanJson (org.killbill.billing.jaxrs.json.SimplePlanJson)1 TimedResource (org.killbill.commons.metrics.TimedResource)1