001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.messageboards.asset;
016    
017    import com.liferay.portal.kernel.exception.PortalException;
018    import com.liferay.portal.kernel.exception.SystemException;
019    import com.liferay.portal.security.permission.PermissionChecker;
020    import com.liferay.portal.theme.ThemeDisplay;
021    import com.liferay.portlet.asset.model.AssetRenderer;
022    import com.liferay.portlet.asset.model.BaseAssetRendererFactory;
023    import com.liferay.portlet.messageboards.model.MBCategory;
024    import com.liferay.portlet.messageboards.service.MBCategoryLocalServiceUtil;
025    import com.liferay.portlet.messageboards.service.permission.MBCategoryPermission;
026    
027    /**
028     * @author Julio Camarero
029     * @author Juan Fernández
030     * @author Raymond Augé
031     * @author Sergio González
032     * @author Jonathan Lee
033     */
034    public class MBCategoryAssetRendererFactory extends BaseAssetRendererFactory {
035    
036            public static final String TYPE = "category";
037    
038            public AssetRenderer getAssetRenderer(long classPK, int type)
039                    throws PortalException, SystemException {
040    
041                    MBCategory category = MBCategoryLocalServiceUtil.getMBCategory(classPK);
042    
043                    MBCategoryAssetRenderer mbCategoryAssetRenderer =
044                            new MBCategoryAssetRenderer(category);
045    
046                    mbCategoryAssetRenderer.setAssetRendererType(type);
047    
048                    return mbCategoryAssetRenderer;
049            }
050    
051            public String getClassName() {
052                    return MBCategory.class.getName();
053            }
054    
055            public String getType() {
056                    return TYPE;
057            }
058    
059            @Override
060            public boolean hasPermission(
061                            PermissionChecker permissionChecker, long classPK, String actionId)
062                    throws Exception {
063    
064                    MBCategory category = MBCategoryLocalServiceUtil.getMBCategory(classPK);
065    
066                    return MBCategoryPermission.contains(
067                            permissionChecker, category, actionId);
068            }
069    
070            @Override
071            public boolean isCategorizable() {
072                    return false;
073            }
074    
075            @Override
076            public boolean isSelectable() {
077                    return _SELECTABLE;
078            }
079    
080            @Override
081            protected String getIconPath(ThemeDisplay themeDisplay) {
082                    return themeDisplay.getPathThemeImages() + "/common/conversation.png";
083            }
084    
085            private static final boolean _SELECTABLE = false;
086    
087    }