org.graylog2.restclient.models.ExtractorService Maven / Gradle / Ivy
The 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.graylog2.restclient.models;
import com.google.common.collect.Lists;
import org.graylog2.rest.models.system.inputs.extractors.requests.CreateExtractorRequest;
import org.graylog2.rest.models.system.inputs.extractors.requests.OrderExtractorsRequest;
import org.graylog2.rest.models.system.inputs.extractors.responses.ExtractorSummary;
import org.graylog2.rest.models.system.inputs.extractors.responses.ExtractorSummaryList;
import org.graylog2.rest.models.system.responses.GrokPatternSummary;
import org.graylog2.restclient.lib.APIException;
import org.graylog2.restclient.lib.ApiClient;
import org.graylog2.restclient.models.api.requests.GrokPatternUpdateRequest;
import org.graylog2.restclient.models.api.responses.system.CreateExtractorResponse;
import org.graylog2.restclient.models.api.responses.system.GrokPatternResponse;
import org.graylog2.restroutes.generated.ExtractorsResource;
import org.graylog2.restroutes.generated.routes;
import play.mvc.Http;
import javax.inject.Inject;
import java.io.IOException;
import java.util.Collection;
import java.util.List;
import java.util.SortedMap;
public class ExtractorService {
private final ApiClient api;
private final Extractor.Factory extractorFactory;
private final ExtractorsResource resource = routes.ExtractorsResource();
@Inject
private ExtractorService(ApiClient api, Extractor.Factory extractorFactory) {
this.api = api;
this.extractorFactory = extractorFactory;
}
public String create(Node node, Input input, CreateExtractorRequest request) throws IOException, APIException {
final CreateExtractorResponse response = api.path(routes.ExtractorsResource().create(input.getId()), CreateExtractorResponse.class)
.node(node)
.expect(Http.Status.CREATED)
.body(request)
.execute();
return response.extractorId;
}
public void update(String extractorId, Node node, Input input, CreateExtractorRequest request) throws IOException, APIException {
api.path(resource.update(input.getId(), extractorId))
.node(node)
.expect(Http.Status.OK)
.body(request)
.execute();
}
public void delete(Node node, Input input, String extractorId) throws IOException, APIException {
api.path(resource.terminate(input.getId(), extractorId))
.node(node)
.expect(Http.Status.NO_CONTENT)
.execute();
}
public Extractor load(Node node, Input input, String extractorId) throws IOException, APIException {
final ExtractorSummary extractorSummaryResponse = api.path(resource.single(input.getId(), extractorId), ExtractorSummary.class)
.node(node)
.execute();
return extractorFactory.fromResponse(extractorSummaryResponse);
}
public List all(Node node, Input input) throws IOException, APIException {
List extractors = Lists.newArrayList();
final ExtractorSummaryList extractorsList = api.path(resource.list(input.getId()), ExtractorSummaryList.class)
.node(node)
.execute();
for (ExtractorSummary ex : extractorsList.extractors()) {
extractors.add(extractorFactory.fromResponse(ex));
}
return extractors;
}
public void order(String inputId, SortedMap order) throws APIException, IOException {
final OrderExtractorsRequest req = OrderExtractorsRequest.create(order);
api.path(resource.order(inputId))
.body(req)
.onlyMasterNode()
.execute();
}
public Collection allGrokPatterns() throws APIException, IOException {
final GrokPatternResponse response =
api.path(routes.GrokResource().listGrokPatterns(), GrokPatternResponse.class)
.expect(Http.Status.OK)
.execute();
return response.patterns;
}
public GrokPatternSummary createGrokPattern(GrokPatternSummary pattern) throws APIException, IOException {
final GrokPatternSummary grokPattern = api.path(routes.GrokResource().createPattern(), GrokPatternSummary.class)
.body(pattern)
.expect(Http.Status.CREATED)
.execute();
return grokPattern;
}
public void updateGrokPattern(GrokPatternSummary pattern) throws APIException, IOException {
api.path(routes.GrokResource().updatePattern(pattern.id))
.body(pattern)
.execute();
}
public void deleteGrokPattern(GrokPatternSummary pattern) throws APIException, IOException {
api.path(routes.GrokResource().removePattern(pattern.id)).execute();
}
public void bulkLoadGrokPatterns(Collection patterns, boolean replace) throws APIException, IOException {
api.path(routes.GrokResource().bulkUpdatePatterns())
.queryParam("replace", String.valueOf(replace))
.body(new GrokPatternUpdateRequest(patterns))
.execute();
}
}