org.graylog2.rest.resources.streams.StreamResource 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.graylog2.rest.resources.streams;
import com.codahale.metrics.annotation.Timed;
import com.google.common.base.Strings;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.google.common.collect.Sets;
import com.google.common.util.concurrent.ThreadFactoryBuilder;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses;
import org.apache.shiro.authz.annotation.RequiresAuthentication;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.bson.types.ObjectId;
import org.graylog.grn.GRNTypes;
import org.graylog.plugins.views.startpage.recentActivities.RecentActivityService;
import org.graylog.security.UserContext;
import org.graylog2.audit.AuditEventSender;
import org.graylog2.audit.AuditEventTypes;
import org.graylog2.audit.jersey.AuditEvent;
import org.graylog2.audit.jersey.DefaultFailureContextCreator;
import org.graylog2.audit.jersey.NoAuditEvent;
import org.graylog2.audit.jersey.SuccessContextCreator;
import org.graylog2.database.NotFoundException;
import org.graylog2.database.PaginatedList;
import org.graylog2.database.filtering.DbQueryCreator;
import org.graylog2.indexer.IndexSet;
import org.graylog2.indexer.IndexSetRegistry;
import org.graylog2.indexer.indexset.MongoIndexSetService;
import org.graylog2.plugin.Message;
import org.graylog2.plugin.Tools;
import org.graylog2.plugin.database.Persisted;
import org.graylog2.plugin.database.ValidationException;
import org.graylog2.plugin.streams.Output;
import org.graylog2.plugin.streams.Stream;
import org.graylog2.plugin.streams.StreamRule;
import org.graylog2.rest.bulk.AuditParams;
import org.graylog2.rest.bulk.BulkExecutor;
import org.graylog2.rest.bulk.SequentialBulkExecutor;
import org.graylog2.rest.bulk.model.BulkOperationRequest;
import org.graylog2.rest.bulk.model.BulkOperationResponse;
import org.graylog2.rest.models.streams.requests.UpdateStreamRequest;
import org.graylog2.rest.models.system.outputs.responses.OutputSummary;
import org.graylog2.rest.models.tools.responses.PageListResponse;
import org.graylog2.rest.resources.entities.EntityAttribute;
import org.graylog2.rest.resources.entities.EntityDefaults;
import org.graylog2.rest.resources.entities.FilterOption;
import org.graylog2.rest.resources.entities.Sorting;
import org.graylog2.rest.resources.streams.requests.CloneStreamRequest;
import org.graylog2.rest.resources.streams.requests.CreateStreamRequest;
import org.graylog2.rest.resources.streams.responses.StreamCreatedResponse;
import org.graylog2.rest.resources.streams.responses.StreamListResponse;
import org.graylog2.rest.resources.streams.responses.StreamResponse;
import org.graylog2.rest.resources.streams.responses.TestMatchResponse;
import org.graylog2.search.SearchQueryField;
import org.graylog2.shared.rest.resources.RestResource;
import org.graylog2.shared.security.RestPermissions;
import org.graylog2.streams.PaginatedStreamService;
import org.graylog2.streams.StreamDTO;
import org.graylog2.streams.StreamImpl;
import org.graylog2.streams.StreamRouterEngine;
import org.graylog2.streams.StreamRuleService;
import org.graylog2.streams.StreamService;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import org.joda.time.format.ISODateTimeFormat;
import javax.inject.Inject;
import javax.validation.Valid;
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
import javax.ws.rs.BadRequestException;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.DefaultValue;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import java.net.URI;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.function.Predicate;
import java.util.stream.Collectors;
import static com.google.common.base.MoreObjects.firstNonNull;
import static org.graylog2.shared.rest.documentation.generator.Generator.CLOUD_VISIBLE;
@RequiresAuthentication
@Api(value = "Streams", description = "Manage streams", tags = {CLOUD_VISIBLE})
@Path("/streams")
public class StreamResource extends RestResource {
private static final String DEFAULT_SORT_FIELD = StreamDTO.FIELD_TITLE;
private static final String DEFAULT_SORT_DIRECTION = "asc";
private static final List attributes = List.of(
EntityAttribute.builder().id(StreamDTO.FIELD_ID).title("id").type(SearchQueryField.Type.OBJECT_ID).hidden(true).searchable(true).build(),
EntityAttribute.builder().id(StreamDTO.FIELD_TITLE).title("Title").searchable(true).build(),
EntityAttribute.builder().id(StreamDTO.FIELD_DESCRIPTION).title("Description").searchable(true).build(),
EntityAttribute.builder().id(StreamDTO.FIELD_CREATED_AT).title("Created").type(SearchQueryField.Type.DATE).filterable(true).build(),
EntityAttribute.builder().id(StreamDTO.FIELD_INDEX_SET_ID).title("Index set")
.relatedCollection(MongoIndexSetService.COLLECTION_NAME)
.hidden(true)
.filterable(true)
.build(),
EntityAttribute.builder().id("disabled").title("Status").type(SearchQueryField.Type.BOOLEAN).filterable(true).filterOptions(Set.of(
FilterOption.create("true", "Paused"),
FilterOption.create("false", "Running")
)).build()
);
private static final EntityDefaults settings = EntityDefaults.builder()
.sort(Sorting.create(DEFAULT_SORT_FIELD, Sorting.Direction.valueOf(DEFAULT_SORT_DIRECTION.toUpperCase(Locale.ROOT))))
.build();
private final PaginatedStreamService paginatedStreamService;
private final StreamService streamService;
private final StreamRuleService streamRuleService;
private final StreamRouterEngine.Factory streamRouterEngineFactory;
private final IndexSetRegistry indexSetRegistry;
private final RecentActivityService recentActivityService;
private final BulkExecutor bulkStreamDeleteExecutor;
private final BulkExecutor bulkStreamStartExecutor;
private final BulkExecutor bulkStreamStopExecutor;
private final DbQueryCreator dbQueryCreator;
@Inject
public StreamResource(StreamService streamService,
PaginatedStreamService paginatedStreamService,
StreamRuleService streamRuleService,
StreamRouterEngine.Factory streamRouterEngineFactory,
IndexSetRegistry indexSetRegistry,
RecentActivityService recentActivityService,
AuditEventSender auditEventSender) {
this.streamService = streamService;
this.streamRuleService = streamRuleService;
this.streamRouterEngineFactory = streamRouterEngineFactory;
this.indexSetRegistry = indexSetRegistry;
this.paginatedStreamService = paginatedStreamService;
this.dbQueryCreator = new DbQueryCreator(StreamImpl.FIELD_TITLE, attributes);
this.recentActivityService = recentActivityService;
final SuccessContextCreator successAuditLogContextCreator = (entity, entityClass) ->
Map.of("response_entity",
Map.of("stream_id", entity.getId(),
"title", entity.getTitle()
));
final DefaultFailureContextCreator failureAuditLogContextCreator = new DefaultFailureContextCreator();
this.bulkStreamDeleteExecutor = new SequentialBulkExecutor<>(this::deleteInner, auditEventSender, successAuditLogContextCreator, failureAuditLogContextCreator);
this.bulkStreamStartExecutor = new SequentialBulkExecutor<>(this::resumeInner, auditEventSender, successAuditLogContextCreator, failureAuditLogContextCreator);
this.bulkStreamStopExecutor = new SequentialBulkExecutor<>(this::pauseInner, auditEventSender, successAuditLogContextCreator, failureAuditLogContextCreator);
}
@POST
@Timed
@ApiOperation(value = "Create a stream", response = StreamCreatedResponse.class)
@RequiresPermissions(RestPermissions.STREAMS_CREATE)
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
@AuditEvent(type = AuditEventTypes.STREAM_CREATE)
public Response create(@ApiParam(name = "JSON body", required = true) final CreateStreamRequest cr,
@Context UserContext userContext) throws ValidationException {
// Create stream.
final Stream stream = streamService.create(cr, getCurrentUser().getName());
stream.setDisabled(true);
final IndexSet indexSet = stream.getIndexSet();
checkIndexSet(indexSet);
final Set streamRules = cr.rules().stream()
.map(streamRule -> streamRuleService.create(null, streamRule))
.collect(Collectors.toSet());
final String id = streamService.saveWithRulesAndOwnership(stream, streamRules, userContext.getUser());
var result = new StreamCreatedResponse(id);
final URI streamUri = getUriBuilderToSelf().path(StreamResource.class)
.path("{streamId}")
.build(id);
recentActivityService.create(id, GRNTypes.STREAM, userContext.getUser());
return Response.created(streamUri).entity(result).build();
}
@GET
@Timed
@Path("/paginated")
@ApiOperation(value = "Get a paginated list of streams")
@Produces(MediaType.APPLICATION_JSON)
public PageListResponse getPage(@ApiParam(name = "page") @QueryParam("page") @DefaultValue("1") int page,
@ApiParam(name = "per_page") @QueryParam("per_page") @DefaultValue("50") int perPage,
@ApiParam(name = "query") @QueryParam("query") @DefaultValue("") String query,
@ApiParam(name = "filters") @QueryParam("filters") List filters,
@ApiParam(name = "sort",
value = "The field to sort the result on",
required = true,
allowableValues = "title,description,created_at,updated_at,status")
@DefaultValue(DEFAULT_SORT_FIELD) @QueryParam("sort") String sort,
@ApiParam(name = "order", value = "The sort direction", allowableValues = "asc, desc")
@DefaultValue(DEFAULT_SORT_DIRECTION) @QueryParam("order") String order) {
final Predicate permissionFilter = streamDTO -> isPermitted(RestPermissions.STREAMS_READ, streamDTO.id());
final PaginatedList result = paginatedStreamService
.findPaginated(dbQueryCreator.createDbQuery(filters, query), permissionFilter, page, perPage, sort, order);
final List streamIds = result.stream().map(StreamDTO::id).toList();
final Map> streamRuleMap = streamRuleService.loadForStreamIds(streamIds);
final List streams = result
.stream()
.map(streamDTO -> {
final List rules = streamRuleMap.getOrDefault(streamDTO.id(), Collections.emptyList());
return streamDTO.toBuilder().rules(rules).build();
})
.toList();
final long total = paginatedStreamService.count();
final PaginatedList streamDTOS = new PaginatedList<>(
streams, result.pagination().total(), result.pagination().page(), result.pagination().perPage()
);
return PageListResponse.create(query, streamDTOS.pagination(), total, sort, order, streams, attributes, settings);
}
@GET
@Timed
@ApiOperation(value = "Get a list of all streams")
@Deprecated
@Produces(MediaType.APPLICATION_JSON)
public StreamListResponse get() {
final List streams = streamService.loadAll()
.stream()
.filter(stream -> isPermitted(RestPermissions.STREAMS_READ, stream.getId()))
.toList();
return StreamListResponse.create(streams.size(), streams.stream().map(this::streamToResponse).collect(Collectors.toSet()));
}
@GET
@Path("/enabled")
@Timed
@ApiOperation(value = "Get a list of all enabled streams")
@Produces(MediaType.APPLICATION_JSON)
public StreamListResponse getEnabled() {
final List streams = streamService.loadAllEnabled()
.stream()
.filter(stream -> isPermitted(RestPermissions.STREAMS_READ, stream.getId()))
.toList();
return StreamListResponse.create(streams.size(), streams.stream().map(this::streamToResponse).collect(Collectors.toSet()));
}
@GET
@Path("/{streamId}")
@Timed
@ApiOperation(value = "Get a single stream")
@Produces(MediaType.APPLICATION_JSON)
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Stream not found."),
@ApiResponse(code = 400, message = "Invalid ObjectId.")
})
public StreamResponse get(@ApiParam(name = "streamId", required = true)
@PathParam("streamId") @NotEmpty String streamId) throws NotFoundException {
checkPermission(RestPermissions.STREAMS_READ, streamId);
return streamToResponse(streamService.load(streamId));
}
@PUT
@Timed
@Path("/{streamId}")
@ApiOperation(value = "Update a stream")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Stream not found."),
@ApiResponse(code = 400, message = "Invalid ObjectId.")
})
@AuditEvent(type = AuditEventTypes.STREAM_UPDATE)
public StreamResponse update(@ApiParam(name = "streamId", required = true)
@PathParam("streamId") String streamId,
@ApiParam(name = "JSON body", required = true)
@Valid @NotNull UpdateStreamRequest cr,
@Context UserContext userContext) throws NotFoundException, ValidationException {
checkPermission(RestPermissions.STREAMS_EDIT, streamId);
checkNotEditableStream(streamId, "The stream cannot be edited.");
final Stream stream = streamService.load(streamId);
if (!Strings.isNullOrEmpty(cr.title())) {
stream.setTitle(cr.title().strip());
}
if (!Strings.isNullOrEmpty(cr.description())) {
stream.setDescription(cr.description());
}
if (cr.matchingType() != null) {
try {
stream.setMatchingType(Stream.MatchingType.valueOf(cr.matchingType()));
} catch (IllegalArgumentException e) {
throw new BadRequestException("Invalid matching type '" + cr.matchingType()
+ "' specified. Should be one of: " + Arrays.toString(Stream.MatchingType.values()));
}
}
final Boolean removeMatchesFromDefaultStream = cr.removeMatchesFromDefaultStream();
if (removeMatchesFromDefaultStream != null) {
stream.setRemoveMatchesFromDefaultStream(removeMatchesFromDefaultStream);
}
// Apparently we are sending partial resources sometimes so do not overwrite the index set
// id if it's null/empty in the update request.
if (!Strings.isNullOrEmpty(cr.indexSetId())) {
stream.setIndexSetId(cr.indexSetId());
}
final IndexSet indexSet = indexSetRegistry.get(stream.getIndexSetId())
.orElseThrow(() -> new BadRequestException("Index set with ID <" + stream.getIndexSetId() + "> does not exist!"));
if (!indexSet.getConfig().isWritable()) {
throw new BadRequestException("Assigned index set must be writable!");
}
if (!indexSet.getConfig().isRegularIndex()) {
throw new BadRequestException("Assigned index set is not usable");
}
streamService.save(stream);
recentActivityService.update(streamId, GRNTypes.STREAM, userContext.getUser());
return streamToResponse(stream);
}
@DELETE
@Path("/{streamId}")
@Timed
@ApiOperation(value = "Delete a stream")
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Stream not found."),
@ApiResponse(code = 400, message = "Invalid ObjectId.")
})
@AuditEvent(type = AuditEventTypes.STREAM_DELETE)
public void delete(@ApiParam(name = "streamId", required = true) @PathParam("streamId") String streamId,
@Context UserContext userContext) throws NotFoundException {
deleteInner(streamId, userContext);
}
private Stream deleteInner(String streamId, UserContext userContext) throws NotFoundException {
checkPermission(RestPermissions.STREAMS_EDIT, streamId);
checkNotEditableStream(streamId, "The stream cannot be deleted.");
final Stream stream = streamService.load(streamId);
recentActivityService.delete(streamId, GRNTypes.STREAM, stream.getTitle(), userContext.getUser());
streamService.destroy(stream);
return stream;
}
@POST
@Path("/bulk_delete")
@Consumes(MediaType.APPLICATION_JSON)
@Timed
@ApiOperation(value = "Delete a bulk of streams", response = BulkOperationResponse.class)
@NoAuditEvent("Audit events triggered manually")
public Response bulkDelete(@ApiParam(name = "Entities to remove", required = true) final BulkOperationRequest bulkOperationRequest,
@Context final UserContext userContext) {
final BulkOperationResponse response = bulkStreamDeleteExecutor.executeBulkOperation(
bulkOperationRequest,
userContext,
new AuditParams(AuditEventTypes.STREAM_DELETE, "streamId", Stream.class));
return Response.status(Response.Status.OK)
.entity(response)
.build();
}
@POST
@Path("/bulk_pause")
@Consumes(MediaType.APPLICATION_JSON)
@Timed
@ApiOperation(value = "Pause a bulk of streams", response = BulkOperationResponse.class)
@NoAuditEvent("Audit events triggered manually")
public Response bulkPause(@ApiParam(name = "Streams to pause", required = true) final BulkOperationRequest bulkOperationRequest,
@Context final UserContext userContext) {
final BulkOperationResponse response = bulkStreamStopExecutor.executeBulkOperation(
bulkOperationRequest,
userContext,
new AuditParams(AuditEventTypes.STREAM_STOP, "streamId", Stream.class));
return Response.status(Response.Status.OK)
.entity(response)
.build();
}
@POST
@Path("/bulk_resume")
@Consumes(MediaType.APPLICATION_JSON)
@Timed
@ApiOperation(value = "Resume a bulk of streams", response = BulkOperationResponse.class)
@NoAuditEvent("Audit events triggered manually")
public Response bulkResume(@ApiParam(name = "Streams to resume", required = true) final BulkOperationRequest bulkOperationRequest,
@Context final UserContext userContext) {
final BulkOperationResponse response = bulkStreamStartExecutor.executeBulkOperation(
bulkOperationRequest,
userContext,
new AuditParams(AuditEventTypes.STREAM_START, "streamId", Stream.class));
return Response.status(Response.Status.OK)
.entity(response)
.build();
}
@POST
@Path("/{streamId}/pause")
@Timed
@ApiOperation(value = "Pause a stream")
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Stream not found."),
@ApiResponse(code = 400, message = "Invalid or missing Stream id.")
})
@AuditEvent(type = AuditEventTypes.STREAM_STOP)
public void pause(@ApiParam(name = "streamId", required = true)
@PathParam("streamId") @NotEmpty String streamId) throws NotFoundException, ValidationException {
pauseInner(streamId, null);
}
private Stream pauseInner(String streamId, UserContext userContext) throws NotFoundException, ValidationException {
checkAnyPermission(new String[]{RestPermissions.STREAMS_CHANGESTATE, RestPermissions.STREAMS_EDIT}, streamId);
checkNotEditableStream(streamId, "The stream cannot be paused.");
final Stream stream = streamService.load(streamId);
streamService.pause(stream);
return stream;
}
@POST
@Path("/{streamId}/resume")
@Timed
@ApiOperation(value = "Resume a stream")
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Stream not found."),
@ApiResponse(code = 400, message = "Invalid or missing Stream id.")
})
@AuditEvent(type = AuditEventTypes.STREAM_START)
public void resume(@ApiParam(name = "streamId", required = true)
@PathParam("streamId") @NotEmpty String streamId,
@Context UserContext userContext) throws NotFoundException, ValidationException {
resumeInner(streamId, null);
}
private Stream resumeInner(String streamId, UserContext userContext) throws NotFoundException, ValidationException {
checkAnyPermission(new String[]{RestPermissions.STREAMS_CHANGESTATE, RestPermissions.STREAMS_EDIT}, streamId);
checkNotEditableStream(streamId, "The stream cannot be resumed.");
final Stream stream = streamService.load(streamId);
streamService.resume(stream);
return stream;
}
@POST
@Path("/{streamId}/testMatch")
@Timed
@ApiOperation(value = "Test matching of a stream against a supplied message")
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Stream not found."),
@ApiResponse(code = 400, message = "Invalid or missing Stream id.")
})
@NoAuditEvent("only used for testing stream matches")
public TestMatchResponse testMatch(@ApiParam(name = "streamId", required = true)
@PathParam("streamId") String streamId,
@ApiParam(name = "JSON body", required = true)
@NotNull Map> serialisedMessage) throws NotFoundException {
checkPermission(RestPermissions.STREAMS_READ, streamId);
final Stream stream = streamService.load(streamId);
// This is such a hack...
final Map m = new HashMap<>(serialisedMessage.get("message"));
final String timeStamp = firstNonNull((String) m.get(Message.FIELD_TIMESTAMP),
DateTime.now(DateTimeZone.UTC).toString(ISODateTimeFormat.dateTime()));
m.put(Message.FIELD_TIMESTAMP, Tools.dateTimeFromString(timeStamp));
final Message message = new Message(m);
final ExecutorService executor = Executors.newSingleThreadExecutor(
new ThreadFactoryBuilder()
.setNameFormat("stream-" + streamId + "-test-match-%d")
.build()
);
final StreamRouterEngine streamRouterEngine = streamRouterEngineFactory.create(Lists.newArrayList(stream), executor);
final List streamTestMatches = streamRouterEngine.testMatch(message);
final StreamRouterEngine.StreamTestMatch streamTestMatch = streamTestMatches.get(0);
final Map rules = Maps.newHashMap();
for (Map.Entry match : streamTestMatch.getMatches().entrySet()) {
rules.put(match.getKey().getId(), match.getValue());
}
return TestMatchResponse.create(streamTestMatch.isMatched(), rules);
}
@POST
@Path("/{streamId}/clone")
@Timed
@ApiOperation(value = "Clone a stream", response = StreamCreatedResponse.class)
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Stream not found."),
@ApiResponse(code = 400, message = "Invalid or missing Stream id.")
})
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
@AuditEvent(type = AuditEventTypes.STREAM_CREATE)
public Response cloneStream(@ApiParam(name = "streamId", required = true) @PathParam("streamId") String streamId,
@ApiParam(name = "JSON body", required = true) @Valid @NotNull CloneStreamRequest cr,
@Context UserContext userContext) throws ValidationException, NotFoundException {
checkPermission(RestPermissions.STREAMS_CREATE);
checkPermission(RestPermissions.STREAMS_READ, streamId);
checkNotEditableStream(streamId, "The stream cannot be cloned.");
final Stream sourceStream = streamService.load(streamId);
final String creatorUser = getCurrentUser().getName();
final List sourceStreamRules = streamRuleService.loadForStream(sourceStream);
final Set newStreamRules = sourceStreamRules
.stream()
.map(streamRule -> streamRuleService.copy(null, streamRule))
.collect(Collectors.toSet());
final Map streamData = Map.of(
StreamImpl.FIELD_TITLE, cr.title().strip(),
StreamImpl.FIELD_DESCRIPTION, cr.description(),
StreamImpl.FIELD_CREATOR_USER_ID, creatorUser,
StreamImpl.FIELD_CREATED_AT, Tools.nowUTC(),
StreamImpl.FIELD_MATCHING_TYPE, sourceStream.getMatchingType().toString(),
StreamImpl.FIELD_REMOVE_MATCHES_FROM_DEFAULT_STREAM, cr.removeMatchesFromDefaultStream(),
StreamImpl.FIELD_DISABLED, true,
StreamImpl.FIELD_INDEX_SET_ID, cr.indexSetId()
);
final Stream stream = streamService.create(streamData);
final String savedStreamId = streamService.saveWithRulesAndOwnership(stream, newStreamRules, userContext.getUser());
final ObjectId savedStreamObjectId = new ObjectId(savedStreamId);
final Set outputIds = sourceStream.getOutputs().stream()
.map(Output::getId)
.map(ObjectId::new)
.collect(Collectors.toSet());
streamService.addOutputs(savedStreamObjectId, outputIds);
var result = new StreamCreatedResponse(savedStreamId);
final URI streamUri = getUriBuilderToSelf().path(StreamResource.class)
.path("{streamId}")
.build(savedStreamId);
return Response.created(streamUri).entity(result).build();
}
@PUT
@Path("/indexSet/{indexSetId}")
@Timed
@ApiOperation(value = "Assign multiple streams to index set")
@ApiResponses(value = {
@ApiResponse(code = 404, message = "Index set not found.")
})
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
@AuditEvent(type = AuditEventTypes.STREAM_UPDATE)
public Response assignToIndexSet(@ApiParam(name = "indexSetId", required = true) @PathParam("indexSetId") String indexSetId,
@ApiParam(name = "JSON body", required = true) @Valid @NotNull List streamIds) {
checkPermission(RestPermissions.INDEXSETS_READ, indexSetId);
streamIds.forEach(streamId -> {
checkPermission(RestPermissions.STREAMS_EDIT, streamId);
checkNotEditableStream(streamId, "The stream with id <" + streamId + "> cannot be edited.");
});
final Set existingStreams = streamService.loadByIds(streamIds)
.stream()
.map(Persisted::getId)
.collect(Collectors.toSet());
final Set missingStreams = Sets.difference(new HashSet<>(streamIds), existingStreams);
if (!missingStreams.isEmpty()) {
return Response.status(Response.Status.NOT_FOUND).entity("Missing streams: " + missingStreams).build();
}
return indexSetRegistry.get(indexSetId)
.map(indexSet -> {
checkIndexSet(indexSet);
streamService.addToIndexSet(indexSetId, streamIds);
return Response.ok().build();
})
.orElse(Response.status(Response.Status.NOT_FOUND).build());
}
private void checkIndexSet(IndexSet indexSet) {
if (!indexSet.getConfig().isWritable()) {
throw new BadRequestException("Assigned index set must be writable!");
} else if (!indexSet.getConfig().isRegularIndex()) {
throw new BadRequestException("Assigned index set is not usable");
}
}
private StreamResponse streamToResponse(Stream stream) {
return StreamResponse.create(
stream.getId(),
(String) stream.getFields().get(StreamImpl.FIELD_CREATOR_USER_ID),
outputsToSummaries(stream.getOutputs()),
stream.getMatchingType().name(),
stream.getDescription(),
stream.getFields().get(StreamImpl.FIELD_CREATED_AT).toString(),
stream.getDisabled(),
stream.getStreamRules(),
stream.getTitle(),
stream.getContentPack(),
stream.isDefaultStream(),
stream.getRemoveMatchesFromDefaultStream(),
stream.getIndexSetId()
);
}
private Collection outputsToSummaries(Collection
© 2015 - 2024 Weber Informatics LLC | Privacy Policy