001/*
002 *  Copyright 2025 Anyware Services
003 *
004 *  Licensed under the Apache License, Version 2.0 (the "License");
005 *  you may not use this file except in compliance with the License.
006 *  You may obtain a copy of the License at
007 *
008 *      http://www.apache.org/licenses/LICENSE-2.0
009 *
010 *  Unless required by applicable law or agreed to in writing, software
011 *  distributed under the License is distributed on an "AS IS" BASIS,
012 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 *  See the License for the specific language governing permissions and
014 *  limitations under the License.
015 */
016package org.ametys.plugins.repositoryapp.ui;
017
018import java.util.List;
019import java.util.Map;
020
021import org.apache.avalon.framework.service.ServiceException;
022import org.apache.avalon.framework.service.ServiceManager;
023
024import org.ametys.core.ui.Callable;
025import org.ametys.core.ui.StaticClientSideElement;
026import org.ametys.plugins.core.ui.log.LogManager;
027
028/**
029 * Client side element for the maintenance task tool
030 */
031public class MaintenanceTaskToolClientSideElement extends StaticClientSideElement
032{
033    /** The log manager */
034    protected LogManager _logManager;
035    private List<String> _logCategories = List.of("org.ametys.workspaces.repository.maintenance", "org.ametys.plugins.repository.maintenance");
036
037    @Override
038    public void service(ServiceManager smanager) throws ServiceException
039    {
040        _logManager = (LogManager) smanager.lookup(LogManager.ROLE);
041    }
042    
043    /**
044     * Get the log events
045     * @param timestamp Events after this timestamp will be retrieved
046     * @param categories Events will be filtered by these categories. If empty, all categories are accepted.
047     * @return the target types
048     */
049    @Callable (rights = "REPOSITORY_Rights_Access", context = "/repository")
050    public List<Map<String, Object>> getEvents (Long timestamp, List<String> categories)
051    {
052        // Filter allowed categories
053        List<String> allowedCategories = categories
054                .stream()
055                .filter(c -> _logCategories.isEmpty() || _logCategories.contains(c))
056                .toList();
057        
058        return _logManager.getEvents(timestamp, allowedCategories);
059    }
060
061}