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.odfweb.schedulable;
017
018import org.apache.avalon.framework.service.ServiceException;
019import org.apache.avalon.framework.service.ServiceManager;
020import org.apache.cocoon.components.ContextHelper;
021import org.apache.cocoon.environment.Request;
022import org.quartz.JobDataMap;
023import org.quartz.JobExecutionContext;
024
025import org.ametys.plugins.core.schedule.Scheduler;
026import org.ametys.web.repository.site.Site;
027import org.ametys.web.repository.site.SiteManager;
028
029/**
030 * Override ODF CatalogPDFExportSchedulable to add the site name in the request
031 */
032public class CatalogPDFExportSchedulable extends org.ametys.odf.schedulable.CatalogPDFExportSchedulable
033{
034    /** The site manager */
035    protected SiteManager _siteManager;
036    
037    @Override
038    public void service(ServiceManager manager) throws ServiceException
039    {
040        super.service(manager);
041        _siteManager = (SiteManager) manager.lookup(SiteManager.ROLE);
042    }
043    
044    @Override
045    public void execute(JobExecutionContext context) throws Exception
046    {
047        Request request = ContextHelper.getRequest(_context);
048        
049        String siteName = _getSiteName(context);
050        request.setAttribute("site", siteName);
051        request.setAttribute("siteName", siteName);
052        
053        Site site = _siteManager.getSite(siteName);
054        request.setAttribute("skin", site.getSkinId());
055        
056        super.execute(context);
057    }
058
059    /**
060     * Get the site name from the context
061     * @param context the context
062     * @return the site name
063     */
064    protected String _getSiteName(JobExecutionContext context)
065    {
066        JobDataMap jobDataMap = context.getJobDetail().getJobDataMap();
067        return jobDataMap.getString(Scheduler.PARAM_VALUES_PREFIX + "siteName");
068    }
069}