Search in sources :

Example 1 with Query

use of com.redhat.cloud.notifications.db.Query in project notifications-backend by RedHatInsights.

the class EndpointResource method getEndpoints.

@GET
@Produces(APPLICATION_JSON)
@RolesAllowed(ConsoleIdentityProvider.RBAC_READ_INTEGRATIONS_ENDPOINTS)
@Parameters({ @Parameter(name = "limit", in = ParameterIn.QUERY, description = "Number of items per page. If the value is 0, it will return all elements", schema = @Schema(type = SchemaType.INTEGER)), @Parameter(name = "pageNumber", in = ParameterIn.QUERY, description = "Page number. Starts at first page (0), if not specified starts at first page.", schema = @Schema(type = SchemaType.INTEGER)) })
public EndpointPage getEndpoints(@Context SecurityContext sec, @BeanParam Query query, @QueryParam("type") List<String> targetType, @QueryParam("active") Boolean activeOnly, @QueryParam("name") String name) {
    RhIdPrincipal principal = (RhIdPrincipal) sec.getUserPrincipal();
    List<Endpoint> endpoints;
    Long count;
    if (targetType != null && targetType.size() > 0) {
        Set<CompositeEndpointType> compositeType = targetType.stream().map(s -> {
            try {
                return CompositeEndpointType.fromString(s);
            } catch (IllegalArgumentException e) {
                throw new BadRequestException("Unknown endpoint type: [" + s + "]", e);
            }
        }).collect(Collectors.toSet());
        endpoints = endpointRepository.getEndpointsPerCompositeType(principal.getAccount(), name, compositeType, activeOnly, query);
        count = endpointRepository.getEndpointsCountPerCompositeType(principal.getAccount(), name, compositeType, activeOnly);
    } else {
        endpoints = endpointRepository.getEndpoints(principal.getAccount(), name, query);
        count = endpointRepository.getEndpointsCount(principal.getAccount(), name);
    }
    return new EndpointPage(endpoints, new HashMap<>(), new Meta(count));
}
Also used : RolesAllowed(javax.annotation.security.RolesAllowed) Produces(javax.ws.rs.Produces) Endpoint(com.redhat.cloud.notifications.models.Endpoint) Path(javax.ws.rs.Path) SecurityContext(javax.ws.rs.core.SecurityContext) NotificationHistory(com.redhat.cloud.notifications.models.NotificationHistory) Valid(javax.validation.Valid) Parameters(org.eclipse.microprofile.openapi.annotations.parameters.Parameters) QueryParam(javax.ws.rs.QueryParam) Consumes(javax.ws.rs.Consumes) SchemaType(org.eclipse.microprofile.openapi.annotations.enums.SchemaType) EndpointPage(com.redhat.cloud.notifications.routers.models.EndpointPage) Map(java.util.Map) JsonObject(io.vertx.core.json.JsonObject) BadRequestException(javax.ws.rs.BadRequestException) APPLICATION_JSON(javax.ws.rs.core.MediaType.APPLICATION_JSON) APIResponse(org.eclipse.microprofile.openapi.annotations.responses.APIResponse) DELETE(javax.ws.rs.DELETE) Application(com.redhat.cloud.notifications.models.Application) CamelProperties(com.redhat.cloud.notifications.models.CamelProperties) EndpointProperties(com.redhat.cloud.notifications.models.EndpointProperties) Context(javax.ws.rs.core.Context) Transactional(javax.transaction.Transactional) RbacGroupValidator(com.redhat.cloud.notifications.auth.rbac.RbacGroupValidator) Set(java.util.Set) InternalServerErrorException(javax.ws.rs.InternalServerErrorException) UUID(java.util.UUID) NotNull(javax.validation.constraints.NotNull) Collectors(java.util.stream.Collectors) BeanParam(javax.ws.rs.BeanParam) NotFoundException(javax.ws.rs.NotFoundException) RequestEmailSubscriptionProperties(com.redhat.cloud.notifications.routers.models.RequestEmailSubscriptionProperties) List(java.util.List) Response(javax.ws.rs.core.Response) EndpointType(com.redhat.cloud.notifications.models.EndpointType) ParameterIn(org.eclipse.microprofile.openapi.annotations.enums.ParameterIn) Parameter(org.eclipse.microprofile.openapi.annotations.parameters.Parameter) RhIdPrincipal(com.redhat.cloud.notifications.auth.principal.rhid.RhIdPrincipal) TEXT_PLAIN(javax.ws.rs.core.MediaType.TEXT_PLAIN) CompositeEndpointType(com.redhat.cloud.notifications.models.CompositeEndpointType) PathParam(javax.ws.rs.PathParam) EmailSubscriptionProperties(com.redhat.cloud.notifications.models.EmailSubscriptionProperties) GET(javax.ws.rs.GET) Logger(org.jboss.logging.Logger) Constants(com.redhat.cloud.notifications.Constants) EndpointRepository(com.redhat.cloud.notifications.db.repositories.EndpointRepository) HashMap(java.util.HashMap) ArrayList(java.util.ArrayList) Inject(javax.inject.Inject) BridgeAuth(com.redhat.cloud.notifications.openbridge.BridgeAuth) EmailSubscriptionRepository(com.redhat.cloud.notifications.db.repositories.EmailSubscriptionRepository) ConsoleIdentityProvider(com.redhat.cloud.notifications.auth.ConsoleIdentityProvider) Content(org.eclipse.microprofile.openapi.annotations.media.Content) EmailSubscriptionType(com.redhat.cloud.notifications.models.EmailSubscriptionType) ApplicationRepository(com.redhat.cloud.notifications.db.repositories.ApplicationRepository) Meta(com.redhat.cloud.notifications.routers.models.Meta) POST(javax.ws.rs.POST) RestClient(org.eclipse.microprofile.rest.client.inject.RestClient) Schema(org.eclipse.microprofile.openapi.annotations.media.Schema) Query(com.redhat.cloud.notifications.db.Query) BridgeApiService(com.redhat.cloud.notifications.openbridge.BridgeApiService) NotificationRepository(com.redhat.cloud.notifications.db.repositories.NotificationRepository) Bridge(com.redhat.cloud.notifications.openbridge.Bridge) MAX_NOTIFICATION_HISTORY_RESULTS(com.redhat.cloud.notifications.db.repositories.NotificationRepository.MAX_NOTIFICATION_HISTORY_RESULTS) PUT(javax.ws.rs.PUT) ConfigProperty(org.eclipse.microprofile.config.inject.ConfigProperty) CompositeEndpointType(com.redhat.cloud.notifications.models.CompositeEndpointType) EndpointPage(com.redhat.cloud.notifications.routers.models.EndpointPage) Meta(com.redhat.cloud.notifications.routers.models.Meta) Endpoint(com.redhat.cloud.notifications.models.Endpoint) RhIdPrincipal(com.redhat.cloud.notifications.auth.principal.rhid.RhIdPrincipal) BadRequestException(javax.ws.rs.BadRequestException) RolesAllowed(javax.annotation.security.RolesAllowed) Parameters(org.eclipse.microprofile.openapi.annotations.parameters.Parameters) Produces(javax.ws.rs.Produces) GET(javax.ws.rs.GET)

Aggregations

Constants (com.redhat.cloud.notifications.Constants)1 ConsoleIdentityProvider (com.redhat.cloud.notifications.auth.ConsoleIdentityProvider)1 RhIdPrincipal (com.redhat.cloud.notifications.auth.principal.rhid.RhIdPrincipal)1 RbacGroupValidator (com.redhat.cloud.notifications.auth.rbac.RbacGroupValidator)1 Query (com.redhat.cloud.notifications.db.Query)1 ApplicationRepository (com.redhat.cloud.notifications.db.repositories.ApplicationRepository)1 EmailSubscriptionRepository (com.redhat.cloud.notifications.db.repositories.EmailSubscriptionRepository)1 EndpointRepository (com.redhat.cloud.notifications.db.repositories.EndpointRepository)1 NotificationRepository (com.redhat.cloud.notifications.db.repositories.NotificationRepository)1 MAX_NOTIFICATION_HISTORY_RESULTS (com.redhat.cloud.notifications.db.repositories.NotificationRepository.MAX_NOTIFICATION_HISTORY_RESULTS)1 Application (com.redhat.cloud.notifications.models.Application)1 CamelProperties (com.redhat.cloud.notifications.models.CamelProperties)1 CompositeEndpointType (com.redhat.cloud.notifications.models.CompositeEndpointType)1 EmailSubscriptionProperties (com.redhat.cloud.notifications.models.EmailSubscriptionProperties)1 EmailSubscriptionType (com.redhat.cloud.notifications.models.EmailSubscriptionType)1 Endpoint (com.redhat.cloud.notifications.models.Endpoint)1 EndpointProperties (com.redhat.cloud.notifications.models.EndpointProperties)1 EndpointType (com.redhat.cloud.notifications.models.EndpointType)1 NotificationHistory (com.redhat.cloud.notifications.models.NotificationHistory)1 Bridge (com.redhat.cloud.notifications.openbridge.Bridge)1