use of com.bluenimble.platform.api.ApiSpace in project serverless by bluenimble.
the class ChangeApiStatusSpi method execute.
@Override
public ApiOutput execute(Api api, ApiConsumer consumer, ApiRequest request, ApiResponse response) throws ApiServiceExecutionException {
String apiNs = (String) request.get(CommonSpec.Api);
String sAction = (String) request.getResource()[request.getResource().length - 1];
Action action = null;
try {
action = Action.valueOf(sAction);
} catch (Exception ex) {
// ignore
}
if (action == null) {
throw new ApiServiceExecutionException("unknown change-status action " + sAction).status(ApiResponse.BAD_REQUEST);
}
ApiSpace space = null;
try {
space = MgmUtils.space(consumer, api);
switch(action) {
case start:
space.start(apiNs);
break;
case stop:
space.stop(apiNs);
break;
case pause:
space.pause(apiNs);
break;
case resume:
space.resume(apiNs);
break;
default:
break;
}
} catch (Exception ex) {
throw new ApiServiceExecutionException(ex.getMessage(), ex);
}
Api targetApi = space.api(apiNs);
JsonObject result = (JsonObject) new JsonObject().set(Api.Spec.Status, targetApi.status().name());
if (ApiStatus.Failed.equals(targetApi.status())) {
result.set(Output.Reason, targetApi.getFailure());
}
return new JsonApiOutput(result);
}
use of com.bluenimble.platform.api.ApiSpace in project serverless by bluenimble.
the class InstallApiFromFileSpi method execute.
@Override
public ApiOutput execute(Api api, ApiConsumer consumer, ApiRequest request, ApiResponse response) throws ApiServiceExecutionException {
String spaceFolder = (String) request.get(Spec.SpaceFolder);
String apiFile = (String) request.get(Spec.ApiFile);
Boolean start = (Boolean) request.get(Spec.Start);
if (start == null) {
start = true;
}
ApiSpace targetSpace = null;
Api installed = null;
try {
targetSpace = MgmUtils.space(consumer, api);
installed = targetSpace.install(spaceFolder, apiFile);
} catch (Exception ex) {
throw new ApiServiceExecutionException(ex.getMessage(), ex);
}
if (installed == null) {
throw new ApiServiceExecutionException("can't install api. Server can't return a valid api object");
}
try {
if (start) {
targetSpace.start(installed.getNamespace());
}
} catch (Exception ex) {
throw new ApiServiceExecutionException(ex.getMessage(), ex);
}
return new JsonApiOutput(installed.describe(MgmUtils.options((String) request.get(CommonSpec.Options), DescribeOption.Info)));
}
use of com.bluenimble.platform.api.ApiSpace in project serverless by bluenimble.
the class InstallApiSpi method execute.
@Override
public ApiOutput execute(Api api, ApiConsumer consumer, ApiRequest request, ApiResponse response) throws ApiServiceExecutionException {
ApiStreamSource stream = (ApiStreamSource) request.get(ApiRequest.Payload, Scope.Stream);
Boolean start = (Boolean) request.get(Spec.Start);
if (start == null) {
start = false;
}
ApiSpace targetSpace = null;
Api installed = null;
try {
targetSpace = MgmUtils.space(consumer, api);
installed = targetSpace.install(stream);
} catch (Exception ex) {
throw new ApiServiceExecutionException(ex.getMessage(), ex);
}
if (installed == null) {
throw new ApiServiceExecutionException("can't install api. Server can't return a valid api object");
}
try {
if (start) {
targetSpace.start(installed.getNamespace());
}
} catch (Exception ex) {
throw new ApiServiceExecutionException(ex.getMessage(), ex);
}
return new JsonApiOutput(installed.describe(MgmUtils.options((String) request.get(CommonSpec.Options), DescribeOption.Info)));
}
use of com.bluenimble.platform.api.ApiSpace in project serverless by bluenimble.
the class DeleteEntrySpi method execute.
@Override
public ApiOutput execute(Api api, final ApiConsumer consumer, ApiRequest request, ApiResponse response) throws ApiServiceExecutionException {
String provider = (String) request.get(CommonSpec.Provider);
String key = (String) request.get(Spec.Key);
ApiSpace space;
try {
space = MgmUtils.space(consumer, api);
} catch (ApiAccessDeniedException e) {
throw new ApiServiceExecutionException(e.getMessage(), e).status(ApiResponse.FORBIDDEN);
}
Cache cache = space.feature(Cache.class, provider, request);
cache.delete(key);
return new JsonApiOutput((JsonObject) new JsonObject().set(CommonOutput.Deleted, true));
}
use of com.bluenimble.platform.api.ApiSpace in project serverless by bluenimble.
the class AddRecordSpi method execute.
@Override
public ApiOutput execute(Api api, final ApiConsumer consumer, ApiRequest request, ApiResponse response) throws ApiServiceExecutionException {
String provider = (String) request.get(CommonSpec.Provider);
String sEntity = (String) request.get(CommonSpec.Entity);
final JsonObject payload = (JsonObject) request.get(ApiRequest.Payload);
ApiSpace space;
try {
space = MgmUtils.space(consumer, api);
} catch (ApiAccessDeniedException e) {
throw new ApiServiceExecutionException(e.getMessage(), e).status(ApiResponse.FORBIDDEN);
}
DatabaseObject dbo;
try {
Database db = space.feature(Database.class, provider, request);
dbo = db.create(sEntity);
dbo.load(payload);
dbo.save();
} catch (DatabaseException e) {
throw new ApiServiceExecutionException(e.getMessage(), e);
}
return new JsonApiOutput((JsonObject) new JsonObject().set(ApiOutput.Defaults.Id, dbo.getId()).set(ApiOutput.Defaults.Timestamp, Lang.toUTC(dbo.getTimestamp())));
}
Aggregations