001/*
002 *  Copyright 2010 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 */
016
017package org.ametys.plugins.odfweb.repository;
018
019import org.apache.avalon.framework.service.ServiceException;
020import org.apache.avalon.framework.service.ServiceManager;
021import org.apache.avalon.framework.service.Serviceable;
022
023import org.ametys.plugins.repository.AmetysObjectFactory;
024import org.ametys.plugins.repository.AmetysObjectResolver;
025import org.ametys.plugins.repository.AmetysRepositoryException;
026import org.ametys.web.repository.page.PageDataTypeExtensionPoint;
027
028/**
029 * {@link AmetysObjectFactory} handling {@link ProgramZoneItem}.
030 */
031public class ProgramZoneItemFactory implements AmetysObjectFactory<ProgramZoneItem>, Serviceable
032{
033    AmetysObjectResolver _resolver;
034    PageDataTypeExtensionPoint _pageDataTypeExtensionPoint;
035    
036    @Override
037    public void service(ServiceManager manager) throws ServiceException
038    {
039        _resolver = (AmetysObjectResolver) manager.lookup(AmetysObjectResolver.ROLE);
040        _pageDataTypeExtensionPoint = (PageDataTypeExtensionPoint) manager.lookup(PageDataTypeExtensionPoint.ROLE);
041    }
042    
043    @Override
044    public ProgramZoneItem getAmetysObjectById(String id) throws AmetysRepositoryException
045    {
046        int i = id.indexOf('?');
047        String pageId = id.substring(i + "?pageId=".length());
048        
049        ProgramPage page = _resolver.resolveById(pageId);
050        
051        return new ProgramZoneItem(page, _pageDataTypeExtensionPoint, _pageDataTypeExtensionPoint);
052    }
053
054    @Override
055    public String getScheme()
056    {
057        return "programZoneItem";
058    }
059
060    @Override
061    public boolean hasAmetysObjectForId(String id) throws AmetysRepositoryException
062    {
063        int i = id.indexOf('?');
064        String pageId = id.substring(i + "?pageId=".length());
065        
066        return _resolver.hasAmetysObjectForId(pageId);
067    }
068}