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