
org.broadleafcommerce.cms.structure.service.StructuredContentService Maven / Gradle / Ivy
The newest version!
/*
* #%L
* BroadleafCommerce CMS Module
* %%
* Copyright (C) 2009 - 2013 Broadleaf Commerce
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
package org.broadleafcommerce.cms.structure.service;
import net.sf.ehcache.Cache;
import org.broadleafcommerce.cms.structure.domain.StructuredContent;
import org.broadleafcommerce.cms.structure.domain.StructuredContentType;
import org.broadleafcommerce.common.locale.domain.Locale;
import org.broadleafcommerce.common.sandbox.domain.SandBox;
import org.broadleafcommerce.common.structure.dto.StructuredContentDTO;
import org.hibernate.Criteria;
import java.util.List;
import java.util.Map;
/**
* Provides services to manage StructuredContent
items.
*
* @author bpolster
*/
public interface StructuredContentService {
/**
* Returns the StructuredContent item associated with the passed in id.
*
* @param contentId - The id of the content item.
* @return The associated structured content item.
*/
StructuredContent findStructuredContentById(Long contentId);
/**
* Returns the StructuredContentType
associated with the passed in id.
*
* @param id - The id of the content type.
* @return The associated StructuredContentType
.
*/
StructuredContentType findStructuredContentTypeById(Long id);
/**
* Returns the StructuredContentType
associated with the passed in
* String value.
*
* @param name - The name of the content type.
* @return The associated StructuredContentType
.
*/
StructuredContentType findStructuredContentTypeByName(String name);
/**
*
* @return a list of all StructuredContentType
s
*/
List retrieveAllStructuredContentTypes();
/**
* This method is intended to be called solely from the CMS admin. Similar methods
* exist that are intended for other clients (e.g. lookupStructuredContentItemsBy....
*
* Returns content items for the passed in sandbox that match the passed in criteria.
* The criteria acts as a where clause to be used in the search for content items.
* Implementations should automatically add criteria such that no archived items
* are returned from this method.
*
* The SandBox parameter impacts the results as follows. If a SandBoxType
of
* production is passed in, only those items in that SandBox are returned.
*
* If a non-production SandBox is passed in, then the method will return the items associatd
* with the related production SandBox and then merge in the results of the passed in SandBox.
*
* @param sandbox - the sandbox to find structured content items (null indicates items that are in production for
* sites that are single tenant.
* @param criteria - the criteria used to search for content
* @return
*/
List findContentItems(Criteria criteria);
/**
* Finds all content items regardless of the {@link Sandbox} they are a member of
* @return
*/
List findAllContentItems();
/**
* Follows the same rules as {@link #findContentItems(org.broadleafcommerce.common.sandbox.domain.SandBox, org.hibernate.Criteria) findContentItems}.
*
* @return the count of items in this sandbox that match the passed in Criteria
*/
Long countContentItems(Criteria c);
/**
* Saves the given type and returns the merged instance
*/
StructuredContentType saveStructuredContentType(StructuredContentType type);
/**
* This method returns content
*
* Returns active content items for the passed in sandbox that match the passed in type.
*
* The SandBox parameter impacts the results as follows. If a SandBoxType
of
* production is passed in, only those items in that SandBox are returned.
*
* If a non-production SandBox is passed in, then the method will return the items associatd
* with the related production SandBox and then merge in the results of the passed in SandBox.
*
* The secure item is used in cases where the structured content item contains an image path that needs
* to be rewritten to use https.
*
* @param sandBox - the sandbox to find structured content items (null indicates items that are in production for
* sites that are single tenant.
* @param contentType - the type of content to return
* @param count - the max number of content items to return
* @param ruleDTOs - a Map of objects that will be used in MVEL processing.
* @param secure - set to true if the request is being served over https
* @return - The matching items
* @see org.broadleafcommerce.cms.web.structure.DisplayContentTag
*/
List lookupStructuredContentItemsByType(StructuredContentType contentType, Locale locale, Integer count, Map ruleDTOs, boolean secure);
/**
* This method returns content by name only.
*
* Returns active content items for the passed in sandbox that match the passed in type.
*
* The SandBox parameter impacts the results as follows. If a SandBoxType
of
* production is passed in, only those items in that SandBox are returned.
*
* If a non-production SandBox is passed in, then the method will return the items associatd
* with the related production SandBox and then merge in the results of the passed in SandBox.
*
* @param sandBox - the sandbox to find structured content items (null indicates items that are in production for
* sites that are single tenant.
* @param contentName - the name of content to return
* @param count - the max number of content items to return
* @param ruleDTOs - a Map of objects that will be used in MVEL processing.
* @param secure - set to true if the request is being served over https
* @return - The matching items
* @see org.broadleafcommerce.cms.web.structure.DisplayContentTag
*/
List lookupStructuredContentItemsByName(String contentName, Locale locale, Integer count, Map ruleDTOs, boolean secure);
/**
* This method returns content by name and type.
*
* Returns active content items for the passed in sandbox that match the passed in type.
*
* The SandBox parameter impacts the results as follows. If a SandBoxType
of
* production is passed in, only those items in that SandBox are returned.
*
* If a non-production SandBox is passed in, then the method will return the items associatd
* with the related production SandBox and then merge in the results of the passed in SandBox.
*
* @param sandBox - the sandbox to find structured content items (null indicates items that are in production for
* sites that are single tenant.
* @param contentType - the type of content to return
* @param contentName - the name of content to return
* @param count - the max number of content items to return
* @param ruleDTOs - a Map of objects that will be used in MVEL processing.
* @param secure - set to true if the request is being served over https
* @return - The matching items
* @see org.broadleafcommerce.cms.web.structure.DisplayContentTag
*/
List lookupStructuredContentItemsByName(StructuredContentType contentType, String contentName, Locale locale, Integer count, Map ruleDTOs, boolean secure);
Locale findLanguageOnlyLocale(Locale locale);
List buildStructuredContentDTOList(List structuredContentList, boolean secure);
List evaluateAndPriortizeContent(List structuredContentList, int count, Map ruleDTOs);
void removeStructuredContentFromCache(SandBox sandBox, StructuredContent sc);
Cache getStructuredContentCache();
public void addStructuredContentListToCache(String key, List scDTOList);
public String buildTypeKey(SandBox currentSandbox, Long site, Locale locale, String contentType);
public List getStructuredContentListFromCache(String key);
public void removeItemFromCache(String nameKey, String typeKey);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy