org.graylog.events.rest.EventsResource Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package org.graylog.events.rest;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import org.apache.shiro.authz.annotation.RequiresAuthentication;
import org.graylog.events.event.EventDto;
import org.graylog.events.search.EventsSearchFilter;
import org.graylog.events.search.EventsSearchParameters;
import org.graylog.events.search.EventsSearchResult;
import org.graylog.events.search.EventsSearchService;
import org.graylog2.audit.jersey.NoAuditEvent;
import org.graylog2.plugin.Message;
import org.graylog2.plugin.indexer.searches.timeranges.RelativeRange;
import org.graylog2.plugin.rest.PluginRestResource;
import org.graylog2.shared.rest.resources.RestResource;
import javax.inject.Inject;
import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import java.util.Optional;
import static com.google.common.base.MoreObjects.firstNonNull;
import static org.graylog2.shared.rest.documentation.generator.Generator.CLOUD_VISIBLE;
@Api(value = "Events", description = "Events overview and search", tags = {CLOUD_VISIBLE})
@Path("/events")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
@RequiresAuthentication
public class EventsResource extends RestResource implements PluginRestResource {
private final EventsSearchService searchService;
@Inject
public EventsResource(EventsSearchService searchService) {
this.searchService = searchService;
}
@POST
@Path("/search")
@ApiOperation("Search events")
@NoAuditEvent("Doesn't change any data, only searches for events")
public EventsSearchResult search(@ApiParam(name = "JSON body") final EventsSearchParameters request) {
return searchService.search(firstNonNull(request, EventsSearchParameters.empty()), getSubject());
}
@GET
@Path("{event_id}")
@ApiOperation("Get event by ID")
public Optional getById(@ApiParam(name = "event_id") @PathParam("event_id") final String eventId) {
final EventsSearchParameters parameters = EventsSearchParameters.builder()
.page(1)
.perPage(1)
.timerange(RelativeRange.allTime())
.query(EventDto.FIELD_ID + ":" + eventId)
.filter(EventsSearchFilter.empty())
.sortBy(Message.FIELD_TIMESTAMP)
.sortDirection(EventsSearchParameters.SortDirection.DESC)
.build();
final EventsSearchResult result = searchService.search(parameters, getSubject());
return result.events()
.stream()
.findFirst();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy