All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.fortuna.ical4j.vcard.property.Address Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) 2012, Ben Fortuna
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *  o Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *
 *  o Redistributions in binary form must reproduce the above copyright
 * notice, this list of conditions and the following disclaimer in the
 * documentation and/or other materials provided with the distribution.
 *
 *  o Neither the name of Ben Fortuna nor the names of any other contributors
 * may be used to endorse or promote products derived from this software
 * without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package net.fortuna.ical4j.vcard.property;

import net.fortuna.ical4j.validate.ValidationException;
import net.fortuna.ical4j.util.CompatibilityHints;
import net.fortuna.ical4j.vcard.Group;
import net.fortuna.ical4j.vcard.Parameter;
import net.fortuna.ical4j.vcard.Property;
import net.fortuna.ical4j.vcard.PropertyFactory;
import net.fortuna.ical4j.vcard.parameter.Type;

import java.net.URISyntaxException;
import java.text.ParseException;
import java.util.List;

import static net.fortuna.ical4j.util.Strings.escape;
import static net.fortuna.ical4j.util.Strings.unescape;
import static org.apache.commons.lang3.StringUtils.isNotEmpty;

/**
 * ADDRESS property.
 *
 * $Id$
 *
 * Created on 23/08/2008
 *
 * @author Ben
 *
 */
public final class Address extends Property {

    private static final long serialVersionUID = 6538745668985015384L;

    public static final PropertyFactory
FACTORY = new Factory(); private String poBox; private String extended; private String street; private String locality; private String region; private String postcode; private String country; /** * @param poBox post office box address component * @param extended extended address component * @param street street address component * @param locality locality address component * @param region region address component * @param postcode postal code address component * @param country country address component * @param types optional address types */ public Address(String poBox, String extended, String street, String locality, String region, String postcode, String country, Type...types) { this(null, poBox, extended, street, locality, region, postcode, country, types); } /** * @param group property group * @param poBox post office box address component * @param extended extended address component * @param street street address component * @param locality locality address component * @param region region address component * @param postcode postal code address component * @param country country address component * @param types optional address types */ public Address(Group group, String poBox, String extended, String street, String locality, String region, String postcode, String country, Type...types) { super(group, Id.ADR); this.poBox = poBox; this.extended = extended; this.street = street; this.locality = locality; this.region = region; this.postcode = postcode; this.country = country; for (Type type : types) { getParameters().add(type); } } /** * @param params property parameters * @param value string representation of an address value * @throws ParseException for bad format */ public Address(List params, String value) throws ParseException { this(null, params, value); } /** * Factory constructor. * @param group property group * @param params property parameters * @param value string representation of an address value * @throws ParseException for bad format */ public Address(Group group, List params, String value) throws ParseException { super(group, Id.ADR, params); if (CompatibilityHints.isHintEnabled(CompatibilityHints.KEY_RELAXED_PARSING)) { parseValueRelaxed(value); } else { parseValue(value); } } private void parseValue(String value) throws ParseException { final String[] components = value.split(";"); if (components.length < 6) { throw new ParseException("ADR value must have all address components", 0); } this.poBox = components[0]; this.extended = components[1]; this.street = components[2]; this.locality = components[3]; this.region = components[4]; this.postcode = components[5]; if (components.length > 6) { this.country = components[6]; } } private void parseValueRelaxed(String value) { final String[] components = value.split(";"); final int length = components.length; if (length >= 1) { this.poBox = components[0]; } else { this.poBox = ""; } if (length >= 2) { this.extended = components[1]; } else { this.extended = ""; } if (length >= 3) { this.street = components[2]; } else { this.street = ""; } if (length >= 4) { this.locality = components[3]; } else { this.locality = ""; } if (length >= 5) { this.region = components[4]; } else { this.region = ""; } // support VCARD 3.0 by allowing optional section.. if (length >= 6) { this.postcode = components[5]; } else { this.postcode = null; } if (length >= 7) { this.country = components[6]; } else { this.country = null; } } /** * @return the poBox */ public String getPoBox() { return poBox; } /** * @return the extended */ public String getExtended() { return extended; } /** * @return the street */ public String getStreet() { return street; } /** * @return the locality */ public String getLocality() { return locality; } /** * @return the region */ public String getRegion() { return region; } /** * @return the postcode */ public String getPostcode() { return postcode; } /** * @return the country */ public String getCountry() { return country; } /** * {@inheritDoc} */ @Override public String getValue() { final StringBuilder b = new StringBuilder(); if (isNotEmpty(poBox)) { b.append(escape(poBox)); } b.append(';'); if (isNotEmpty(extended)) { b.append(escape(extended)); } b.append(';'); if (isNotEmpty(street)) { b.append(escape(street)); } b.append(';'); if (isNotEmpty(locality)) { b.append(escape(locality)); } b.append(';'); if (isNotEmpty(region)) { b.append(escape(region)); } b.append(';'); if (isNotEmpty(postcode)) { b.append(escape(postcode)); } b.append(';'); if (isNotEmpty(country)) { b.append(escape(country)); } b.append(';'); return b.toString(); } /** * {@inheritDoc} */ @Override public void validate() throws ValidationException { for (Parameter param : getParameters()) { try { assertTypeParameter(param); } catch (ValidationException ve) { try { assertTextParameter(param); } catch (ValidationException ve2) { assertPidParameter(param); } } } } private static class Factory implements PropertyFactory
{ /** * {@inheritDoc} */ public Address createProperty(final List params, final String value) throws ParseException { return new Address(params, unescape(value)); } /** * {@inheritDoc} */ public Address createProperty(final Group group, final List params, final String value) throws URISyntaxException, ParseException { return new Address(group, params, unescape(value)); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy