blob: 5b98265c4e20f2adbcdb6ce2eabc48e65f331fd5 [file] [log] [blame]
/*******************************************************************************
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*******************************************************************************/
package org.apache.ofbiz.product.imagemanagement;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import org.apache.ofbiz.base.util.Debug;
import org.apache.ofbiz.base.util.UtilValidate;
import org.apache.ofbiz.entity.Delegator;
import org.apache.ofbiz.entity.GenericEntityException;
import org.apache.ofbiz.entity.GenericValue;
import org.apache.ofbiz.entity.util.EntityQuery;
import org.apache.ofbiz.entity.util.EntityUtil;
public final class ImageManagementHelper {
static String module = ImageManagementHelper.class.getName();
private ImageManagementHelper() {}
public static String getInternalImageUrl(HttpServletRequest request, String productId) {
String internalImageUrl = null;
if (request == null) return internalImageUrl;
try {
Delegator delegator = (Delegator) request.getAttribute("delegator");
List<GenericValue> defaultImageList = EntityQuery.use(delegator).from("ProductContentAndInfo").where("productId", productId, "productContentTypeId", "DEFAULT_IMAGE", "statusId", "IM_APPROVED", "drIsPublic", "N").orderBy("sequenceNum").queryList();
if (UtilValidate.isNotEmpty(defaultImageList)) {
GenericValue productContent = EntityUtil.getFirst(defaultImageList);
if (UtilValidate.isNotEmpty(productContent.get("drObjectInfo"))) {
internalImageUrl = (String) productContent.get("drObjectInfo");
}
} else {
List<GenericValue> productContentList = EntityQuery.use(delegator).from("ProductContentAndInfo").where("productId", productId, "productContentTypeId", "IMAGE", "statusId", "IM_APPROVED", "drIsPublic", "N").orderBy("sequenceNum").queryList();
if (UtilValidate.isNotEmpty(productContentList)) {
GenericValue productContent = EntityUtil.getFirst(productContentList);
if (UtilValidate.isNotEmpty(productContent.get("drObjectInfo"))) {
internalImageUrl = (String) productContent.get("drObjectInfo");
}
}
}
} catch (GenericEntityException e) {
Debug.logError(e, "Cannot get internal image url", module);
}
return internalImageUrl;
}
}