Search in sources :

Example 6 with ApiService

use of com.bluenimble.platform.api.ApiService in project serverless by bluenimble.

the class DefaultApiServicesManager method onStop.

@Override
public void onStop(final ApiContext context) {
    final Tracer tracer = api.tracer();
    // stop all services
    list(new Selector() {

        @Override
        public boolean select(ApiService service) {
            try {
                stopService(service, context, false);
            } catch (Exception ex) {
                tracer.log(Tracer.Level.Error, "ApiSpi.onStop casued an error", ex);
            }
            return false;
        }
    });
}
Also used : ApiService(com.bluenimble.platform.api.ApiService) Tracer(com.bluenimble.platform.api.tracing.Tracer) ApiManagementException(com.bluenimble.platform.api.ApiManagementException) ApiServicesManagerException(com.bluenimble.platform.api.ApiServicesManagerException) ApiResourcesManagerException(com.bluenimble.platform.api.ApiResourcesManagerException)

Example 7 with ApiService

use of com.bluenimble.platform.api.ApiService in project serverless by bluenimble.

the class DefaultApiServicesManager method delete.

@Override
public void delete(ApiVerb verb, String endpoint) throws ApiServicesManagerException {
    ApiServiceSet set = services.get(verb);
    if (set == null) {
        throw new ApiServicesManagerException("service [" + verb + " " + endpoint + "] not found");
    }
    ApiService service = set.get(endpoint);
    if (service == null) {
        throw new ApiServicesManagerException("service [" + verb + " " + endpoint + "] not found");
    }
    if (!ApiStatus.Failed.equals(service.status()) && !ApiStatus.Stopped.equals(service.status())) {
        throw new ApiServicesManagerException("can't delete service [" + verb + " " + endpoint + "]. Status=" + service.status());
    }
    set.remove(endpoint);
}
Also used : ApiServicesManagerException(com.bluenimble.platform.api.ApiServicesManagerException) ApiService(com.bluenimble.platform.api.ApiService) ApiServiceSet(com.bluenimble.platform.server.impls.fs.ApiServiceSet)

Example 8 with ApiService

use of com.bluenimble.platform.api.ApiService in project serverless by bluenimble.

the class ApiImpl method lockup.

public ApiService lockup(ApiRequest request) {
    if (request == null) {
        return null;
    }
    ApiVerb verb = request.getVerb();
    if (verb == null) {
        verb = ApiVerb.GET;
    }
    ApiService service = lockup(verb, request.getResource());
    resolveParameters(service, request);
    return service;
}
Also used : ApiService(com.bluenimble.platform.api.ApiService) ApiVerb(com.bluenimble.platform.api.ApiVerb)

Example 9 with ApiService

use of com.bluenimble.platform.api.ApiService in project serverless by bluenimble.

the class DefaultApiInterceptor method intercept.

@Override
public void intercept(Api api, ApiRequest request, ApiResponse response) {
    logDebug(api, "<" + request.getId() + "> Process Request \n" + request.toString());
    ServerRequestTrack track = server.getRequestTracker(Json.getString(api.getTracking(), Api.Spec.Tracking.Tracker)).create(api, request);
    request.track(track);
    response.set(ApiHeaders.NodeID, Json.getString(request.getNode(), ApiRequest.Fields.Node.Id));
    response.set(ApiHeaders.NodeType, Json.getString(request.getNode(), ApiRequest.Fields.Node.Type));
    response.set(ApiHeaders.NodeVersion, Json.getString(request.getNode(), ApiRequest.Fields.Node.Version));
    ApiMediaProcessor mediaProcessor = null;
    ApiConsumer consumer = null;
    ApiService service = null;
    try {
        // api life cycle - onRequest
        api.getSpi().onRequest(api, request, response);
        // resolve service
        service = ((ApiImpl) api).lockup(request);
        ApiResponse.Status notFoundStatus = null;
        String notFoundMessage = null;
        if (service == null) {
            notFoundStatus = ApiResponse.NOT_FOUND;
            notFoundMessage = api.message(request.getLang(), Messages.ServiceNotFound, request.getVerb().name() + Lang.SPACE + request.getPath());
        } else if (service.status() != ApiStatus.Running) {
            notFoundStatus = ApiResponse.SERVICE_UNAVAILABLE;
            notFoundMessage = api.message(request.getLang(), Messages.ServiceNotAvailable, service.getName());
        }
        if (notFoundStatus != null) {
            if (response instanceof ContainerApiResponse) {
                ((ContainerApiResponse) response).setException(new ApiServiceExecutionException(notFoundMessage).status(notFoundStatus));
            } else {
                response.error(notFoundStatus, notFoundMessage);
                writeError(mediaProcessor, api, null, null, request, response);
            }
            track.finish((JsonObject) new JsonObject().set(ApiResponse.Error.Code, notFoundStatus.getCode()).set(ApiResponse.Error.Message, notFoundMessage));
            return;
        }
        ((AbstractApiRequest) request).setService(service);
        // Lookup media processor
        mediaProcessor = api.lockupMediaProcessor(request, service);
        track.update(service);
        logInfo(api, "<" + request.getId() + "> Using service " + service.getVerb() + Lang.SPACE + Json.getString(service.toJson(), ApiService.Spec.Endpoint) + Lang.SPACE + Lang.PARENTH_OPEN + service.getName() + Lang.PARENTH_CLOSE);
        // api life cycle - onService
        api.getSpi().onService(api, service, request, response);
        logInfo(api, "<" + request.getId() + "> Interceptor will use media.processor [" + mediaProcessor.getClass().getSimpleName() + "]");
        JsonObject apiSecMethods = Json.getObject(api.getSecurity(), Api.Spec.Security.Schemes);
        if (apiSecMethods == null) {
            apiSecMethods = JsonObject.Blank;
        }
        JsonArray serviceSecMethods = Json.getArray(service.getSecurity(), ApiService.Spec.Security.Schemes);
        ApiConsumerResolver resolver = null;
        try {
            Iterator<String> rKeys = apiSecMethods.keys();
            if (rKeys != null) {
                while (rKeys.hasNext()) {
                    String resolverName = rKeys.next();
                    if (serviceSecMethods != null && !serviceSecMethods.contains(resolverName)) {
                        continue;
                    }
                    ApiConsumerResolver r = server.getConsumerResolver(resolverName);
                    if (r == null) {
                        continue;
                    }
                    consumer = r.resolve(api, service, request);
                    if (consumer != null) {
                        resolver = r;
                        break;
                    }
                }
            }
            if (consumer == null) {
                consumer = new DefaultApiConsumer(ApiConsumer.Type.Unknown);
            }
            api.getSpi().findConsumer(api, service, request, consumer);
            if (resolver != null) {
                resolver.authorize(api, service, request, consumer);
            }
        } catch (ApiAuthenticationException e) {
            if (response instanceof ContainerApiResponse) {
                ((ContainerApiResponse) response).setException(new ApiServiceExecutionException(e.getMessage(), e).status(ApiResponse.UNAUTHORIZED));
            } else {
                response.error(ApiResponse.UNAUTHORIZED, e.getMessage());
                writeError(mediaProcessor, api, consumer, service, request, response);
            }
            track.finish((JsonObject) new JsonObject().set(ApiResponse.Error.Code, ApiResponse.UNAUTHORIZED.getCode()).set(ApiResponse.Error.Message, e.getMessage()));
            return;
        }
        try {
            server.getServiceValidator().validate(api, Json.getObject(service.toJson(), ApiService.Spec.Spec), consumer, request);
        } catch (ApiServiceValidatorException e) {
            if (response instanceof ContainerApiResponse) {
                ((ContainerApiResponse) response).setException(new ApiServiceExecutionException(e.getMessage(), e));
            } else {
                writeValidationError(api, consumer, service, request, response, mediaProcessor, e);
            }
            Object error = null;
            if (e.getFeedback() != null) {
                error = e.getFeedback();
            } else {
                error = e.getMessage();
            }
            track.finish((JsonObject) new JsonObject().set(ApiResponse.Error.Code, ApiResponse.UNPROCESSABLE_ENTITY.getCode()).set(ApiResponse.Error.Message, error));
            return;
        }
        ApiOutput output = null;
        JsonObject mock = Json.getObject(service.toJson(), ApiService.Spec.Mock);
        if (mock != null && Json.getBoolean(mock, ConfigKeys.Enabled, false)) {
            output = new JsonApiOutput(Json.getObject(mock, ApiService.Spec.Output));
            logInfo(api, "<" + request.getId() + "> Service using mock output");
        } else {
            // api life cycle - onExecute
            api.getSpi().onExecute(api, consumer, service, request, response);
            output = service.getSpi().execute(api, consumer, request, response);
            // api life cycle - afterExecute
            api.getSpi().afterExecute(api, consumer, service, request, response);
        }
        if (request instanceof ContainerApiRequest) {
            request.set(ApiRequest.Output, output);
        } else {
            response.set(ApiHeaders.ExecutionTime, (System.currentTimeMillis() - request.getTimestamp().getTime()));
            if (response.isCommitted()) {
                logInfo(api, "<" + request.getId() + "> Response already committed. No media processing required");
                long time = System.currentTimeMillis() - request.getTimestamp().getTime();
                track.finish((JsonObject) new JsonObject().set(ApiResponse.Error.Code, ApiResponse.OK.getCode()).set(ApiResponse.Error.Message, time));
                logInfo(api, " <" + request.getId() + "> ExecTime-Cancel: Service " + Json.getString(service.toJson(), ApiService.Spec.Endpoint) + " - Time " + time + " millis");
                return;
            }
            mediaProcessor.process(api, service, consumer, output, request, response);
        }
        int iStatus = ApiResponse.OK.getCode();
        ApiResponse.Status status = response.getStatus();
        if (status != null) {
            iStatus = status.getCode();
        }
        long time = System.currentTimeMillis() - request.getTimestamp().getTime();
        track.finish((JsonObject) new JsonObject().set(ApiResponse.Error.Code, iStatus).set(ApiResponse.Error.Message, time));
        logInfo(api, "<" + request.getId() + "> ExecTime-Success: Service " + Json.getString(service.toJson(), ApiService.Spec.Endpoint) + " - Time " + time + " millis");
    } catch (Throwable th) {
        if (response instanceof ContainerApiResponse) {
            if (th instanceof ApiServiceExecutionException) {
                ((ContainerApiResponse) response).setException((ApiServiceExecutionException) th);
            } else {
                ((ContainerApiResponse) response).setException(new ApiServiceExecutionException(th.getMessage(), th));
            }
            // String [] msg = Lang.toMessage (th);
            track.finish((JsonObject) Lang.toError(th).set(ApiResponse.Error.Code, ApiResponse.INTERNAL_SERVER_ERROR.getCode()));
        } else {
            ApiResponse.Status status = null;
            if (th instanceof ApiServiceExecutionException) {
                status = ((ApiServiceExecutionException) th).status();
            }
            if (status == null) {
                status = ApiResponse.INTERNAL_SERVER_ERROR;
            }
            boolean isValidationError = false;
            if (th instanceof ApiServiceExecutionException) {
                Throwable rootCause = ((ApiServiceExecutionException) th).getRootCause();
                if (rootCause instanceof ApiServiceValidatorException) {
                    ApiServiceValidatorException vex = (ApiServiceValidatorException) rootCause;
                    isValidationError = true;
                    writeValidationError(api, consumer, service, request, response, mediaProcessor, vex);
                    Object error = null;
                    if (vex.getFeedback() != null) {
                        error = vex.getFeedback();
                    } else {
                        error = vex.getMessage();
                    }
                    track.finish((JsonObject) new JsonObject().set(ApiResponse.Error.Code, ApiResponse.UNPROCESSABLE_ENTITY.getCode()).set(ApiResponse.Error.Message, error));
                }
            }
            if (!isValidationError) {
                JsonObject oError = Lang.toError(th);
                // logError (api, "<" + request.getId () + "> - Execute Service / Media Processing - caused an error\n" + oError.toString (), null);
                response.error(status, new Object[] { oError.get(ApiResponse.Error.Message), oError.get(ApiResponse.Error.Trace) });
                writeError(mediaProcessor, api, consumer, service, request, response);
                track.finish((JsonObject) oError.set(ApiResponse.Error.Code, status.getCode()));
            }
        }
    } finally {
        request.destroy();
    }
}
Also used : JsonObject(com.bluenimble.platform.json.JsonObject) ContainerApiResponse(com.bluenimble.platform.api.impls.ContainerApiResponse) AbstractApiRequest(com.bluenimble.platform.api.impls.AbstractApiRequest) ContainerApiResponse(com.bluenimble.platform.api.impls.ContainerApiResponse) ApiResponse(com.bluenimble.platform.api.ApiResponse) ApiOutput(com.bluenimble.platform.api.ApiOutput) JsonApiOutput(com.bluenimble.platform.api.impls.JsonApiOutput) DefaultApiConsumer(com.bluenimble.platform.server.security.impls.DefaultApiConsumer) ApiConsumer(com.bluenimble.platform.api.security.ApiConsumer) ApiAuthenticationException(com.bluenimble.platform.api.security.ApiAuthenticationException) ApiServiceValidatorException(com.bluenimble.platform.api.validation.ApiServiceValidatorException) ServerRequestTrack(com.bluenimble.platform.server.tracking.ServerRequestTrack) ApiStatus(com.bluenimble.platform.api.ApiStatus) ApiMediaProcessor(com.bluenimble.platform.api.media.ApiMediaProcessor) ContainerApiRequest(com.bluenimble.platform.api.impls.ContainerApiRequest) JsonArray(com.bluenimble.platform.json.JsonArray) ApiService(com.bluenimble.platform.api.ApiService) ApiServiceExecutionException(com.bluenimble.platform.api.ApiServiceExecutionException) ApiConsumerResolver(com.bluenimble.platform.api.security.ApiConsumerResolver) JsonObject(com.bluenimble.platform.json.JsonObject) JsonApiOutput(com.bluenimble.platform.api.impls.JsonApiOutput) DefaultApiConsumer(com.bluenimble.platform.server.security.impls.DefaultApiConsumer)

Example 10 with ApiService

use of com.bluenimble.platform.api.ApiService in project serverless by bluenimble.

the class ApiImpl method start.

public void start(boolean pause) {
    // create classLoader
    try {
        if (new File(home, ConfigKeys.Folders.Lib).exists() || Json.getArray(descriptor, ConfigKeys.Classpath) != null) {
            this.classLoader = new ApiClassLoader(space.getNamespace() + Lang.DOT + getNamespace(), InstallUtils.toUrls(home, Json.getArray(descriptor, ConfigKeys.Classpath)));
        }
    } catch (Exception ex) {
        failed(ex);
    }
    // start resources manager
    try {
        resourcesManager.onStart();
    } catch (Exception ex) {
        failed(ex);
    }
    // load messages
    try {
        loadI18n();
    } catch (Exception ex) {
        failed(ex);
    }
    // create spi
    try {
        spi = (ApiSpi) BeanUtils.create(this.getClassLoader(), Json.getObject(descriptor, ConfigKeys.Spi), space.getServer().getPluginsRegistry());
    } catch (Exception ex) {
        failed(ex);
    }
    if (spi == null) {
        spi = DefaultApiSpi;
    }
    space.tracer().log(Tracer.Level.Info, "\t  Namespace: {0}", getNamespace());
    space.tracer().log(Tracer.Level.Info, "\t       Name: {0}", getName());
    space.tracer().log(Tracer.Level.Info, "\tDescription: {0}", getDescription());
    // init tracer
    JsonObject oTracer = Json.getObject(descriptor, ConfigKeys.Tracer);
    if (!Json.isNullOrEmpty(oTracer)) {
        try {
            tracer = (Tracer) BeanUtils.create(this.getClassLoader(), oTracer, space.getServer().getPluginsRegistry());
        } catch (Exception ex) {
            failed(ex);
        }
    }
    tracer.onInstall(this);
    ApiContext context = new DefaultApiContext();
    try {
        // start spi
        try {
            // initialize any linked datasource
            JsonArray datasources = Json.getArray(getRuntime(), DataSources);
            if (datasources != null && !datasources.isEmpty()) {
                // change classloader
                for (int i = 0; i < datasources.count(); i++) {
                    Recyclable recyclable = space.getRecyclable(RemoteDataSource.class.getAnnotation(Feature.class).name() + Lang.DOT + space.getNamespace() + Lang.DOT + (String) datasources.get(i));
                    if (recyclable == null) {
                        continue;
                    }
                    // create factory
                    recyclable.set(space, this.getClassLoader(), (String) datasources.get(i));
                }
            }
            // start api
            spi.onStart(this, context);
        } catch (Exception ex) {
            failed(ex);
        }
        // start services manager
        try {
            servicesManager.onStart(context);
        } catch (Exception ex) {
            failed(ex);
        }
    } finally {
        context.recycle();
    }
    // update/save status
    if (!ApiStatus.Failed.equals(status)) {
        setStatus(pause ? ApiStatus.Paused : ApiStatus.Running, true);
        if (Lang.isDebugMode()) {
            final StringBuilder sb = new StringBuilder(space.getNamespace() + Lang.SLASH + getNamespace() + " available services\n");
            servicesManager.list(new Selector() {

                @Override
                public boolean select(ApiService service) {
                    sb.append(Lang.TAB).append(Lang.PARENTH_OPEN).append(service.status().name().substring(0, 1)).append(Lang.PARENTH_CLOSE).append(Lang.SPACE).append(service.getVerb()).append(Lang.COLON).append(Json.getString(service.toJson(), ApiService.Spec.Endpoint));
                    if (ApiStatus.Failed.equals(service.status())) {
                        sb.append(Lang.ENDLN).append(service.getFailure().toString(2));
                    }
                    sb.append(Lang.ENDLN);
                    return false;
                }
            });
            space.tracer().log(Tracer.Level.Info, sb);
            sb.setLength(0);
        }
    }
    space.tracer().log(Tracer.Level.Info, "\tapi {0} {1}", getNamespace(), status);
}
Also used : ApiClassLoader(com.bluenimble.platform.server.impls.ApiClassLoader) JsonObject(com.bluenimble.platform.json.JsonObject) ApiServiceExecutionException(com.bluenimble.platform.api.ApiServiceExecutionException) IOException(java.io.IOException) ApiServiceValidatorException(com.bluenimble.platform.api.validation.ApiServiceValidatorException) JsonArray(com.bluenimble.platform.json.JsonArray) ApiContext(com.bluenimble.platform.api.ApiContext) ApiService(com.bluenimble.platform.api.ApiService) Recyclable(com.bluenimble.platform.Recyclable) File(java.io.File) Selector(com.bluenimble.platform.api.ApiServicesManager.Selector)

Aggregations

ApiService (com.bluenimble.platform.api.ApiService)11 ApiServicesManagerException (com.bluenimble.platform.api.ApiServicesManagerException)4 ApiServiceExecutionException (com.bluenimble.platform.api.ApiServiceExecutionException)3 Selector (com.bluenimble.platform.api.ApiServicesManager.Selector)3 JsonArray (com.bluenimble.platform.json.JsonArray)3 JsonObject (com.bluenimble.platform.json.JsonObject)3 ValueHolder (com.bluenimble.platform.ValueHolder)2 ApiVerb (com.bluenimble.platform.api.ApiVerb)2 JsonApiOutput (com.bluenimble.platform.api.impls.JsonApiOutput)2 ApiServiceValidatorException (com.bluenimble.platform.api.validation.ApiServiceValidatorException)2 ApiServiceSet (com.bluenimble.platform.server.impls.fs.ApiServiceSet)2 Recyclable (com.bluenimble.platform.Recyclable)1 Api (com.bluenimble.platform.api.Api)1 ApiAccessDeniedException (com.bluenimble.platform.api.ApiAccessDeniedException)1 ApiContext (com.bluenimble.platform.api.ApiContext)1 ApiManagementException (com.bluenimble.platform.api.ApiManagementException)1 ApiOutput (com.bluenimble.platform.api.ApiOutput)1 ApiResourcesManagerException (com.bluenimble.platform.api.ApiResourcesManagerException)1 ApiResponse (com.bluenimble.platform.api.ApiResponse)1 ApiStatus (com.bluenimble.platform.api.ApiStatus)1