All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.graylog.plugins.views.search.db.SearchDbService Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
/**
 * This file is part of Graylog.
 *
 * Graylog is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Graylog 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
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Graylog.  If not, see .
 */
package org.graylog.plugins.views.search.db;

import com.google.common.collect.Streams;
import com.mongodb.BasicDBObject;
import org.bson.types.ObjectId;
import org.graylog.plugins.views.search.Search;
import org.graylog.plugins.views.search.SearchRequirements;
import org.graylog2.bindings.providers.MongoJackObjectMapperProvider;
import org.graylog2.database.MongoConnection;
import org.graylog2.database.PaginatedList;
import org.mongojack.DBCursor;
import org.mongojack.DBQuery;
import org.mongojack.DBSort;
import org.mongojack.JacksonDBCollection;
import org.mongojack.WriteResult;

import javax.inject.Inject;
import java.util.Collection;
import java.util.Optional;
import java.util.Set;
import java.util.stream.Collectors;
import java.util.stream.Stream;

/**
 * This class is a helper to implement a basic Mongojack-based database service that allows CRUD operations on a single DTO type.
 *
 * 

* Subclasses can add more sophisticated search methods by access the protected "db" property.
* Indices can be added in the constructor. *

*/ public class SearchDbService { protected final JacksonDBCollection db; private final SearchRequirements.Factory searchRequirementsFactory; @Inject protected SearchDbService(MongoConnection mongoConnection, MongoJackObjectMapperProvider mapper, SearchRequirements.Factory searchRequirementsFactory) { this.searchRequirementsFactory = searchRequirementsFactory; db = JacksonDBCollection.wrap(mongoConnection.getDatabase().getCollection("searches"), Search.class, ObjectId.class, mapper.get()); db.createIndex(new BasicDBObject("created_at", 1), new BasicDBObject("unique", false)); } public Optional get(String id) { return Optional.ofNullable(db.findOneById(new ObjectId(id))) .map(this::requirementsForSearch); } public Search save(Search search) { final Search searchToSave = requirementsForSearch(search); if (searchToSave.id() != null) { db.update( DBQuery.is("_id", search.id()), searchToSave, true, false ); return searchToSave; } final WriteResult save = db.insert(searchToSave); return save.getSavedObject(); } public PaginatedList findPaginated(DBQuery.Query search, DBSort.SortBuilder sort, int page, int perPage) { final DBCursor cursor = db.find(search) .sort(sort) .limit(perPage) .skip(perPage * Math.max(0, page - 1)); return new PaginatedList<>( Streams.stream((Iterable) cursor).map(this::requirementsForSearch).collect(Collectors.toList()), cursor.count(), page, perPage ); } public void delete(String id) { db.removeById(new ObjectId(id)); } public Collection findByIds(Set idSet) { return Streams.stream((Iterable) db.find(DBQuery.in("_id", idSet.stream().map(ObjectId::new).collect(Collectors.toList())))) .map(this::requirementsForSearch) .collect(Collectors.toList()); } public Stream streamAll() { return Streams.stream((Iterable) db.find()).map(this::requirementsForSearch); } private Search requirementsForSearch(Search search) { return searchRequirementsFactory.create(search) .rebuildRequirements(Search::requires, (s, newRequirements) -> s.toBuilder().requires(newRequirements).build()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy