001/*
002 *  Copyright 2021 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.forms.actions;
017
018import java.util.HashMap;
019import java.util.Map;
020
021import org.apache.avalon.framework.parameters.Parameters;
022import org.apache.avalon.framework.service.ServiceException;
023import org.apache.avalon.framework.service.ServiceManager;
024import org.apache.cocoon.acting.ServiceableAction;
025import org.apache.cocoon.environment.ObjectModelHelper;
026import org.apache.cocoon.environment.Redirector;
027import org.apache.cocoon.environment.Request;
028import org.apache.cocoon.environment.SourceResolver;
029
030import org.ametys.cms.repository.Content;
031import org.ametys.core.cocoon.ActionResultGenerator;
032import org.ametys.core.cocoon.JSonReader;
033import org.ametys.core.right.RightManager;
034import org.ametys.plugins.forms.FormsException;
035import org.ametys.plugins.forms.jcr.FormPropertiesManager;
036import org.ametys.plugins.forms.table.FormTableManager;
037import org.ametys.runtime.authentication.AccessDeniedException;
038
039/**
040 * Get the number of submissions for one calendar for a form
041 */
042public class GetSubmissionAction extends ServiceableAction
043{
044    /** Form table manager. */
045    protected static FormTableManager _formTableManager;
046    /** Form properties manager. */
047    protected FormPropertiesManager _formPropertiesManager;
048    /** Rights manager */
049    protected RightManager _rightManager;
050    
051    @Override
052    public void service(ServiceManager smanager) throws ServiceException
053    {
054        _formTableManager = (FormTableManager) smanager.lookup(FormTableManager.ROLE);
055        _formPropertiesManager = (FormPropertiesManager) smanager.lookup(FormPropertiesManager.ROLE);
056        _rightManager = (RightManager) smanager.lookup(RightManager.ROLE);
057        super.service(smanager);
058    }
059    
060    public Map act(Redirector redirector, SourceResolver resolver, Map objectModel, String source, Parameters parameters) throws Exception
061    {
062        Map<String, Object> result = new HashMap<>();
063        Request request = ObjectModelHelper.getRequest(objectModel);
064        String formId = request.getParameter("formId");
065        Content content = _formPropertiesManager.getFormContent(formId);
066
067        if (!_rightManager.currentUserHasReadAccess(content))
068        {
069            throw new AccessDeniedException("Access denied to form " + formId);
070        }
071        
072        int submissions = getTotalSubmissions(formId);
073        result.put("submissions", submissions);
074        result.put("success", true);
075        request.setAttribute(JSonReader.OBJECT_TO_READ, result);
076        request.setAttribute(ActionResultGenerator.MAP_REQUEST_ATTR, result);
077        return EMPTY_MAP;
078    }
079
080
081    /**
082     * Get the total count of submissions for a form.
083     * @param formId the id of the form
084     * @return the total count of submissions
085     * @throws FormsException if an error occurs.
086     */
087    public static int getTotalSubmissions(String formId) throws FormsException
088    {
089        return _formTableManager.getTotalSubmissions(formId);
090    }
091}