mirror of
https://github.com/owncloudarchive/contacts.git
synced 2024-11-29 11:24:11 +01:00
214 lines
6.7 KiB
PHP
214 lines
6.7 KiB
PHP
<?php
|
|
/**
|
|
* ownCloud - VCard Import connector
|
|
*
|
|
* @author Nicolas Mora
|
|
* @copyright 2014 Nicolas Mora mail@babelouest.org
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
* License as published by the Free Software Foundation
|
|
* version 3 of the License
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
namespace OCA\Contacts\Connector;
|
|
|
|
use Sabre\VObject\Component,
|
|
Sabre\VObject\StringUtil,
|
|
\SplFileObject as SplFileObject,
|
|
Sabre\VObject;
|
|
|
|
/**
|
|
* @brief Implementation of the VCard import format
|
|
*/
|
|
class ImportVCardConnector extends ImportConnector{
|
|
|
|
/**
|
|
* @brief separates elements from the input stream according to the entry_separator value in config
|
|
* ignoring the first line if mentionned in the config
|
|
* @param $input the input file to import
|
|
* @param $limit the number of elements to return (-1 = no limit)
|
|
* @return array of strings
|
|
*/
|
|
public function getElementsFromInput($file, $limit=-1) {
|
|
|
|
$parts = $this->getSourceElementsFromFile($file, $limit);
|
|
|
|
$elements = array();
|
|
foreach($parts as $part) {
|
|
$converted = $this->convertElementToVCard($part);
|
|
if ($converted) {
|
|
$elements[] = $converted;
|
|
}
|
|
}
|
|
|
|
return array_values($elements);
|
|
}
|
|
|
|
/**
|
|
* @brief parses the file in vcard format
|
|
* @param $file the input file to import
|
|
* @param $limit the number of elements to return (-1 = no limit)
|
|
* @return array()
|
|
*/
|
|
private function getSourceElementsFromFile($file, $limit=-1) {
|
|
$file = StringUtil::convertToUTF8(file_get_contents($file));
|
|
|
|
$nl = "\n";
|
|
$replaceFrom = array("\r","\n\n");
|
|
$replaceTo = array("\n","\n");
|
|
foreach ($this->configContent->import_core->replace as $replace) {
|
|
if (isset($replace['from']) && isset($replace['to'])) {
|
|
$replaceFrom[] = $replace['from'];
|
|
$replaceTo[] = $replace['to'];
|
|
}
|
|
}
|
|
|
|
$file = str_replace($replaceFrom, $replaceTo, $file);
|
|
|
|
$lines = explode($nl, $file);
|
|
$inelement = false;
|
|
$parts = array();
|
|
$card = array();
|
|
$numParts = 0;
|
|
foreach($lines as $line) {
|
|
if(strtoupper(trim($line)) == (string)$this->configContent->import_core->card_begin) {
|
|
$inelement = true;
|
|
} elseif (strtoupper(trim($line)) == (string)$this->configContent->import_core->card_end) {
|
|
$card[] = $line;
|
|
$parts[] = implode($nl, $card);
|
|
$card = array();
|
|
$inelement = false;
|
|
$numParts++;
|
|
if ($numParts == $limit) {
|
|
break;
|
|
}
|
|
}
|
|
if ($inelement === true && trim($line) != '') {
|
|
$card[] = $line;
|
|
}
|
|
}
|
|
return $parts;
|
|
}
|
|
|
|
/**
|
|
* @brief converts a VCard into a owncloud VCard
|
|
* @param $element the VCard element to convert
|
|
* @return VCard|false
|
|
*/
|
|
public function convertElementToVCard($element) {
|
|
try {
|
|
$source = VObject\Reader::read($element, VObject\Reader::OPTION_FORGIVING);
|
|
} catch (VObject\ParseException $error) {
|
|
return false;
|
|
}
|
|
$dest = new \OCA\Contacts\VObject\VCard();
|
|
|
|
foreach ($source->children() as $sourceProperty) {
|
|
$importEntry = $this->getImportEntry($sourceProperty, $source);
|
|
if ($importEntry) {
|
|
$value = $sourceProperty->getValue();
|
|
if (isset($importEntry['remove'])) {
|
|
$value = str_replace($importEntry['remove'], '', $sourceProperty->getValue());
|
|
}
|
|
$values = array($value);
|
|
if (isset($importEntry['separator'])) {
|
|
$values = explode($importEntry['separator'], $value);
|
|
}
|
|
|
|
foreach ($values as $oneValue) {
|
|
if (isset($importEntry->vcard_favourites)) {
|
|
foreach ($importEntry->vcard_favourites as $vcardFavourite) {
|
|
if (strcasecmp((string)$vcardFavourite, trim($oneValue)) == 0) {
|
|
$property = $dest->createProperty("X-FAVOURITES", 'yes');
|
|
$dest->add($property);
|
|
} else {
|
|
$property = $this->getOrCreateVCardProperty($dest, $importEntry->vcard_entry);
|
|
$this->updateProperty($property, $importEntry, trim($oneValue));
|
|
}
|
|
}
|
|
} else {
|
|
$property = $this->getOrCreateVCardProperty($dest, $importEntry->vcard_entry);
|
|
$this->updateProperty($property, $importEntry, $sourceProperty->getValue());
|
|
}
|
|
}
|
|
} else {
|
|
$property = clone $sourceProperty;
|
|
$dest->add($property);
|
|
}
|
|
}
|
|
|
|
$dest->validate(\Sabre\VObject\Component\VCard::REPAIR);
|
|
return $dest;
|
|
}
|
|
|
|
/**
|
|
* @brief tests if the property has to be translated by looking for its signature in the xml configuration
|
|
* @param $property Sabre VObject Property too look
|
|
* @param $vcard the parent Sabre VCard object to look for a
|
|
*/
|
|
private function getImportEntry($property, $vcard) {
|
|
$nbElt = $this->configContent->import_entry->count();
|
|
for ($i=0; $i < $nbElt; $i++) {
|
|
if ($this->configContent->import_entry[$i]['property'] == $property->name && $this->configContent->import_entry[$i]['enabled'] == 'true') {
|
|
if (isset($this->configContent->import_entry[$i]->group_entry)) {
|
|
$numElt = 0;
|
|
foreach($this->configContent->import_entry[$i]->group_entry as $groupEntry) {
|
|
$sourceGroupList = $vcard->select($groupEntry['property']);
|
|
if (count($sourceGroupList>0)) {
|
|
foreach ($sourceGroupList as $oneSourceGroup) {
|
|
if ($oneSourceGroup->getValue() == $groupEntry['value'] && isset($oneSourceGroup->group) && isset($property->group) && $oneSourceGroup->group == $property->group) {
|
|
$numElt++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if ($numElt == count($this->configContent->import_entry[$i]->group_entry)) {
|
|
return $this->configContent->import_entry[$i];
|
|
}
|
|
} else {
|
|
return $this->configContent->import_entry[$i];
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* @brief returns the probability that the first element is a match for this format
|
|
* @param $file the file to examine
|
|
* @return 0 if not a valid vcard
|
|
* 1-0.5^(number of translated elements+1)
|
|
* The more the first element has parameters to translate, the more the result is close to 1
|
|
*/
|
|
public function getFormatMatch($file) {
|
|
// Examining the first element only
|
|
$parts = $this->getSourceElementsFromFile($file, 1);
|
|
|
|
if (!$parts || ($parts && count($parts[0]) == 0)) {
|
|
// Doesn't look like a vcf file
|
|
return 0;
|
|
} else {
|
|
$element = $this->convertElementToVCard($parts[0]);
|
|
if ($element) {
|
|
$unknownElements = $element->select("X-Unknown-Element");
|
|
return (1 - (0.5 * count($unknownElements)/count($parts[0])));
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
?>
|