001/*
002 * Copyright 2011 The Kuali Foundation.
003 * 
004 * Licensed under the Educational Community License, Version 1.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 * 
008 * http://www.opensource.org/licenses/ecl1.php
009 * 
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.ole.select.service.impl;
017
018import org.kuali.ole.select.service.OleForiegnVendorPhoneNumberService;
019import org.kuali.ole.vnd.VendorParameterConstants;
020import org.kuali.ole.vnd.businessobject.VendorDetail;
021import org.kuali.rice.coreservice.framework.parameter.ParameterService;
022import org.kuali.rice.krad.util.ObjectUtils;
023
024import java.util.ArrayList;
025import java.util.List;
026import java.util.regex.Matcher;
027import java.util.regex.Pattern;
028
029public class OleForiegnVendorPhoneNumberServiceImpl implements OleForiegnVendorPhoneNumberService {
030
031    public ParameterService parameterService;
032    public List<String> phoneNumberFormats;
033
034    public void setParameterService(ParameterService parameterService) {
035        this.parameterService = parameterService;
036    }
037
038    @Override
039    public boolean isValidForiegnVendorPhoneNumber(String phoneNumber) {
040        // TODO Auto-generated method stub
041        String[] formats = parseFormats();
042        for (int i = 0; i < formats.length; i++) {
043            if (phoneNumber.matches(formats[i])) {
044                return true;
045            }
046        }
047        return false;
048    }
049
050    protected String[] parseFormats() {
051        if (ObjectUtils.isNull(phoneNumberFormats)) {
052            phoneNumberFormats = new ArrayList<String>(parameterService.getParameterValuesAsString(VendorDetail.class, VendorParameterConstants.FOREIGN_VENDOR_PHONE_NUMBER_FORMATS));
053        }
054        return phoneNumberFormats.toArray(new String[]{});
055    }
056
057}