/** * Most of the code in the Qalingo project is copyrighted Hoteia and licensed * under the Apache License Version 2.0 (release version 0.8.0) * http://www.apache.org/licenses/LICENSE-2.0 * * Copyright (c) Hoteia, 2012-2014 * http://www.hoteia.com - http://twitter.com/hoteia - contact@hoteia.com * */ package org.hoteia.qalingo.core.domain; import java.util.ArrayList; import java.util.Collections; import java.util.Date; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.Lob; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.Table; import javax.persistence.Temporal; import javax.persistence.TemporalType; import javax.persistence.Version; import org.apache.commons.lang.StringUtils; import org.hibernate.Hibernate; import org.hoteia.qalingo.core.annotation.CacheEntityInformation; import org.hoteia.qalingo.core.comparator.CatalogCategoryMasterComparator; import org.hoteia.qalingo.core.domain.impl.DomainEntity; @Entity @Table(name = "TECO_CATALOG_MASTER_CATEGORY") @CacheEntityInformation(cacheName="web_cache_catalog_category") public class CatalogCategoryMaster extends AbstractCatalogCategory<CatalogMaster, CatalogCategoryMaster, CatalogCategoryMasterAttribute, CatalogCategoryMasterProductSkuRel> implements DomainEntity { /** * Generated UID */ private static final long serialVersionUID = -9123721692905623486L; @Id @GeneratedValue(strategy = GenerationType.AUTO) @Column(name = "ID", nullable = false) private Long id; @Version @Column(name = "VERSION", nullable = false) // , columnDefinition = "int(11) default 1" private int version; @Column(name = "SCORING", nullable = false) // , columnDefinition = "default 1" private long scoring; @Column(name = "CODE", nullable = false) private String code; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "CATEGORY_TYPE_ID", insertable = true, updatable = true) private CatalogCategoryType catalogCategoryType; @Column(name = "NAME") private String name; @Column(name = "DESCRIPTION") @Lob private String description; @Column(name = "IS_DEFAULT", nullable = false) // , columnDefinition = "tinyint(1) default 0" private boolean isDefault = false; @Column(name = "RANKING") private Integer ranking; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "MASTER_CATALOG_ID", insertable = true, updatable = true) private CatalogMaster catalog; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "PARENT_CATEGORY_ID", insertable = false, updatable = false) private CatalogCategoryMaster parentCatalogCategory; @OneToMany(fetch = FetchType.LAZY, cascade = CascadeType.ALL, targetEntity = org.hoteia.qalingo.core.domain.CatalogCategoryMasterAttribute.class) @JoinColumn(name = "CATEGORY_ID") private Set<CatalogCategoryMasterAttribute> attributes = new HashSet<CatalogCategoryMasterAttribute>(); @OneToMany(fetch = FetchType.LAZY, cascade=CascadeType.ALL, targetEntity = org.hoteia.qalingo.core.domain.CatalogCategoryMaster.class) @JoinColumn(name = "PARENT_CATEGORY_ID") private Set<CatalogCategoryMaster> catalogCategories = new HashSet<CatalogCategoryMaster>(); @OneToMany(fetch = FetchType.LAZY, cascade=CascadeType.ALL, targetEntity = org.hoteia.qalingo.core.domain.CatalogCategoryMasterProductSkuRel.class) @JoinColumn(name = "MASTER_CATEGORY_ID") private Set<CatalogCategoryMasterProductSkuRel> catalogCategoryProductSkuRels = new HashSet<CatalogCategoryMasterProductSkuRel>(); @OneToMany(fetch = FetchType.LAZY, targetEntity = org.hoteia.qalingo.core.domain.Asset.class) @JoinColumn(name = "MASTER_CATEGORY_ID") private Set<Asset> assets = new HashSet<Asset>(); @Temporal(TemporalType.TIMESTAMP) @Column(name = "DATE_CREATE") private Date dateCreate; @Temporal(TemporalType.TIMESTAMP) @Column(name = "DATE_UPDATE") private Date dateUpdate; public CatalogCategoryMaster() { this.dateCreate = new Date(); this.dateUpdate = new Date(); } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public int getVersion() { return version; } public void setVersion(int version) { this.version = version; } public long getScoring() { return scoring; } public void setScoring(long scoring) { this.scoring = scoring; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public CatalogCategoryType getCatalogCategoryType() { return catalogCategoryType; } public void setCatalogCategoryType(CatalogCategoryType catalogCategoryType) { this.catalogCategoryType = catalogCategoryType; } public String getName() { return name; } public void setName(String name) { this.name = name; } public boolean isDefault() { return isDefault; } public void setDefault(boolean isDefault) { this.isDefault = isDefault; } public Integer getRanking() { return ranking; } public void setRanking(Integer ranking) { this.ranking = ranking; } public CatalogMaster getCatalog() { return catalog; } public void setCatalog(CatalogMaster catalog) { this.catalog = catalog; } public boolean isRoot() { if (getParentCatalogCategory() == null) { return true; } return false; } public CatalogCategoryMaster getParentCatalogCategory() { return parentCatalogCategory; } public void setParentCatalogCategory(CatalogCategoryMaster parentCatalogCategory) { this.parentCatalogCategory = parentCatalogCategory; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public Set<CatalogCategoryMasterAttribute> getAttributes() { return attributes; } public void setAttributes(Set<CatalogCategoryMasterAttribute> attributes) { this.attributes = attributes; } public Set<CatalogCategoryMaster> getCatalogCategories() { return catalogCategories; } public List<CatalogCategoryMaster> getSortedChildCatalogCategories() { List<CatalogCategoryMaster> sortedCatalogCategories = null; if (catalogCategories != null && Hibernate.isInitialized(catalogCategories)) { sortedCatalogCategories = new LinkedList<CatalogCategoryMaster>(catalogCategories); Collections.sort(sortedCatalogCategories, new CatalogCategoryMasterComparator()); } return sortedCatalogCategories; } public void setCatalogCategories(Set<CatalogCategoryMaster> catalogCategories) { this.catalogCategories = catalogCategories; } public Set<CatalogCategoryMasterProductSkuRel> getCatalogCategoryProductSkuRels() { return catalogCategoryProductSkuRels; } public void setCatalogCategoryProductSkuRels(Set<CatalogCategoryMasterProductSkuRel> catalogCategoryProductSkuRels) { this.catalogCategoryProductSkuRels = catalogCategoryProductSkuRels; } public List<String> getProductSkuCodes() { List<String> productSkuCodes = null; if (catalogCategoryProductSkuRels != null && Hibernate.isInitialized(catalogCategoryProductSkuRels)) { productSkuCodes = new ArrayList<String>(); for (Iterator<CatalogCategoryMasterProductSkuRel> iterator = catalogCategoryProductSkuRels.iterator(); iterator.hasNext();) { CatalogCategoryMasterProductSkuRel catalogCategoryProductSkuRel = (CatalogCategoryMasterProductSkuRel) iterator.next(); ProductSku productSku = catalogCategoryProductSkuRel.getProductSku(); if(productSku != null){ productSkuCodes.add(catalogCategoryProductSkuRel.getProductSku().getCode()); } } } return productSkuCodes; } public List<ProductSku> getSortedProductSkus() { List<ProductSku> productSkus = null; if (catalogCategoryProductSkuRels != null && Hibernate.isInitialized(catalogCategoryProductSkuRels)) { productSkus = new ArrayList<ProductSku>(); for (Iterator<CatalogCategoryMasterProductSkuRel> iterator = catalogCategoryProductSkuRels.iterator(); iterator.hasNext();) { CatalogCategoryMasterProductSkuRel catalogCategoryVirtualProductSkuRel = (CatalogCategoryMasterProductSkuRel) iterator.next(); ProductSku productSku = catalogCategoryVirtualProductSkuRel.getProductSku(); if(productSku != null){ productSku.setRanking(catalogCategoryVirtualProductSkuRel.getRanking()); productSkus.add(catalogCategoryVirtualProductSkuRel.getProductSku()); } } } return productSkus; } public List<ProductMarketing> getSortedProductMarketings() { List<ProductMarketing> productMarketings = null; List<ProductSku> productSkus = getSortedProductSkus(); if (productSkus != null) { Map<String, ProductMarketing> mapProductMarketing = new HashMap<String, ProductMarketing>(); for (Iterator<ProductSku> iterator = productSkus.iterator(); iterator.hasNext();) { ProductSku productSku = (ProductSku) iterator.next(); if (productSku.getProductMarketing() != null && Hibernate.isInitialized(productSku.getProductMarketing())) { mapProductMarketing.put(productSku.getProductMarketing().getCode(), productSku.getProductMarketing()); } } productMarketings = new ArrayList<ProductMarketing>(mapProductMarketing.values()); } return productMarketings; } public Set<Asset> getAssets() { return assets; } public void setAssets(Set<Asset> assets) { this.assets = assets; } public List<Asset> getAssetsIsGlobal() { List<Asset> assetsIsGlobal = null; // try { if (assets != null && Hibernate.isInitialized(assets)) { assetsIsGlobal = new ArrayList<Asset>(); for (Iterator<Asset> iterator = assets.iterator(); iterator.hasNext();) { Asset asset = (Asset) iterator.next(); if (asset != null && asset.isGlobal()) { assetsIsGlobal.add(asset); } } } // } catch (LazyInitializationException e) { // logger.warn("LazyInitializationException on assets"); // } return assetsIsGlobal; } public List<Asset> getAssetsByMarketArea() { List<Asset> assetsByMarketArea = null; if (assets != null && Hibernate.isInitialized(assets)) { assetsByMarketArea = new ArrayList<Asset>(); for (Iterator<Asset> iterator = assets.iterator(); iterator.hasNext();) { Asset asset = (Asset) iterator.next(); if (asset != null && !asset.isGlobal()) { assetsByMarketArea.add(asset); } } } return assetsByMarketArea; } public Date getDateCreate() { return dateCreate; } public void setDateCreate(Date dateCreate) { this.dateCreate = dateCreate; } public Date getDateUpdate() { return dateUpdate; } public void setDateUpdate(Date dateUpdate) { this.dateUpdate = dateUpdate; } // Attributes public Object getValue(String attributeCode) { return getValue(attributeCode, null, null); } public Object getValue(String attributeCode, Long marketAreaId, String localizationCode) { AbstractAttribute attribute = getAttribute(attributeCode, marketAreaId, localizationCode); if (attribute != null) { return attribute.getValue(); } return null; } public String getI18nName(String localizationCode) { String i18nName = (String) getValue(CatalogCategoryMasterAttribute.CATALOG_CATEGORY_ATTRIBUTE_I18N_NAME, null, localizationCode); if (StringUtils.isEmpty(i18nName)) { i18nName = getName(); } return i18nName; } public String getI18nDescription(String localizationCode) { String i18Description = (String) getValue(ProductBrandAttribute.CATALOG_CATEGORY_ATTRIBUTE_I18N_DESCRIPTION, null, localizationCode); if(StringUtils.isNotEmpty(i18Description)){ return i18Description; } return description; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((code == null) ? 0 : code.hashCode()); result = prime * result + ((dateCreate == null) ? 0 : dateCreate.hashCode()); result = prime * result + ((id == null) ? 0 : id.hashCode()); return result; } @Override public boolean equals(Object sourceObj) { Object obj = deproxy(sourceObj); if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; CatalogCategoryMaster other = (CatalogCategoryMaster) obj; if (code == null) { if (other.code != null) return false; } else if (!code.equals(other.code)) return false; if (dateCreate == null) { if (other.dateCreate != null) return false; } else if (!dateCreate.equals(other.dateCreate)) return false; if (id == null) { if (other.id != null) return false; } else if (!id.equals(other.id)) return false; return true; } @Override public String toString() { return "CatalogCategoryMaster [id=" + id + ", version=" + version + ", name=" + name + ", description=" + description + ", code=" + code + ", isDefault=" + isDefault + ", dateCreate=" + dateCreate + ", dateUpdate=" + dateUpdate + "]"; } }