📄 contactmechservices.java
字号:
/* * $Id: ContactMechServices.java 6486 2006-01-10 00:58:40Z sichen $ * * Copyright (c) 2001, 2002 The Open For Business Project - www.ofbiz.org * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. */package org.ofbiz.party.contact;import java.sql.Timestamp;import java.util.HashMap;import java.util.Iterator;import java.util.LinkedList;import java.util.List;import java.util.Map;import java.util.Locale;import org.ofbiz.base.util.Debug;import org.ofbiz.base.util.UtilDateTime;import org.ofbiz.base.util.UtilMisc;import org.ofbiz.base.util.UtilProperties;import org.ofbiz.base.util.UtilValidate;import org.ofbiz.entity.GenericDelegator;import org.ofbiz.entity.GenericEntityException;import org.ofbiz.entity.GenericValue;import org.ofbiz.entity.util.EntityUtil;import org.ofbiz.security.Security;import org.ofbiz.service.DispatchContext;import org.ofbiz.service.ModelService;import org.ofbiz.service.ServiceUtil;import org.ofbiz.service.LocalDispatcher;import org.ofbiz.service.GenericServiceException;/** * Services for Contact Mechanism maintenance * * @author <a href="mailto:jonesde@ofbiz.org">David E. Jones</a> * @version $Rev: 6486 $ * @since 2.0 */public class ContactMechServices { public static final String module = ContactMechServices.class.getName(); public static final String resource = "PartyUiLabels"; /** * Creates a ContactMech * <b>security check</b>: userLogin partyId must equal partyId, or must have PARTYMGR_CREATE permission *@param ctx The DispatchContext that this service is operating in *@param context Map containing the input parameters *@return Map with the result of the service, the output parameters */ public static Map createContactMech(DispatchContext ctx, Map context) { Map result = new HashMap(); GenericDelegator delegator = ctx.getDelegator(); Security security = ctx.getSecurity(); GenericValue userLogin = (GenericValue) context.get("userLogin"); Timestamp now = UtilDateTime.nowTimestamp(); List toBeStored = new LinkedList(); String partyId = ServiceUtil.getPartyIdCheckSecurity(userLogin, security, context, result, "PARTYMGR", "_PCM_CREATE"); String errMsg = null; Locale locale = (Locale) context.get("locale"); if (result.size() > 0) return result; String contactMechTypeId = (String) context.get("contactMechTypeId"); String newCmId = null; try { newCmId = delegator.getNextSeqId("ContactMech"); } catch (IllegalArgumentException e) { errMsg = UtilProperties.getMessage(resource,"contactmechservices.could_not_create_contact_info_id_generation_failure", locale); return ServiceUtil.returnError(errMsg); } GenericValue tempContactMech = delegator.makeValue("ContactMech", UtilMisc.toMap("contactMechId", newCmId.toString(), "contactMechTypeId", contactMechTypeId)); toBeStored.add(tempContactMech); if (!partyId.equals("_NA_")) { toBeStored.add(delegator.makeValue("PartyContactMech", UtilMisc.toMap("partyId", partyId, "contactMechId", newCmId.toString(), "fromDate", now, "roleTypeId", context.get("roleTypeId"), "allowSolicitation", context.get("allowSolicitation"), "extension", context.get("extension")))); } if ("POSTAL_ADDRESS".equals(contactMechTypeId)) { errMsg = UtilProperties.getMessage(resource,"contactmechservices.service_createContactMech_not_be_used_for_POSTAL_ADDRESS", locale); return ServiceUtil.returnError(errMsg); } else if ("TELECOM_NUMBER".equals(contactMechTypeId)) { errMsg = UtilProperties.getMessage(resource,"contactmechservices.service_createContactMech_not_be_used_for_TELECOM_NUMBER", locale); return ServiceUtil.returnError(errMsg); } else { tempContactMech.set("infoString", context.get("infoString")); } try { delegator.storeAll(toBeStored); } catch (GenericEntityException e) { Debug.logWarning(e.toString(), module); Map messageMap = UtilMisc.toMap("errMessage", e.getMessage()); errMsg = UtilProperties.getMessage(resource,"contactmechservices.could_not_create_contact_info_write", messageMap, locale); return ServiceUtil.returnError(errMsg); } result.put("contactMechId", newCmId.toString()); result.put(ModelService.RESPONSE_MESSAGE, ModelService.RESPOND_SUCCESS); return result; } /** * Updates a ContactMech * <b>security check</b>: userLogin partyId must equal partyId, or must have PARTYMGR_UPDATE permission *@param ctx The DispatchContext that this service is operating in *@param context Map containing the input parameters *@return Map with the result of the service, the output parameters */ public static Map updateContactMech(DispatchContext ctx, Map context) { Map result = new HashMap(); GenericDelegator delegator = ctx.getDelegator(); Security security = ctx.getSecurity(); GenericValue userLogin = (GenericValue) context.get("userLogin"); Timestamp now = UtilDateTime.nowTimestamp(); List toBeStored = new LinkedList(); boolean isModified = false; String partyId = ServiceUtil.getPartyIdCheckSecurity(userLogin, security, context, result, "PARTYMGR", "_PCM_UPDATE"); String errMsg = null; Locale locale = (Locale) context.get("locale"); if (result.size() > 0) return result; String newCmId = null; try { newCmId = delegator.getNextSeqId("ContactMech"); } catch (IllegalArgumentException e) { errMsg = UtilProperties.getMessage(resource,"contactmechservices.could_not_change_contact_info_id_generation_failure", locale); return ServiceUtil.returnError(errMsg); } String contactMechId = (String) context.get("contactMechId"); GenericValue contactMech = null; GenericValue partyContactMech = null; try { contactMech = delegator.findByPrimaryKey("ContactMech", UtilMisc.toMap("contactMechId", contactMechId)); } catch (GenericEntityException e) { Debug.logWarning(e.getMessage(), module); contactMech = null; } if (!partyId.equals("_NA_")) { // try to find a PartyContactMech with a valid date range try { List partyContactMechs = EntityUtil.filterByDate(delegator.findByAnd("PartyContactMech", UtilMisc.toMap("partyId", partyId, "contactMechId", contactMechId), UtilMisc.toList("fromDate")), true); partyContactMech = EntityUtil.getFirst(partyContactMechs); if (partyContactMech == null) { errMsg = UtilProperties.getMessage(resource,"contactmechservices.cannot_update_specified_contact_info_not_corresponds", locale); return ServiceUtil.returnError(errMsg); } else { toBeStored.add(partyContactMech); } } catch (GenericEntityException e) { Debug.logWarning(e.getMessage(), module); contactMech = null; } } if (contactMech == null) { errMsg = UtilProperties.getMessage(resource,"contactmechservices.could_not_find_specified_contact_info_read", locale); return ServiceUtil.returnError(errMsg); } String contactMechTypeId = contactMech.getString("contactMechTypeId"); // never change a contact mech, just create a new one with the changes GenericValue newContactMech = GenericValue.create(contactMech); GenericValue newPartyContactMech = GenericValue.create(partyContactMech); GenericValue relatedEntityToSet = null; if ("POSTAL_ADDRESS".equals(contactMechTypeId)) { errMsg = UtilProperties.getMessage(resource,"contactmechservices.service_updateContactMech_not_be_used_for_POSTAL_ADDRESS", locale); return ServiceUtil.returnError(errMsg); } else if ("TELECOM_NUMBER".equals(contactMechTypeId)) { errMsg = UtilProperties.getMessage(resource,"contactmechservices.service_updateContactMech_not_be_used_for_TELECOM_NUMBER", locale); return ServiceUtil.returnError(errMsg); } else { newContactMech.set("infoString", context.get("infoString")); } newPartyContactMech.set("roleTypeId", context.get("roleTypeId")); newPartyContactMech.set("allowSolicitation", context.get("allowSolicitation")); if (!newContactMech.equals(contactMech)) isModified = true; if (!newPartyContactMech.equals(partyContactMech)) isModified = true; toBeStored.add(newContactMech); toBeStored.add(newPartyContactMech); if (isModified) { if (relatedEntityToSet != null) toBeStored.add(relatedEntityToSet); newContactMech.set("contactMechId", newCmId.toString()); newPartyContactMech.set("contactMechId", newCmId.toString()); newPartyContactMech.set("fromDate", now); newPartyContactMech.set("thruDate", null); try { Iterator partyContactMechPurposes = UtilMisc.toIterator(partyContactMech.getRelated("PartyContactMechPurpose")); while (partyContactMechPurposes != null && partyContactMechPurposes.hasNext()) { GenericValue tempVal = GenericValue.create((GenericValue) partyContactMechPurposes.next()); tempVal.set("contactMechId", newCmId.toString()); toBeStored.add(tempVal); } } catch (GenericEntityException e) { Debug.logWarning(e.toString(), module); Map messageMap = UtilMisc.toMap("errMessage", e.getMessage()); errMsg = UtilProperties.getMessage(resource,"contactmechservices.could_not_change_contact_info_read", messageMap, locale); return ServiceUtil.returnError(errMsg); } partyContactMech.set("thruDate", now); try { delegator.storeAll(toBeStored); } catch (GenericEntityException e) { Debug.logWarning(e.toString(), module); Map messageMap = UtilMisc.toMap("errMessage", e.getMessage()); errMsg = UtilProperties.getMessage(resource,"contactmechservices.could_not_change_contact_info_write", messageMap, locale); return ServiceUtil.returnError(errMsg);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -