use of io.swagger.v3.oas.models.responses.ApiResponses in project oxTrust by GluuFederation.
the class ClientWebResource method deleteClient.
@DELETE
@Path(ApiConstants.INUM_PARAM_PATH)
@Operation(summary = "Delete OIDC client ", description = "Delete an openidconnect client")
@ApiResponses(value = { @ApiResponse(responseCode = "200", content = @Content(schema = @Schema(implementation = OxAuthClient[].class)), description = "Success"), @ApiResponse(responseCode = "500", description = "Server error") })
@ProtectedApi(scopes = { WRITE_ACCESS })
public Response deleteClient(@PathParam(ApiConstants.INUM) @NotNull String inum) {
log(logger, "Delete client " + inum);
try {
Objects.requireNonNull(inum);
OxAuthClient client = clientService.getClientByInum(inum);
if (client != null) {
clientService.removeClient(client);
return Response.ok().build();
} else {
return Response.status(Response.Status.NOT_FOUND).build();
}
} catch (Exception e) {
log(logger, e);
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build();
}
}
use of io.swagger.v3.oas.models.responses.ApiResponses in project oxTrust by GluuFederation.
the class ClientWebResource method updateClient.
@PUT
@Operation(summary = "Update OIDC client", description = "Update openidconnect client")
@ApiResponses(value = { @ApiResponse(responseCode = "200", content = @Content(schema = @Schema(implementation = OxAuthClient.class)), description = "Success"), @ApiResponse(responseCode = "500", description = "Server error") })
@ProtectedApi(scopes = { WRITE_ACCESS })
public Response updateClient(OxAuthClient client) {
try {
Objects.requireNonNull(client, "Attempt to update null client");
String inum = client.getInum();
log(logger, "Update client " + inum);
OxAuthClient existingClient = clientService.getClientByInum(inum);
if (existingClient != null) {
client.setInum(existingClient.getInum());
client.setBaseDn(clientService.getDnForClient(inum));
client.setDeletable(client.getExp() != null);
clientService.updateClient(client);
return Response.ok(clientService.getClientByInum(existingClient.getInum())).build();
} else {
return Response.status(Response.Status.NOT_FOUND).build();
}
} catch (Exception e) {
log(logger, e);
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build();
}
}
use of io.swagger.v3.oas.models.responses.ApiResponses in project oxTrust by GluuFederation.
the class AuthenticationMethodWebResource method getCurrentAuthentication.
@GET
@Operation(summary = "Get current authentication methods", description = "Get current authentication methods")
@ApiResponses(value = { @ApiResponse(responseCode = "200", content = @Content(schema = @Schema(implementation = AuthenticationMethod.class)), description = Constants.RESULT_SUCCESS), @ApiResponse(responseCode = "500", description = "Server error") })
@ProtectedApi(scopes = { READ_ACCESS })
public Response getCurrentAuthentication() {
log(logger, "Processing getCurrentAuthentication()");
try {
GluuConfiguration configuration = configurationService.getConfiguration();
AuthenticationMethod method = new AuthenticationMethod();
method.setDefaultAcr(configuration.getAuthenticationMode());
method.setOxtrustAcr(configuration.getOxTrustAuthenticationMode());
return Response.ok(method).build();
} catch (Exception e) {
log(logger, e);
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build();
}
}
use of io.swagger.v3.oas.models.responses.ApiResponses in project oxTrust by GluuFederation.
the class GroupWebResource method getGroupMembers.
@GET
@Path(ApiConstants.INUM_PARAM_PATH + ApiConstants.GROUP_MEMBERS)
@ApiResponses(value = { @ApiResponse(responseCode = "200", content = @Content(schema = @Schema(implementation = GluuPersonApi[].class)), description = "Success"), @ApiResponse(responseCode = "500", description = "Server error") })
@Operation(summary = "Get group members", description = "Get a group members")
@ProtectedApi(scopes = { WRITE_ACCESS })
public Response getGroupMembers(@PathParam(ApiConstants.INUM) @NotNull String inum) {
log("Get members of group " + inum);
inum = inum.equalsIgnoreCase("") ? null : inum;
try {
Objects.requireNonNull(inum, "inum should not be null");
GluuGroup group = groupService.getGroupByInum(inum);
List<String> members = new ArrayList<String>();
if (group != null) {
GluuGroupApi gluuGroupApi = convert(Arrays.asList(group)).get(0);
members = gluuGroupApi.getMembers();
return Response.ok(computeMembers(members)).build();
} else {
return Response.status(Response.Status.NOT_FOUND).build();
}
} catch (Exception e) {
log(logger, e);
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build();
}
}
use of io.swagger.v3.oas.models.responses.ApiResponses in project oxTrust by GluuFederation.
the class GroupWebResource method deleteGroup.
@DELETE
@Path(ApiConstants.INUM_PARAM_PATH)
@Operation(summary = "Delete group", description = "Delete a group")
@ApiResponses(value = { @ApiResponse(responseCode = "200", description = "Success"), @ApiResponse(responseCode = "500", description = "Server error") })
@ProtectedApi(scopes = { WRITE_ACCESS })
public Response deleteGroup(@PathParam(ApiConstants.INUM) @NotNull String inum) {
log("Delete group having inum " + inum);
try {
Objects.requireNonNull(inum, "inum should not be null");
GluuGroup group = groupService.getGroupByInum(inum);
if (group != null) {
groupService.removeGroup(group);
return Response.ok().build();
} else {
return Response.status(Response.Status.NOT_FOUND).build();
}
} catch (Exception e) {
log(logger, e);
return Response.status(Response.Status.INTERNAL_SERVER_ERROR).build();
}
}
Aggregations