001/*
002 *  Copyright 2012 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.core.right.profile;
017
018import java.io.IOException;
019
020import org.apache.avalon.framework.service.ServiceException;
021import org.apache.avalon.framework.service.ServiceManager;
022import org.apache.cocoon.ProcessingException;
023import org.apache.cocoon.xml.XMLUtils;
024import org.xml.sax.SAXException;
025
026import org.ametys.core.right.Profile;
027import org.ametys.core.right.RightsExtensionPoint;
028import org.ametys.plugins.core.right.ProfilesListGenerator;
029
030
031/**
032 * Generates default profiles
033 */
034public class ProfilesGenerator extends ProfilesListGenerator
035{
036    private RightsExtensionPoint _rights;
037    
038    @Override
039    public void service(ServiceManager m) throws ServiceException
040    {
041        super.service(m);
042        _rights = (RightsExtensionPoint) m.lookup(RightsExtensionPoint.ROLE);
043    }
044    
045    @Override
046    public void generate() throws IOException, SAXException, ProcessingException
047    {
048        contentHandler.startDocument();
049        
050        XMLUtils.startElement(contentHandler, "ProfilesManager");
051        
052        XMLUtils.startElement(contentHandler, "rights");
053        _rights.toSAX(contentHandler);
054        XMLUtils.endElement(contentHandler, "rights");
055        
056        XMLUtils.startElement(contentHandler, "profiles");
057        for (Profile profile : _profilesDAO.getProfiles())
058        {
059            saxProfile(profile);
060        }
061        XMLUtils.endElement(contentHandler, "profiles");
062        
063        XMLUtils.createElement(contentHandler, "AdministratorUI", "false");
064        
065        XMLUtils.endElement(contentHandler, "ProfilesManager");
066        
067        contentHandler.endDocument();
068    }
069}