blob: 496ff622cf16fe218173ddb857d6b79198606a34 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
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.
-->
<simple-methods xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://ofbiz.apache.org/Simple-Method" xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method http://ofbiz.apache.org/dtds/simple-methods.xsd">
<!-- ProductCategoryContent -->
<simple-method method-name="createCategoryContent" short-description="Create Content For Product Category">
<make-value value-field="newEntity" entity-name="ProductCategoryContent"/>
<set-pk-fields map="parameters" value-field="newEntity"/>
<set-nonpk-fields map="parameters" value-field="newEntity"/>
<if-empty field="newEntity.fromDate">
<now-timestamp field="nowTimestamp"/>
<set field="newEntity.fromDate" from-field="nowTimestamp"/>
</if-empty>
<create-value value-field="newEntity"/>
<set-service-fields service-name="updateContent" map="parameters" to-map="updateContent"/>
<call-service service-name="updateContent" in-map-name="updateContent"/>
<field-to-result field="newEntity.contentId" result-name="contentId"/>
<field-to-result field="newEntity.productCategoryId" result-name="productCategoryId"/>
<field-to-result field="newEntity.prodCatContentTypeId" result-name="prodCatContentTypeId"/>
</simple-method>
<simple-method method-name="updateCategoryContent" short-description="Update Content For Category">
<make-value value-field="lookupPKMap" entity-name="ProductCategoryContent"/>
<set-pk-fields map="parameters" value-field="lookupPKMap"/>
<find-by-primary-key entity-name="ProductCategoryContent" map="lookupPKMap" value-field="lookedUpValue"/>
<set-nonpk-fields map="parameters" value-field="lookedUpValue"/>
<store-value value-field="lookedUpValue"/>
<set-service-fields service-name="updateContent" map="parameters" to-map="updateContent"/>
<call-service service-name="updateContent" in-map-name="updateContent"/>
</simple-method>
<simple-method method-name="createSimpleTextContentForCategory" short-description="Create Simple Text Content For Product Category">
<set-service-fields service-name="createCategoryContent" map="parameters" to-map="createCategoryContentMap"/>
<set-service-fields service-name="createSimpleTextContent" map="parameters" to-map="createSimpleTextMap"/>
<call-service service-name="createSimpleTextContent" in-map-name="createSimpleTextMap">
<result-to-field result-name="contentId" field="createCategoryContentMap.contentId"/>
</call-service>
<call-service service-name="createCategoryContent" in-map-name="createCategoryContentMap"/>
</simple-method>
<simple-method method-name="updateSimpleTextContentForCategory" short-description="Update Simple Text Content For Product Category">
<set-service-fields service-name="updateCategoryContent" map="parameters" to-map="updateCategoryContent"/>
<call-service service-name="updateCategoryContent" in-map-name="updateCategoryContent"/>
<set-service-fields service-name="updateSimpleTextContent" map="parameters" to-map="updateSimpleText"/>
<call-service service-name="updateSimpleTextContent" in-map-name="updateSimpleText"/>
</simple-method>
<simple-method method-name="updateContentSEOForCategory" short-description="Update SEO Content For Product Category">
<if-not-empty field="parameters.title">
<entity-and entity-name="ProductCategoryContentAndInfo" list="productCategoryContents">
<field-map field-name="productCategoryId" from-field="parameters.productCategoryId"/>
<field-map field-name="prodCatContentTypeId" value="PAGE_TITLE"/>
</entity-and>
<if-not-empty field="productCategoryContents">
<first-from-list entry="productCategoryContent" list="productCategoryContents"/>
<entity-one entity-name="ElectronicText" value-field="electronicText">
<field-map field-name="dataResourceId" from-field="productCategoryContent.dataResourceId"/>
</entity-one>
<if-not-empty field="electronicText">
<set field="electronicText.textData" from-field="parameters.title"/>
<store-value value-field="electronicText"/>
</if-not-empty>
<else>
<set field="createTextContentMap.productCategoryId" from-field="parameters.productCategoryId"/>
<set field="createTextContentMap.prodCatContentTypeId" value="PAGE_TITLE"/>
<set field="createTextContentMap.text" from-field="parameters.title"/>
<call-service service-name="createSimpleTextContentForCategory" in-map-name="createTextContentMap"/>
</else>
</if-not-empty>
</if-not-empty>
<if-not-empty field="parameters.metaKeyword">
<entity-and entity-name="ProductCategoryContentAndInfo" list="productCategoryContents">
<field-map field-name="productCategoryId" from-field="parameters.productCategoryId"/>
<field-map field-name="prodCatContentTypeId" value="META_KEYWORD"/>
</entity-and>
<if-not-empty field="productCategoryContents">
<first-from-list entry="productCategoryContent" list="productCategoryContents"/>
<entity-one entity-name="ElectronicText" value-field="electronicText">
<field-map field-name="dataResourceId" from-field="productCategoryContent.dataResourceId"/>
</entity-one>
<if-not-empty field="electronicText">
<set field="electronicText.textData" from-field="parameters.metaKeyword"/>
<store-value value-field="electronicText"/>
</if-not-empty>
<else>
<set field="createTextContentMap.productCategoryId" from-field="parameters.productCategoryId"/>
<set field="createTextContentMap.prodCatContentTypeId" value="META_KEYWORD"/>
<set field="createTextContentMap.text" from-field="parameters.metaKeyword"/>
<call-service service-name="createSimpleTextContentForCategory" in-map-name="createTextContentMap"/>
</else>
</if-not-empty>
</if-not-empty>
<if-not-empty field="parameters.metaDescription">
<entity-and entity-name="ProductCategoryContentAndInfo" list="productCategoryContents">
<field-map field-name="productCategoryId" from-field="parameters.productCategoryId"/>
<field-map field-name="prodCatContentTypeId" value="META_DESCRIPTION"/>
</entity-and>
<if-not-empty field="productCategoryContents">
<first-from-list entry="productCategoryContent" list="productCategoryContents"/>
<entity-one entity-name="ElectronicText" value-field="electronicText">
<field-map field-name="dataResourceId" from-field="productCategoryContent.dataResourceId"/>
</entity-one>
<if-not-empty field="electronicText">
<set field="electronicText.textData" from-field="parameters.metaDescription"/>
<store-value value-field="electronicText"/>
</if-not-empty>
<else>
<set field="createTextContentMap.productCategoryId" from-field="parameters.productCategoryId"/>
<set field="createTextContentMap.prodCatContentTypeId" value="META_DESCRIPTION"/>
<set field="createTextContentMap.text" from-field="parameters.metaDescription"/>
<call-service service-name="createSimpleTextContentForCategory" in-map-name="createTextContentMap"/>
</else>
</if-not-empty>
</if-not-empty>
</simple-method>
<simple-method method-name="createRelatedUrlContentForCategory" short-description="Create Related URL Content For Product Category">
<set field="dataResource.dataResourceName" from-field="parameters.title"/>
<set field="dataResource.dataResourceTypeId" value="URL_RESOURCE"/>
<set field="dataResource.mimeTypeId" value="text/plain"/>
<set field="url" value="${groovy: temp = parameters.url;
temp = temp.trim();
if(temp.indexOf(&quot;http://&quot;) == 0) return temp;
if(temp.indexOf(&quot;https://&quot;) == 0) return temp;
if(temp.indexOf(&quot;http://&quot;) != 0) return &quot;http://&quot; + temp;
}" type="String"/>
<set field="dataResource.objectInfo" from-field="url"/>
<set field="dataResource.localeString" from-field="parameters.localeString"/>
<call-service service-name="createDataResource" in-map-name="dataResource">
<result-to-field result-name="dataResourceId" field="parameters.dataResourceId"/>
</call-service>
<set field="content.contentTypeId" value="DOCUMENT"/>
<set field="content.dataResourceId" from-field="parameters.dataResourceId"/>
<set field="content.contentName" from-field="parameters.title"/>
<set field="content.description" from-field="parameters.description"/>
<set field="content.localeString" from-field="parameters.localeString"/>
<set field="content.createdByUserLogin" from-field="userLogin.userLoginId"/>
<call-service service-name="createContent" in-map-name="content">
<result-to-field result-name="contentId" field="parameters.contentId"/>
</call-service>
<set-service-fields service-name="createCategoryContent" map="parameters" to-map="createCategoryContentMap"/>
<call-service service-name="createCategoryContent" in-map-name="createCategoryContentMap"/>
</simple-method>
<simple-method method-name="updateRelatedUrlContentForCategory" short-description="Update Related URL Content For Product Category">
<set-service-fields service-name="updateCategoryContent" map="parameters" to-map="updateCategoryContent"/>
<call-service service-name="updateCategoryContent" in-map-name="updateCategoryContent"/>
<set field="dataResource.dataResourceId" from-field="parameters.dataResourceId"/>
<set field="dataResource.dataResourceName" from-field="parameters.title"/>
<set field="dataResource.objectInfo" from-field="parameters.url"/>
<set field="dataResource.localeString" from-field="parameters.localeString"/>
<call-service service-name="updateDataResource" in-map-name="dataResource"/>
<set field="updateContent.contentId" from-field="parameters.contentId"/>
<set field="updateContent.contentName" from-field="parameters.title"/>
<set field="updateContent.description" from-field="parameters.description"/>
<set field="updateContent.localeString" from-field="parameters.localeString"/>
<call-service service-name="updateContent" in-map-name="updateContent"/>
</simple-method>
<simple-method method-name="createDownloadContentForCategory" short-description="Create Download Content For Category">
<set-service-fields service-name="createCategoryContent" map="parameters" to-map="createCategoryContent"/>
<!-- Create Data Resource -->
<set field="data.dataResourceTypeId" from-field="parameters.dataResourceTypeId"/>
<set field="data.dataResourceName" from-field="parameters._imageData_fileName"/>
<set field="data.mimeTypeId" from-field="parameters._imageData_contentType"/>
<set field="data.uploadedFile" from-field="parameters.imageData"/>
<call-service service-name="createDataResource" in-map-name="data">
<result-to-field result-name="dataResourceId" field="parameters.dataResourceId"/>
</call-service>
<!-- Create attach upload to data resource -->
<set-service-fields service-name="attachUploadToDataResource" map="parameters" to-map="attachMap"/>
<set field="attachMap.uploadedFile" from-field="parameters.imageData"/>
<set field="attachMap._uploadedFile_fileName" from-field="parameters._imageData_fileName"/>
<set field="attachMap._uploadedFile_contentType" from-field="parameters._imageData_contentType"/>
<call-service service-name="attachUploadToDataResource" in-map-name="attachMap"/>
<!-- Create content from dataResource -->
<set-service-fields service-name="createContentFromDataResource" map="parameters" to-map="contentMap"/>
<set field="contentMap.contentTypeId" value="DOCUMENT"/>
<call-service service-name="createContentFromDataResource" in-map-name="contentMap">
<result-to-field result-name="contentId" field="createCategoryContent.contentId"/>
</call-service>
<set field="createCategoryContent.contentId" from-field="parameters.contentId"/>
<call-service service-name="createCategoryContent" in-map-name="createCategoryContent"/>
</simple-method>
<simple-method method-name="updateDownloadContentForCategory" short-description="Update Download Content For Category">
<set field="attachMap.uploadedFile" from-field="parameters.imageData"/>
<set field="attachMap._uploadedFile_fileName" from-field="parameters._imageData_fileName"/>
<set field="attachMap._uploadedFile_contentType" from-field="parameters._imageData_contentType"/>
<set field="attachMap.mimeTypeId" from-field="parameters._imageData_contentType"/>
<set field="attachMap.dataResourceId" from-field="parameters.fileDataResourceId"/>
<call-service service-name="attachUploadToDataResource" in-map-name="attachMap"/>
<set-service-fields service-name="updateCategoryContent" map="parameters" to-map="updateCategoryContent"/>
<call-service service-name="updateCategoryContent" in-map-name="updateCategoryContent"/>
</simple-method>
</simple-methods>