blob: 318ccdbc5a1443f57c61cc890bbace03a7d38aeb [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.syncope.client.console.rest;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Date;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import javax.ws.rs.core.Response;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.syncope.client.lib.batch.BatchRequest;
import org.apache.syncope.common.lib.to.ExecTO;
import org.apache.syncope.common.lib.to.JobTO;
import org.apache.syncope.common.lib.to.ReportTO;
import org.apache.syncope.common.lib.to.ReportTemplateTO;
import org.apache.syncope.common.lib.types.JobAction;
import org.apache.syncope.common.lib.types.ReportExecExportFormat;
import org.apache.syncope.common.lib.types.ReportTemplateFormat;
import org.apache.syncope.common.rest.api.batch.BatchRequestItem;
import org.apache.syncope.common.rest.api.batch.BatchResponseItem;
import org.apache.syncope.common.rest.api.beans.ExecQuery;
import org.apache.syncope.common.rest.api.beans.ExecuteQuery;
import org.apache.syncope.common.rest.api.service.ReportService;
import org.apache.syncope.common.rest.api.service.ReportTemplateService;
import org.apache.wicket.extensions.markup.html.repeater.util.SortParam;
public class ReportRestClient extends BaseRestClient
implements ExecutionRestClient, TemplateRestClient<ReportTemplateTO, ReportTemplateFormat> {
private static final long serialVersionUID = 1644689667998953604L;
public static ReportTO read(final String reportKey) {
return getService(ReportService.class).read(reportKey);
}
public static List<ReportTO> list() {
return getService(ReportService.class).list();
}
public static JobTO getJob(final String key) {
return getService(ReportService.class).getJob(key);
}
public static List<JobTO> listJobs() {
return getService(ReportService.class).listJobs();
}
public static void actionJob(final String refKey, final JobAction jobAction) {
getService(ReportService.class).actionJob(refKey, jobAction);
}
public static void create(final ReportTO reportTO) {
getService(ReportService.class).create(reportTO);
}
public static void update(final ReportTO reportTO) {
getService(ReportService.class).update(reportTO);
}
/**
* Delete specified report.
*
* @param reportKey report to delete
*/
public static void delete(final String reportKey) {
getService(ReportService.class).delete(reportKey);
}
@Override
public void startExecution(final String reportKey, final Date start) {
getService(ReportService.class).execute(new ExecuteQuery.Builder().key(reportKey).startAt(start).build());
}
@Override
public void deleteExecution(final String reportExecKey) {
getService(ReportService.class).deleteExecution(reportExecKey);
}
@Override
public List<ExecTO> listRecentExecutions(final int max) {
return getService(ReportService.class).listRecentExecutions(max);
}
public static Response exportExecutionResult(final String executionKey, final ReportExecExportFormat fmt) {
return getService(ReportService.class).exportExecutionResult(executionKey, fmt);
}
@Override
public List<ExecTO> listExecutions(
final String taskKey, final int page, final int size, final SortParam<String> sort) {
return getService(ReportService.class).
listExecutions(new ExecQuery.Builder().key(taskKey).page(page).size(size).
orderBy(toOrderBy(sort)).build()).getResult();
}
@Override
public int countExecutions(final String taskKey) {
return getService(ReportService.class).
listExecutions(new ExecQuery.Builder().key(taskKey).page(1).size(0).build()).getTotalCount();
}
@Override
public List<ReportTemplateTO> listTemplates() {
return getService(ReportTemplateService.class).list();
}
@Override
public void createTemplate(final ReportTemplateTO reportTemplateTO) {
getService(ReportTemplateService.class).create(reportTemplateTO);
}
@Override
public void deleteTemplate(final String key) {
getService(ReportTemplateService.class).delete(key);
}
@Override
public ReportTemplateTO readTemplate(final String key) {
return getService(ReportTemplateService.class).read(key);
}
@Override
public String readTemplateFormat(final String key, final ReportTemplateFormat format) {
try {
return IOUtils.toString(InputStream.class.cast(
getService(ReportTemplateService.class).getFormat(key, format).getEntity()),
StandardCharsets.UTF_8);
} catch (Exception e) {
LOG.error("Error retrieving report template {} as {}", key, format, e);
return StringUtils.EMPTY;
}
}
@Override
public void updateTemplateFormat(final String key, final String content, final ReportTemplateFormat format) {
getService(ReportTemplateService.class).setFormat(
key, format, IOUtils.toInputStream(content, StandardCharsets.UTF_8));
}
@Override
public Map<String, String> batch(final BatchRequest batchRequest) {
List<BatchRequestItem> batchRequestItems = new ArrayList<>(batchRequest.getItems());
Map<String, String> result = new LinkedHashMap<>();
try {
List<BatchResponseItem> batchResponseItems = batchRequest.commit().getItems();
for (int i = 0; i < batchResponseItems.size(); i++) {
String status = getStatus(batchResponseItems.get(i).getStatus());
if (batchRequestItems.get(i).getRequestURI().contains("/execute")) {
result.put(StringUtils.substringAfterLast(
StringUtils.substringBefore(batchRequestItems.get(i).getRequestURI(), "/execute"), "/"),
status);
} else {
result.put(StringUtils.substringAfterLast(
batchRequestItems.get(i).getRequestURI(), "/"), status);
}
}
} catch (IOException e) {
LOG.error("While processing Batch response", e);
}
return result;
}
}