summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-05-29 23:40:26 +0200
committerThomas Tanghus <thomas@tanghus.net>2012-05-29 23:41:53 +0200
commitdbcd26be684461daac7c406cc3f52a2a810d1126 (patch)
tree40811783042ab641aa478c91c965ed7469c14480
parentfbe58755e58675231feb443b52d2f670b8a78434 (diff)
downloadnextcloud-server-dbcd26be684461daac7c406cc3f52a2a810d1126.tar.gz
nextcloud-server-dbcd26be684461daac7c406cc3f52a2a810d1126.zip
Contacts: Rewrote import script.
-rw-r--r--apps/contacts/import.php83
1 files changed, 26 insertions, 57 deletions
diff --git a/apps/contacts/import.php b/apps/contacts/import.php
index 1a07781b9d0..fdea4975d59 100644
--- a/apps/contacts/import.php
+++ b/apps/contacts/import.php
@@ -11,6 +11,7 @@ ob_start();
OCP\JSON::checkLoggedIn();
OCP\App::checkAppEnabled('contacts');
$nl = "\n";
+
$progressfile = 'import_tmp/' . md5(session_id()) . '.txt';
function writeProgress($pct) {
@@ -48,78 +49,46 @@ if(isset($_POST['method']) && $_POST['method'] == 'new'){
OC_Contacts_App::getAddressbook($id); // is owner access check
}
//analyse the contacts file
-writeProgress('20');
-$searchfor = array('VCARD');
-$parts = $searchfor;
-$filearr = explode($nl, $file);
+writeProgress('40');
+$lines = explode($nl, $file);
$inelement = false;
$parts = array();
-$i = 0;
-foreach($filearr as $line){
- foreach($searchfor as $search){
- if(substr_count($line, $search) == 1){
- list($attr, $val) = explode(':', $line);
- if($attr == 'BEGIN'){
- $parts[]['begin'] = $i;
- $inelement = true;
- }
- if($attr == 'END'){
- $parts[count($parts) - 1]['end'] = $i;
- $inelement = false;
- }
- }
- }
- $i++;
-}
-//import the contacts
-writeProgress('40');
-$start = '';
-for ($i = 0; $i < $parts[0]['begin']; $i++) {
- if($i == 0){
- $start = $filearr[0];
- }else{
- $start .= $nl . $filearr[$i];
+$card = array();
+foreach($lines as $line){
+ if(strtoupper(trim($line)) == 'BEGIN:VCARD'){
+ $inelement = true;
+ } elseif (strtoupper(trim($line)) == 'END:VCARD') {
+ $card[] = $line;
+ $parts[] = implode($nl, $card);
+ $card = array();
+ $inelement = false;
}
-}
-$end = '';
-for($i = $parts[count($parts) - 1]['end'] + 1;$i <= count($filearr) - 1; $i++){
- if($i == $parts[count($parts) - 1]['end'] + 1){
- $end = $filearr[$parts[count($parts) - 1]['end'] + 1];
- }else{
- $end .= $nl . $filearr[$i];
+ if ($inelement === true && trim($line) != '') {
+ $card[] = $line;
}
}
-writeProgress('50');
-$importready = array();
-foreach($parts as $part){
- for($i = $part['begin']; $i <= $part['end'];$i++){
- if($i == $part['begin']){
- $content = $filearr[$i];
- }else{
- $content .= $nl . $filearr[$i];
- }
- }
- $importready[] = $start . $nl . $content . $nl . $end;
-}
+//import the contacts
writeProgress('70');
-if(count($parts) == 1){
- $importready = array($file);
-}
$imported = 0;
$failed = 0;
-if(!count($importready) > 0) {
+if(!count($parts) > 0) {
OCP\JSON::error(array('message' => 'No contacts to import in .'.$_POST['file'].' Please check if the file is corrupted.'));
exit();
}
-foreach($importready as $import){
- $card = OC_VObject::parse($import);
+foreach($parts as $part){
+ $card = OC_VObject::parse($part);
if (!$card) {
$failed += 1;
- OCP\Util::writeLog('contacts','Import: skipping card. Error parsing VCard: '.$import, OCP\Util::ERROR);
+ OCP\Util::writeLog('contacts','Import: skipping card. Error parsing VCard: '.$part, OCP\Util::ERROR);
continue; // Ditch cards that can't be parsed by Sabre.
}
- $imported += 1;
- OC_Contacts_VCard::add($id, $card);
+ try {
+ OC_Contacts_VCard::add($id, $card);
+ $imported += 1;
+ } catch (Exception $e) {
+ OCP\Util::writeLog('contacts', 'Error importing vcard: '.$e->getMessage().$nl.$card, OCP\Util::ERROR);
+ $failed += 1;
+ }
}
//done the import
writeProgress('100');