blob: 966161fc77bd82d67a19f8484123a1b3f728aef3 [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.
*/
import org.apache.ofbiz.base.util.*
import org.apache.ofbiz.base.util.string.*
import org.apache.ofbiz.entity.util.EntityUtilProperties
if (productCategory) {
context.productCategoryType = productCategory.getRelatedOne("ProductCategoryType", false)
}
primaryParentCategory = null
primParentCatIdParam = request.getParameter("primaryParentCategoryId")
if (productCategory) {
primaryParentCategory = productCategory.getRelatedOne("PrimaryParentProductCategory", false)
} else if (primParentCatIdParam) {
primaryParentCategory = from("ProductCategory").where("productCategoryId", primParentCatIdParam).queryOne()
}
context.primaryParentCategory = primaryParentCategory
// make the image file formats
context.tenantId = delegator.getDelegatorTenantId()
imageFilenameFormat = EntityUtilProperties.getPropertyValue("catalog", "image.filename.format", delegator)
imageServerPath = FlexibleStringExpander.expandString(EntityUtilProperties.getPropertyValue("catalog", "image.server.path", delegator), context)
imageUrlPrefix = FlexibleStringExpander.expandString(EntityUtilProperties.getPropertyValue("catalog", "image.url.prefix",delegator), context)
imageServerPath = imageServerPath.endsWith("/") ? imageServerPath.substring(0, imageServerPath.length()-1) : imageServerPath
imageUrlPrefix = imageUrlPrefix.endsWith("/") ? imageUrlPrefix.substring(0, imageUrlPrefix.length()-1) : imageUrlPrefix
context.imageFilenameFormat = imageFilenameFormat
context.imageServerPath = imageServerPath
context.imageUrlPrefix = imageUrlPrefix
filenameExpander = FlexibleStringExpander.getInstance(imageFilenameFormat)
context.imageNameCategory = imageUrlPrefix + "/" + filenameExpander.expandString([location : "categories", type : "category", id : productCategoryId])
context.imageNameLinkOne = imageUrlPrefix + "/" + filenameExpander.expandString([location : "categories", type : "linkOne", id : productCategoryId])
context.imageNameLinkTwo = imageUrlPrefix + "/" + filenameExpander.expandString([location : "categories", type : "linkTwo", id : productCategoryId])
// UPLOADING STUFF
forLock = new Object()
contentType = null
fileType = request.getParameter("upload_file_type")
if (fileType) {
context.fileType = fileType
String fileLocation = filenameExpander.expandString([location : "categories", type : fileType, id : productCategoryId])
String filePathPrefix = ""
String filenameToUse = fileLocation
if (fileLocation.lastIndexOf("/") != -1) {
filePathPrefix = fileLocation.substring(0, fileLocation.lastIndexOf("/") + 1) // adding 1 to include the trailing slash
filenameToUse = fileLocation.substring(fileLocation.lastIndexOf("/") + 1)
}
int i1
if (contentType && (i1 = contentType.indexOf("boundary=")) != -1) {
contentType = contentType.substring(i1 + 9)
contentType = "--" + contentType
}
defaultFileName = filenameToUse + "_temp"
uploadObject = new HttpRequestFileUpload()
uploadObject.setOverrideFilename(defaultFileName)
uploadObject.setSavePath(imageServerPath + "/" + filePathPrefix)
uploadObject.doUpload(request)
clientFileName = uploadObject.getFilename()
if (clientFileName) {
context.clientFileName = clientFileName
}
if (clientFileName) {
if (clientFileName.lastIndexOf(".") > 0 && clientFileName.lastIndexOf(".") < clientFileName.length()) {
filenameToUse += clientFileName.substring(clientFileName.lastIndexOf("."))
} else {
filenameToUse += ".jpg"
}
context.clientFileName = clientFileName
context.filenameToUse = filenameToUse
characterEncoding = request.getCharacterEncoding()
imageUrl = imageUrlPrefix + "/" + filePathPrefix + java.net.URLEncoder.encode(filenameToUse, characterEncoding)
try {
file = new File(imageServerPath + "/" + filePathPrefix, defaultFileName)
file1 = new File(imageServerPath + "/" + filePathPrefix, filenameToUse)
try {
file1.delete()
} catch (Exception e) {
System.out.println("error deleting existing file (not neccessarily a problem)")
}
file.renameTo(file1)
} catch (Exception e) {
e.printStackTrace()
}
if (imageUrl) {
context.imageUrl = imageUrl
productCategory.set(fileType + "ImageUrl", imageUrl)
productCategory.store()
}
}
}