Aleksander Machniak
2013-01-07 987b7aea59cb6434c7e4546796d070a6edc89f78
program/lib/Roundcube/rcube_csv2vcard.php
@@ -271,13 +271,7 @@
        // Parse file
        foreach (preg_split("/[\r\n]+/", $csv) as $i => $line) {
            $line = trim($line);
            if (empty($line)) {
                continue;
            }
            $elements = rcube_utils::explode_quoted_string(',', $line);
            $elements = $this->parse_line($line);
            if (empty($elements)) {
                continue;
            }
@@ -302,6 +296,35 @@
    public function export()
    {
        return $this->vcards;
    }
    /**
     * Parse CSV file line
     */
    protected function parse_line($line)
    {
        $line = trim($line);
        if (empty($line)) {
            return null;
        }
        $fields = rcube_utils::explode_quoted_string(',', $line);
        // remove quotes if needed
        if (!empty($fields)) {
            foreach ($fields as $idx => $value) {
                if (($len = strlen($value)) > 1 && $value[0] == '"' && $value[$len-1] == '"') {
                    // remove surrounding quotes
                    $value = substr($value, 1, -1);
                    // replace doubled quotes inside the string with single quote
                    $value = str_replace('""', '"', $value);
                    $fields[$idx] = $value;
                }
            }
        }
        return $fields;
    }
    /**
@@ -367,6 +390,15 @@
            }
        }
        // Convert address(es) to rcube_vcard data
        foreach ($contact as $idx => $value) {
            $name = explode(':', $idx);
            if (in_array($name[0], array('street', 'locality', 'region', 'zipcode', 'country'))) {
                $contact['address:'.$name[1]][$name[0]] = $value;
                unset($contact[$idx]);
            }
        }
        // Create vcard object
        $vcard = new rcube_vcard();
        foreach ($contact as $name => $value) {