blob: d54f69071dd631584dd4bc0ea926c5b7a61ab494 [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.common.rest.api.service;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.enums.ParameterIn;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
import io.swagger.v3.oas.annotations.responses.ApiResponses;
import io.swagger.v3.oas.annotations.security.SecurityRequirement;
import io.swagger.v3.oas.annotations.security.SecurityRequirements;
import io.swagger.v3.oas.annotations.tags.Tag;
import java.util.List;
import javax.validation.constraints.NotNull;
import javax.ws.rs.BeanParam;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
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.core.MediaType;
import org.apache.syncope.common.lib.log.AuditEntry;
import org.apache.syncope.common.lib.log.EventCategory;
import org.apache.syncope.common.lib.log.LogAppender;
import org.apache.syncope.common.lib.log.LogStatement;
import org.apache.syncope.common.lib.log.LoggerTO;
import org.apache.syncope.common.lib.to.PagedResult;
import org.apache.syncope.common.lib.types.LoggerType;
import org.apache.syncope.common.rest.api.RESTHeaders;
import org.apache.syncope.common.rest.api.beans.AuditQuery;
/**
* REST operations for logging and auditing.
*/
@Tag(name = "Loggers")
@SecurityRequirements({
@SecurityRequirement(name = "BasicAuthentication"),
@SecurityRequirement(name = "Bearer") })
@Path("loggers")
public interface LoggerService extends JAXRSService {
/**
* Returns the list of memory appenders available in the current logging configuration.
*
* @return the list of memory appenders available in the current logging configuration
*/
@GET
@Path("memoryAppenders")
@Produces({ MediaType.APPLICATION_JSON, RESTHeaders.APPLICATION_YAML, MediaType.APPLICATION_XML })
List<LogAppender> memoryAppenders();
/**
* Return the last log statements available in the provided memory appender.
*
* @param memoryAppender memory appender name
* @return the last log statements available in the provided memory appender
*/
@GET
@Path("memoryAppenders/{memoryAppender}/lastLogStatements")
@Produces({ MediaType.APPLICATION_JSON, RESTHeaders.APPLICATION_YAML, MediaType.APPLICATION_XML })
List<LogStatement> getLastLogStatements(@NotNull @PathParam("memoryAppender") String memoryAppender);
/**
* Returns the list of all managed events in audit.
*
* @return list of all managed events in audit
*/
@GET
@Path("events")
@Produces({ MediaType.APPLICATION_JSON, RESTHeaders.APPLICATION_YAML, MediaType.APPLICATION_XML })
List<EventCategory> events();
/**
* Returns a paged list of audit entries matching the given query.
*
* @param auditQuery query conditions
* @return paged list of audit entries matching the given query
*/
@GET
@Path("AUDIT/entries")
@Produces({ MediaType.APPLICATION_JSON, RESTHeaders.APPLICATION_YAML, MediaType.APPLICATION_XML })
PagedResult<AuditEntry> search(@BeanParam AuditQuery auditQuery);
/**
* Create an audit entry.
*
* @param auditEntry audit entry to persist.
*/
@POST
@Path("AUDIT/entries")
@Consumes({ MediaType.APPLICATION_JSON, RESTHeaders.APPLICATION_YAML, MediaType.APPLICATION_XML })
void create(@NotNull AuditEntry auditEntry);
/**
* Returns logger with matching type and name.
*
* @param type LoggerType to be selected.
* @param name Logger name to be read
* @return logger with matching type and name
*/
@GET
@Path("{type}/{name}")
@Produces({ MediaType.APPLICATION_JSON, RESTHeaders.APPLICATION_YAML, MediaType.APPLICATION_XML })
LoggerTO read(@NotNull @PathParam("type") LoggerType type, @NotNull @PathParam("name") String name);
/**
* Returns a list of loggers with matching type.
*
* @param type LoggerType to be selected
* @return list of loggers with matching type
*/
@GET
@Path("{type}")
@Produces({ MediaType.APPLICATION_JSON, RESTHeaders.APPLICATION_YAML, MediaType.APPLICATION_XML })
List<LoggerTO> list(@NotNull @PathParam("type") LoggerType type);
/**
* Creates or updates (if existing) the logger with matching name.
*
* @param type LoggerType to be selected
* @param logger Logger to be created or updated
*/
@Parameter(name = "key", description = "Logger's key", in = ParameterIn.PATH, schema =
@Schema(type = "string"))
@ApiResponses(
@ApiResponse(responseCode = "204", description = "Operation was successful"))
@PUT
@Path("{type}/{key}")
@Consumes({ MediaType.APPLICATION_JSON, RESTHeaders.APPLICATION_YAML, MediaType.APPLICATION_XML })
@Produces({ MediaType.APPLICATION_JSON, RESTHeaders.APPLICATION_YAML, MediaType.APPLICATION_XML })
void update(@NotNull @PathParam("type") LoggerType type, @NotNull LoggerTO logger);
/**
* Deletes the logger with matching name.
*
* @param type LoggerType to be selected
* @param name Logger name to be deleted
*/
@ApiResponses(
@ApiResponse(responseCode = "204", description = "Operation was successful"))
@DELETE
@Path("{type}/{name}")
@Produces({ MediaType.APPLICATION_JSON, RESTHeaders.APPLICATION_YAML, MediaType.APPLICATION_XML })
void delete(@NotNull @PathParam("type") LoggerType type, @NotNull @PathParam("name") String name);
}